diff --git a/2020/cli/import.php b/2020/cli/import.php index bafb321..c6ad10a 100755 --- a/2020/cli/import.php +++ b/2020/cli/import.php @@ -1,349 +1,472 @@ #!/usr/bin/php . /** * This script import contents from Meta-wiki */ require 'load.php'; // query this Conference $conference = ( new QueryConference() ) ->whereConferenceUID( THIS_CONFERENCE_UID ) ->queryRow(); // no Conference no party if( !$conference ) { echo "missing conference\n"; exit; } // current Confererence ID $conference_ID = $conference->getConferenceID(); // room number to Room ID $ROOMS = [ '1' => 36, '2' => 37, - '1 e 2' => 26, + '1 e 2' => 36, 'caccia al tesoro' => 38, + 'ospiti' => 39, ]; // template arguments TemplateArg::add( 'titolo' ); TemplateArg::add( 'abstract' ); TemplateArg::add( 'descrizione' ); TemplateArg::add( 'note' ); TemplateArg::add( 'chi' ); TemplateArg::add( 'giorno' ); TemplateArg::add( 'ora inizio' ); TemplateArg::add( 'ora fine' ); TemplateArg::add( 'traccia', function ( $track ) use ( $ROOMS ) { $track = $ROOMS[ $track ] ?? null; if( !$track ) { error( "bad room $track" ); } return $track; } ); // wikimedia meta $meta = \wm\MetaWiki::instance(); // months and related number $MONTHS = [ 'gennaio' => '01', 'febbraio' => '02', 'marzo' => '03', 'aprile' => '04', 'maggio' => '05', 'giugno' => '06', 'luglio' => '07', 'agosto' => '08', 'settembre' => '09', 'ottobre' => '10', 'novembre' => '11', 'dicembre' => '12', ]; // API query category members $queries = $meta->createQuery( [ // generator of category members 'action' => 'query', 'generator' => 'categorymembers', 'gcmtitle' => 'Category:ItWikiCon 2020 - Programma', // for each page retrieved from the generator ask the revision 'prop' => 'revisions', 'rvslots' => 'main', 'rvprop' => [ 'ids', 'timestamp', // we can ask the content and manually parse it with regexes, or just get the id and call API parse // 'content', ], ] ); // for each API query request foreach( $queries as $query ) { // for each page found during this request foreach( $query->query->pages as $page ) { // page ID $pageid = $page->pageid; // page title $page_title = $page->title; // Meta-wiki page URL - $page_url = 'https://meta.wikimedia.org/wiki/' . str_replace( ' ', '_', $page_title ); + $page_url = 'https://meta.wikimedia.org/wiki/' . urlencode( str_replace( ' ', '_', $page_title ) ); // revisions is an array of just one element $revisions = $page->revisions ?? []; foreach( $revisions as $revision ) { // revision ID $revid = $revision->revid; // parse the templates // https://www.mediawiki.org/w/api.php?action=help&modules=parse $parse_request = $meta->fetch( [ 'action' => 'parse', 'oldid' => $revid, 'prop' => 'parsetree', ] ); // DOM tree as XML $tree = $parse_request->parse->parsetree->{'*'} ?? null; if( $tree ) { $reader = simplexml_load_string( $tree ); $template = $reader->template; $template_title = trim( $template->title ); if( $template_title === 'ItWikiCon/2020/Session' ) { $template_values = []; // template arguments foreach( $template->part as $template_part ) { // argument title and its value ( | name = value ) $part_name = trim( $template_part->name ); $part_value = trim( $template_part->value ); // find the template value $template_value = TemplateArg::createValue( $part_name, $part_value ); if( $template_value ) { $template_values[] = $template_value; } } // finally extract the template parameters // $pageid $event_title = TemplateArgValue::findAndGetValue( $template_values, 'titolo' ); + $event_who = TemplateArgValue::findAndGetValue( $template_values, 'chi' ); $abstract = TemplateArgValue::findAndGetValue( $template_values, 'abstract' ); $note = TemplateArgValue::findAndGetValue( $template_values, 'note' ); $giorno = TemplateArgValue::findAndGetValue( $template_values, 'giorno' ); $ora_inizio = TemplateArgValue::findAndGetValue( $template_values, 'ora inizio' ); $ora_fine = TemplateArgValue::findAndGetValue( $template_values, 'ora fine' ); $event_description = TemplateArgValue::findAndGetValue( $template_values, 'descrizione' ); $lingua = TemplateArgValue::findAndGetValue( $template_values, 'lingua', 'it' ); $room_ID = TemplateArgValue::findAndGetValue( $template_values, 'traccia' ); + // parse the wikitext + $event_description = from_wikitext_to_html( $meta, $event_description ); + $abstract = from_wikitext_to_html( $meta, $abstract ); + // 24 ottobre $giorno_dd_mm = explode( ' ', $giorno ); $giorno_dd_mm[1] = $MONTHS[ $giorno_dd_mm[1] ]; // ottobre -> 10 $event_start = sprintf( '%s-%s-%s %s:00', date( 'Y' ), $giorno_dd_mm[1], $giorno_dd_mm[0], $ora_inizio ); $event_end = sprintf( '%s-%s-%s %s:00', date( 'Y' ), $giorno_dd_mm[1], $giorno_dd_mm[0], $ora_fine ); // event UID $event_uid = generate_slug( $event_title ); // option used to remember the Meta pageid -> Event ID $option_name_meta_pageid = "event-from-meta-pageid-$pageid"; // basic data to be always updated $basic_data = [ 'event_title' => $event_title, 'event_url' => $page_url, 'event_uid' => $event_uid, "event_description_$lingua" => $event_description, "event_abstract_$lingua" => $abstract, "event_note_$lingua" => $note, 'event_language' => $lingua, 'event_start' => $event_start, 'event_end' => $event_end, 'room_ID' => $room_ID, ]; + // start a MariaDB transaction + query( 'START TRANSACTION' ); + // check if this page is new $event_ID = get_option( $option_name_meta_pageid ); if( $event_ID ) { // update echo "Updating $event_title\n"; ( new QueryEvent() ) ->whereEventID( $event_ID ) ->update( $basic_data ); } else { echo "Inserting $event_title\n"; query( 'START TRANSACTION' ); // insert ( new QueryEvent() ) ->insertRow( array_merge( $basic_data, [ 'conference_ID' => $conference_ID, 'event_uid' => $event_uid, ] ) ); $event_ID = last_inserted_ID(); set_option( $option_name_meta_pageid, $event_ID, false ); query( 'COMMIT' ); } + + // wiki usernames + $wiki_usernames = suck_wiki_usernames( $event_who ); + foreach( $wiki_usernames as $wiki_username ) { + + // check if an user associated to this Meta-wiki nick exists + $user_talk = + ( new QueryUser() ) + ->whereMetaUsername( $wiki_username ) + ->queryRow(); + + if( $user_talk ) { + + $user_talk_ID = $user_talk->getUserID(); + + + } else { + + // eventually guess the user surname + $name_parts = explode( ' ', $wiki_username, 2 ); + $user_name = $name_parts[0] ?? $wiki_username; + $user_surname = $name_parts[1] ?? ''; + + // eventually strip "(ASD)" from surname + if( $user_surname ) { + $user_surname_parts = explode( ' (', 2 ); + $user_surname = $user_surname_parts[0] ?? $user_surname; + } + + // create the User + ( new QueryUser() ) + ->insertRow( [ + User::UID => generate_slug( $wiki_username ), + User::NAME => $user_name, + User::SURNAME => $user_surname, + User::META_WIKI => $wiki_username, + User::IS_PUBLIC => 1, + User::IS_ACTIVE => 0, + USER::ROLE => 'user', + ] ); + + echo "Creating $wiki_username\n"; + $user_talk_ID = last_inserted_ID(); + } + + // check if that User is related to this Event + $user_talk_relation = + ( new Query() ) + ->from( 'event_user' ) + ->whereInt( User::ID, $user_talk_ID ) + ->whereInt( Event::ID, $event_ID ) + ->queryRow(); + + // relate the User to this Event + if( !$user_talk_relation ) { + echo "Connecting to event...\n"; + insert_row( 'event_user', [ + User::ID => $user_talk_ID, + Event::ID => $event_ID, + ] ); + } + } + + // commit the MariaDB transaction + query( 'COMMIT' ); } } } } } +/** + * A very dummy function to suck some usernames from the wikitext + */ +function suck_wiki_usernames( $wikitext ) { + + $users = []; + + // strange cases: + // [[:it:s:Utente:|OrbiliusMagister]] damn ORBILIUS! asd + $founds = preg_match_all( '/\[\[:?User:(.+?)([\|\]])/i', $wikitext, $matches ); + for( $i = 0; $i < $founds; $i++ ) { + $user = trim( $matches[1][$i] ); + $user = str_replace( '_', ' ', $user ); + + // AAAAAAAAAAAASD DAMN MARCO CHEMELLO + if( $user === 'Marco Chemello (WMIT)' ) { + $user = 'Marcok'; + } + + $users[] = $user; + } + + array_unique( $users ); + + return $users; +} + +function from_wikitext_to_html( $wiki, $wikitext ) { + + // no wikitext no party + if( !$wikitext ) { + return $wikitext; + } + + $request = + $wiki->fetch( [ + 'action' => 'parse', + 'contentmodel' => 'wikitext', + 'text' => $wikitext, + 'disablelimitreport' => 1, + ] ); + + $html = $request->parse->text->{'*'} ?? ''; + + $html = str_replace( 'href="/wiki/', 'https://meta.wikimedia.org/wiki/', $html ); + + return $html; +} + class TemplateArg { private $name; private $callback; public static $args = []; public function __construct( $name, $callback ) { $this->name = $name; $this->callback = $callback; } public function getName() { return $this->name; } public function normalizeValue( $value ) { if( $this->callback ) { $value = call_user_func( $this->callback, $value ); } return $value; } /** * Add a template argument in the known list of arguments */ public static function add( $name, $callback = null ) { self::$args[] = new TemplateArg( $name, $callback ); } public static function createValue( $name, $value ) { $arg = self::find( $name ); if( $arg ) { return new TemplateArgValue( $arg, $value ); } return false; } public static function find( $name ) { foreach( self::$args as $arg ) { if( $arg->getName() === $name ) { return $arg; } } return false; } } class TemplateArgValue { private $arg; private $value; public function __construct( TemplateArg $arg, $value ) { $this->arg = $arg; $this->value = $value; } public function getValue( $default_value = null ) { $value = $this->value; $value = $this->arg->normalizeValue( $value ); if( !$value ) { $value = $default_value; } return $value; } public function getArg() { return $this->arg; } public function getName() { return $this->getArg()->getName(); } public static function find( $all, $name ) { foreach( $all as $one ) { if( $one->getName() === $name ) { return $one; } } return false; } public static function findAndGetValue( $all, $name, $default_value = null ) { $value = $default_value; $one = self::find( $all, $name ); if( $one ) { $value = $one->getValue( $default_value ); } return $value; } } diff --git a/2020/template/event-brief.php b/2020/template/alert.php similarity index 51% copy from 2020/template/event-brief.php copy to 2020/template/alert.php index a0584cc..6029acf 100644 --- a/2020/template/event-brief.php +++ b/2020/template/alert.php @@ -1,41 +1,29 @@ . ?> -
- - hasEventLanguage() && $event->getEventLanguage() !== 'it' ): ?> - getEventLanguage() ) ?> - - - getEventTitle() ) ?> - -
- getEventStart( 'H:i' ) ?>–getEventEnd( 'H:i' ) ?> + -
- getRoomName() ) ?> -
- - isEventEditable() ): ?> - getEventEditURL(), - '[edit]' - ) ?> - -
diff --git a/2020/template/day-one.php b/2020/template/day-one.php new file mode 100644 index 0000000..21fa98b --- /dev/null +++ b/2020/template/day-one.php @@ -0,0 +1,177 @@ +. + +/** + * Events of the day 1 of the itWikiCon 2020 + */ +?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
10:00 - 10:15
10:15 - 10:30
10:30 - 10:45
10:45 - 11:00
11:00 - 11:15
11:15 - 11:30Pausa
11:30 - 11:45
11:45 - 12:00
12:00 - 12:15Pausa
12:15 - 12:30
12:30 - 12:45
12:45 - 13:00
13:00 - 13:15
13:15 - 13:30 + accompagnato a:
+ +
13:30 - 13:45
13:45 - 14:00
14:00 - 14:15
14:15 - 14:30
14:30 - 14:45
14:45 - 15:00Pausa
15:00 - 15:15
15:15 - 15:30
15:30 - 15:45
15:45 - 16:00
16:00 - 16:15Pausa
16:15 - 16:30
16:30 - 16:45
16:45 - 17:00Pausa
17:00 - 17:15
17:15 - 17:30
17:30 - 17:45
17:45 - 18:00
18:00 - 18:15Pausa
18:15 - 18:30
18:30 - 18:45
18:45 - 19:00
19:00 - 19:15
19:15 - 19:30
19:30 - 19:45
19:45 - 20:00
diff --git a/2020/template/day-two.php b/2020/template/day-two.php new file mode 100644 index 0000000..65e9e37 --- /dev/null +++ b/2020/template/day-two.php @@ -0,0 +1,159 @@ +. + +/** + * Events of the day 1 of the itWikiCon 2020 + */ +?> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
10:00 - 10:15
10:15 - 10:30
10:30 - 10:45
10:45 - 11:00
11:00 - 11:15Pausa
11:15 - 11:30
11:30 - 11:45
11:45 - 12:00
12:00 - 12:15Pausa
12:15 - 12:30
12:30 - 12:45
12:45 - 13:00
13:00 - 13:15
13:15 - 13:30Pranzo in contemporanea con:
+ + +
13:30 - 13:45
13:45 - 14:00
14:00 - 14:15
14:15 - 14:30
14:30 - 14:45
14:45 - 15:00Pausa
15:00 - 15:15
15:15 - 15:30
15:30 - 15:45
15:45 - 16:00Pausa
16:00 - 16:15
16:15 - 16:30
16:30 - 16:45
16:45 - 17:00Pausa
17:00 - 17:15
17:15 - 17:30Pausa
17:30 - 17:45
17:45 - 18:00
18:00 - 18:15Saluti finali
18:15 - 18:30
diff --git a/2020/template/event-brief.php b/2020/template/event-brief.php index a0584cc..a51e6cf 100644 --- a/2020/template/event-brief.php +++ b/2020/template/event-brief.php @@ -1,41 +1,99 @@ . +// query all the Users maintaining this Event +$users = + ( new QueryEventUser() ) + ->joinUser() + ->whereEvent( $event ) + ->orderByEventUserOrder() + ->queryGenerator(); ?>
hasEventLanguage() && $event->getEventLanguage() !== 'it' ): ?> getEventLanguage() ) ?> - getEventTitle() ) ?> +

+ isEventAborted() ): ?> + getEventTitle() ) ?> + + + getEventTitle() ) ?> -

+ +

+ +
getEventStart( 'H:i' ) ?>–getEventEnd( 'H:i' ) ?>
-
- getRoomName() ) ?> + +
+ + +
+ has( User::META_WIKI ) ) { + + // print the Meta-wiki permalink + echo HTML::a( + $user->getUserMetaWikiURL(), + esc_html( $user->getUserDisplayName() ) + ); + + + } else { + + echo esc_html( $user->getUserDisplayName() ); + + } + + ?> +
+ +
+ + isEventAborted() && !$event->isEventPassed() ): ?> + +
+

getRoomURL(), + $event->getRoomName(). + 'play_arrow', + null, + 'btn white blue-text waves-effect' + ) ?> +

+
+ + + + isEventEditable() ): ?> getEventEditURL(), '[edit]' ) ?> +
diff --git a/2020/template/footer.php b/2020/template/footer.php index 728fc4b..0d47353 100644 --- a/2020/template/footer.php +++ b/2020/template/footer.php @@ -1,54 +1,83 @@ . ?>
- itWikiCon 2020 logo + itWikiCon 2020 logo
itWikiCon 2020 logo
getConferenceTitle() ) ?>
-

- +

+

get( 'cc-by-sa-4.0' )->getLink( 'blue-text text-lighten-5' ) + ) ?>

+ +

sentiment_very_satisfied

- - - + + + + + diff --git a/2020/template/header.php b/2020/template/header.php index 06e10ef..8936745 100644 --- a/2020/template/header.php +++ b/2020/template/header.php @@ -1,50 +1,64 @@ . +/** + * Available arguments: + * + * $title: page title + */ ?> <?= esc_html( sprintf( __( "%s - %s" ), - $conference->getConferenceTitle(), - $conference->getConferenceSubtitle(), + $title ?? $conference->getConferenceTitle(), + isset( $title ) ? $conference->getConferenceTitle() : $conference->getConferenceSubtitle() ) ) ?> - - - + + + + + + + + + + + + diff --git a/2020/template/matomo.php b/2020/template/matomo.php new file mode 100644 index 0000000..43edffa --- /dev/null +++ b/2020/template/matomo.php @@ -0,0 +1,35 @@ + + + + + + +

+ + + + + + + + + + + + + +