4 # Jérémie Nikaes <jeremie.nikaes@ensimag.imag.fr>
5 # Arnaud Lacurie <arnaud.lacurie@ensimag.imag.fr>
6 # Claire Fousse <claire.fousse@ensimag.imag.fr>
7 # David Amouyal <david.amouyal@ensimag.imag.fr>
8 # Matthieu Moy <matthieu.moy@grenoble-inp.fr>
9 # License: GPL v2 or later
11 # Gateway between Git and MediaWiki.
12 # Documentation & bugtracker: https://github.com/moy/Git-Mediawiki/
17 use Git
::Mediawiki
qw(clean_filename smudge_filename connect_maybe
19 use DateTime
::Format
::ISO8601
;
22 # By default, use UTF-8 to communicate with Git and the user
23 binmode STDERR
, ':encoding(UTF-8)';
24 binmode STDOUT
, ':encoding(UTF-8)';
28 # It's not always possible to delete pages (may require some
29 # privileges). Deleted pages are replaced with this content.
30 use constant DELETED_CONTENT
=> "[[Category:Deleted]]\n";
32 # It's not possible to create empty pages. New empty files in Git are
33 # sent with this content instead.
34 use constant EMPTY_CONTENT
=> "<!-- empty page -->\n";
36 # used to reflect file creation or deletion in diff.
37 use constant NULL_SHA1
=> '0000000000000000000000000000000000000000';
39 # Used on Git's side to reflect empty edit messages on the wiki
40 use constant EMPTY_MESSAGE
=> '*Empty MediaWiki Message*';
42 # Number of pages taken into account at once in submodule get_mw_page_list
43 use constant SLICE_SIZE
=> 50;
45 # Number of linked mediafile to get at once in get_linked_mediafiles
46 # The query is split in small batches because of the MW API limit of
47 # the number of links to be returned (500 links max).
48 use constant BATCH_SIZE
=> 10;
54 my $remotename = $ARGV[0];
57 # Accept both space-separated and multiple keys in config file.
58 # Spaces should be written as _ anyway because we'll use chomp.
59 my @tracked_pages = split(/[ \n]/, run_git
("config --get-all remote.${remotename}.pages"));
60 chomp(@tracked_pages);
62 # Just like @tracked_pages, but for MediaWiki categories.
63 my @tracked_categories = split(/[ \n]/, run_git
("config --get-all remote.${remotename}.categories"));
64 chomp(@tracked_categories);
66 # Import media files on pull
67 my $import_media = run_git
("config --get --bool remote.${remotename}.mediaimport");
69 $import_media = ($import_media eq 'true');
71 # Export media files on push
72 my $export_media = run_git
("config --get --bool remote.${remotename}.mediaexport");
74 $export_media = !($export_media eq 'false');
76 my $wiki_login = run_git
("config --get remote.${remotename}.mwLogin");
77 # Note: mwPassword is discourraged. Use the credential system instead.
78 my $wiki_passwd = run_git
("config --get remote.${remotename}.mwPassword");
79 my $wiki_domain = run_git
("config --get remote.${remotename}.mwDomain");
84 # Import only last revisions (both for clone and fetch)
85 my $shallow_import = run_git
("config --get --bool remote.${remotename}.shallow");
86 chomp($shallow_import);
87 $shallow_import = ($shallow_import eq 'true');
89 # Fetch (clone and pull) by revisions instead of by pages. This behavior
90 # is more efficient when we have a wiki with lots of pages and we fetch
91 # the revisions quite often so that they concern only few pages.
93 # - by_rev: perform one query per new revision on the remote wiki
94 # - by_page: query each tracked page for new revision
95 my $fetch_strategy = run_git
("config --get remote.${remotename}.fetchStrategy");
96 if (!$fetch_strategy) {
97 $fetch_strategy = run_git
('config --get mediawiki.fetchStrategy');
99 chomp($fetch_strategy);
100 if (!$fetch_strategy) {
101 $fetch_strategy = 'by_page';
104 # Remember the timestamp corresponding to a revision id.
107 # Dumb push: don't update notes and mediawiki ref to reflect the last push.
109 # Configurable with mediawiki.dumbPush, or per-remote with
110 # remote.<remotename>.dumbPush.
112 # This means the user will have to re-import the just-pushed
113 # revisions. On the other hand, this means that the Git revisions
114 # corresponding to MediaWiki revisions are all imported from the wiki,
115 # regardless of whether they were initially created in Git or from the
116 # web interface, hence all users will get the same history (i.e. if
117 # the push from Git to MediaWiki loses some information, everybody
118 # will get the history with information lost). If the import is
119 # deterministic, this means everybody gets the same sha1 for each
120 # MediaWiki revision.
121 my $dumb_push = run_git
("config --get --bool remote.${remotename}.dumbPush");
123 $dumb_push = run_git
('config --get --bool mediawiki.dumbPush');
126 $dumb_push = ($dumb_push eq 'true');
128 my $wiki_name = $url;
129 $wiki_name =~ s{[^/]*://}{};
130 # If URL is like http://user:password@example.com/, we clearly don't
131 # want the password in $wiki_name. While we're there, also remove user
132 # and '@' sign, to avoid author like MWUser@HTTPUser@host.com
133 $wiki_name =~ s/^.*@//;
139 if (!parse_command
($_)) {
143 BEGIN { $| = 1 } # flush STDOUT, to make sure the previous
144 # command is fully processed.
147 ########################## Functions ##############################
150 sub exit_error_usage
{
151 die "ERROR: git-remote-mediawiki module was not called with a correct number of\n" .
153 "You may obtain this error because you attempted to run the git-remote-mediawiki\n" .
154 "module directly.\n" .
155 "This module can be used the following way:\n" .
156 "\tgit clone mediawiki://<address of a mediawiki>\n" .
157 "Then, use git commit, push and pull as with every normal git repository.\n";
162 my @cmd = split(/ /, $line);
163 if (!defined $cmd[0]) {
166 if ($cmd[0] eq 'capabilities') {
167 die("Too many arguments for capabilities\n")
168 if (defined($cmd[1]));
170 } elsif ($cmd[0] eq 'list') {
171 die("Too many arguments for list\n") if (defined($cmd[2]));
173 } elsif ($cmd[0] eq 'import') {
174 die("Invalid argument for import\n")
175 if ($cmd[1] eq EMPTY
);
176 die("Too many arguments for import\n")
177 if (defined($cmd[2]));
179 } elsif ($cmd[0] eq 'option') {
180 die("Invalid arguments for option\n")
181 if ($cmd[1] eq EMPTY
|| $cmd[2] eq EMPTY
);
182 die("Too many arguments for option\n")
183 if (defined($cmd[3]));
184 mw_option
($cmd[1],$cmd[2]);
185 } elsif ($cmd[0] eq 'push') {
188 print {*STDERR
} "Unknown command. Aborting...\n";
194 # MediaWiki API instance, created lazily.
199 print STDERR
"fatal: could not $action.\n";
200 print STDERR
"fatal: '$url' does not appear to be a mediawiki\n";
201 if ($url =~ /^https/) {
202 print STDERR
"fatal: make sure '$url/api.php' is a valid page\n";
203 print STDERR
"fatal: and the SSL certificate is correct.\n";
205 print STDERR
"fatal: make sure '$url/api.php' is a valid page.\n";
207 print STDERR
"fatal: (error " .
208 $mediawiki->{error
}->{code
} . ': ' .
209 $mediawiki->{error
}->{details
} . ")\n";
213 ## Functions for listing pages on the remote wiki
214 sub get_mw_tracked_pages
{
216 get_mw_page_list
(\
@tracked_pages, $pages);
220 sub get_mw_page_list
{
221 my $page_list = shift;
223 my @some_pages = @
{$page_list};
224 while (@some_pages) {
225 my $last_page = SLICE_SIZE
;
226 if ($#some_pages < $last_page) {
227 $last_page = $#some_pages;
229 my @slice = @some_pages[0..$last_page];
230 get_mw_first_pages
(\
@slice, $pages);
231 @some_pages = @some_pages[(SLICE_SIZE
+ 1)..$#some_pages];
236 sub get_mw_tracked_categories
{
238 foreach my $category (@tracked_categories) {
239 if (index($category, ':') < 0) {
240 # Mediawiki requires the Category
241 # prefix, but let's not force the user
243 $category = "Category:${category}";
245 my $mw_pages = $mediawiki->list( {
247 list
=> 'categorymembers',
248 cmtitle
=> $category,
250 || die $mediawiki->{error
}->{code
} . ': '
251 . $mediawiki->{error
}->{details
} . "\n";
252 foreach my $page (@
{$mw_pages}) {
253 $pages->{$page->{title
}} = $page;
259 sub get_mw_all_pages
{
261 # No user-provided list, get the list of pages from the API.
262 my $mw_pages = $mediawiki->list({
267 if (!defined($mw_pages)) {
268 fatal_mw_error
("get the list of wiki pages");
270 foreach my $page (@
{$mw_pages}) {
271 $pages->{$page->{title
}} = $page;
276 # queries the wiki for a set of pages. Meant to be used within a loop
277 # querying the wiki for slices of page list.
278 sub get_mw_first_pages
{
279 my $some_pages = shift;
280 my @some_pages = @
{$some_pages};
284 # pattern 'page1|page2|...' required by the API
285 my $titles = join('|', @some_pages);
287 my $mw_pages = $mediawiki->api({
291 if (!defined($mw_pages)) {
292 fatal_mw_error
("query the list of wiki pages");
294 while (my ($id, $page) = each(%{$mw_pages->{query
}->{pages
}})) {
296 print {*STDERR
} "Warning: page $page->{title} not found on wiki\n";
298 $pages->{$page->{title
}} = $page;
304 # Get the list of pages to be fetched according to configuration.
306 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
308 print {*STDERR
} "Listing pages on remote wiki...\n";
310 my %pages; # hash on page titles to avoid duplicates
312 if (@tracked_pages) {
314 # The user provided a list of pages titles, but we
315 # still need to query the API to get the page IDs.
316 get_mw_tracked_pages
(\
%pages);
318 if (@tracked_categories) {
320 get_mw_tracked_categories
(\
%pages);
322 if (!$user_defined) {
323 get_mw_all_pages
(\
%pages);
326 print {*STDERR
} "Getting media files for selected pages...\n";
328 get_linked_mediafiles
(\
%pages);
330 get_all_mediafiles
(\
%pages);
333 print {*STDERR
} (scalar keys %pages) . " pages found.\n";
337 # usage: $out = run_git("command args");
338 # $out = run_git("command args", "raw"); # don't interpret output as UTF-8.
341 my $encoding = (shift || 'encoding(UTF-8)');
342 open(my $git, "-|:${encoding}", "git ${args}")
343 or die "Unable to fork: $!\n";
354 sub get_all_mediafiles
{
356 # Attach list of all pages for media files from the API,
357 # they are in a different namespace, only one namespace
358 # can be queried at the same moment
359 my $mw_pages = $mediawiki->list({
362 apnamespace
=> get_mw_namespace_id
('File'),
365 if (!defined($mw_pages)) {
366 print {*STDERR
} "fatal: could not get the list of pages for media files.\n";
367 print {*STDERR
} "fatal: '$url' does not appear to be a mediawiki\n";
368 print {*STDERR
} "fatal: make sure '$url/api.php' is a valid page.\n";
371 foreach my $page (@
{$mw_pages}) {
372 $pages->{$page->{title
}} = $page;
377 sub get_linked_mediafiles
{
379 my @titles = map { $_->{title
} } values(%{$pages});
381 my $batch = BATCH_SIZE
;
383 if ($#titles < $batch) {
386 my @slice = @titles[0..$batch];
388 # pattern 'page1|page2|...' required by the API
389 my $mw_titles = join('|', @slice);
391 # Media files could be included or linked from
392 # a page, get all related
395 prop
=> 'links|images',
396 titles
=> $mw_titles,
397 plnamespace
=> get_mw_namespace_id
('File'),
400 my $result = $mediawiki->api($query);
402 while (my ($id, $page) = each(%{$result->{query
}->{pages
}})) {
404 if (defined($page->{links
})) {
406 = map { $_->{title
} } @
{$page->{links
}};
407 push(@media_titles, @link_titles);
409 if (defined($page->{images
})) {
411 = map { $_->{title
} } @
{$page->{images
}};
412 push(@media_titles, @image_titles);
415 get_mw_page_list
(\
@media_titles, $pages);
419 @titles = @titles[($batch+1)..$#titles];
424 sub get_mw_mediafile_for_page_revision
{
425 # Name of the file on Wiki, with the prefix.
426 my $filename = shift;
427 my $timestamp = shift;
430 # Search if on a media file with given timestamp exists on
431 # MediaWiki. In that case download the file.
435 titles
=> "File:${filename}",
436 iistart
=> $timestamp,
438 iiprop
=> 'timestamp|archivename|url',
441 my $result = $mediawiki->api($query);
443 my ($fileid, $file) = each( %{$result->{query
}->{pages
}} );
444 # If not defined it means there is no revision of the file for
446 if (defined($file->{imageinfo
})) {
447 $mediafile{title
} = $filename;
449 my $fileinfo = pop(@
{$file->{imageinfo
}});
450 $mediafile{timestamp
} = $fileinfo->{timestamp
};
451 # Mediawiki::API's download function doesn't support https URLs
452 # and can't download old versions of files.
453 print {*STDERR
} "\tDownloading file $mediafile{title}, version $mediafile{timestamp}\n";
454 $mediafile{content
} = download_mw_mediafile
($fileinfo->{url
});
459 sub download_mw_mediafile
{
460 my $download_url = shift;
462 my $response = $mediawiki->{ua
}->get($download_url);
463 if ($response->code == HTTP_CODE_OK
) {
464 # It is tempting to return
465 # $response->decoded_content({charset => "none"}), but
466 # when doing so, utf8::downgrade($content) fails with
467 # "Wide character in subroutine entry".
469 return $response->content();
471 print {*STDERR
} "Error downloading mediafile from :\n";
472 print {*STDERR
} "URL: ${download_url}\n";
473 print {*STDERR
} 'Server response: ' . $response->code . q{ } . $response->message . "\n";
478 sub get_last_local_revision
{
479 # Get note regarding last mediawiki revision
480 my $note = run_git
("notes --ref=${remotename}/mediawiki show refs/mediawiki/${remotename}/master 2>/dev/null");
481 my @note_info = split(/ /, $note);
483 my $lastrevision_number;
484 if (!(defined($note_info[0]) && $note_info[0] eq 'mediawiki_revision:')) {
485 print {*STDERR
} 'No previous mediawiki revision found';
486 $lastrevision_number = 0;
488 # Notes are formatted : mediawiki_revision: #number
489 $lastrevision_number = $note_info[1];
490 chomp($lastrevision_number);
491 print {*STDERR
} "Last local mediawiki revision found is ${lastrevision_number}";
493 return $lastrevision_number;
496 # Get the last remote revision without taking in account which pages are
497 # tracked or not. This function makes a single request to the wiki thus
498 # avoid a loop onto all tracked pages. This is useful for the fetch-by-rev
500 sub get_last_global_remote_rev
{
501 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
505 list
=> 'recentchanges',
510 my $result = $mediawiki->api($query);
511 return $result->{query
}->{recentchanges
}[0]->{revid
};
514 # Get the last remote revision concerning the tracked pages and the tracked
516 sub get_last_remote_revision
{
517 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
519 my %pages_hash = get_mw_pages
();
520 my @pages = values(%pages_hash);
524 print {*STDERR
} "Getting last revision id on tracked pages...\n";
526 foreach my $page (@pages) {
527 my $id = $page->{pageid
};
532 rvprop
=> 'ids|timestamp',
536 my $result = $mediawiki->api($query);
538 my $lastrev = pop(@
{$result->{query
}->{pages
}->{$id}->{revisions
}});
540 $basetimestamps{$lastrev->{revid
}} = $lastrev->{timestamp
};
542 $max_rev_num = ($lastrev->{revid
} > $max_rev_num ?
$lastrev->{revid
} : $max_rev_num);
545 print {*STDERR
} "Last remote revision found is $max_rev_num.\n";
549 # Clean content before sending it to MediaWiki
550 sub mediawiki_clean
{
552 my $page_created = shift;
553 # Mediawiki does not allow blank space at the end of a page and ends with a single \n.
554 # This function right trims a string and adds a \n at the end to follow this rule
556 if ($string eq EMPTY
&& $page_created) {
557 # Creating empty pages is forbidden.
558 $string = EMPTY_CONTENT
;
563 # Filter applied on MediaWiki data before adding them to Git
564 sub mediawiki_smudge
{
566 if ($string eq EMPTY_CONTENT
) {
569 # This \n is important. This is due to mediawiki's way to handle end of files.
570 return "${string}\n";
575 print {*STDOUT
} 'data ', bytes
::length($content), "\n", $content;
579 sub literal_data_raw
{
580 # Output possibly binary content.
582 # Avoid confusion between size in bytes and in characters
583 utf8
::downgrade
($content);
584 binmode STDOUT
, ':raw';
585 print {*STDOUT
} 'data ', bytes
::length($content), "\n", $content;
586 binmode STDOUT
, ':encoding(UTF-8)';
590 sub mw_capabilities
{
591 # Revisions are imported to the private namespace
592 # refs/mediawiki/$remotename/ by the helper and fetched into
593 # refs/remotes/$remotename later by fetch.
594 print {*STDOUT
} "refspec refs/heads/*:refs/mediawiki/${remotename}/*\n";
595 print {*STDOUT
} "import\n";
596 print {*STDOUT
} "list\n";
597 print {*STDOUT
} "push\n";
599 print {*STDOUT
} "no-private-update\n";
601 print {*STDOUT
} "\n";
606 # MediaWiki do not have branches, we consider one branch arbitrarily
607 # called master, and HEAD pointing to it.
608 print {*STDOUT
} "? refs/heads/master\n";
609 print {*STDOUT
} "\@refs/heads/master HEAD\n";
610 print {*STDOUT
} "\n";
615 print {*STDERR
} "remote-helper command 'option $_[0]' not yet implemented\n";
616 print {*STDOUT
} "unsupported\n";
620 sub fetch_mw_revisions_for_page
{
623 my $fetch_from = shift;
630 rvstartid
=> $fetch_from,
634 # Let MediaWiki know that we support the latest API.
639 # Get 500 revisions at a time due to the mediawiki api limit
641 my $result = $mediawiki->api($query);
643 # Parse each of those 500 revisions
644 foreach my $revision (@
{$result->{query
}->{pages
}->{$id}->{revisions
}}) {
646 $page_rev_ids->{pageid
} = $page->{pageid
};
647 $page_rev_ids->{revid
} = $revision->{revid
};
648 push(@page_revs, $page_rev_ids);
652 if ($result->{'query-continue'}) { # For legacy APIs
653 $query->{rvstartid
} = $result->{'query-continue'}->{revisions
}->{rvstartid
};
654 } elsif ($result->{continue}) { # For newer APIs
655 $query->{rvstartid
} = $result->{continue}->{rvcontinue
};
656 $query->{continue} = $result->{continue}->{continue};
661 if ($shallow_import && @page_revs) {
662 print {*STDERR
} " Found 1 revision (shallow import).\n";
663 @page_revs = sort {$b->{revid
} <=> $a->{revid
}} (@page_revs);
664 return $page_revs[0];
666 print {*STDERR
} " Found ${revnum} revision(s).\n";
670 sub fetch_mw_revisions
{
671 my $pages = shift; my @pages = @
{$pages};
672 my $fetch_from = shift;
676 foreach my $page (@pages) {
677 my $id = $page->{pageid
};
678 print {*STDERR
} "page ${n}/", scalar(@pages), ': ', $page->{title
}, "\n";
680 my @page_revs = fetch_mw_revisions_for_page
($page, $id, $fetch_from);
681 @revisions = (@page_revs, @revisions);
684 return ($n, @revisions);
689 $path =~ s/\\/\\\\/g;
692 return qq("${path}");
695 sub import_file_revision
{
697 my %commit = %{$commit};
698 my $full_import = shift;
700 my $mediafile = shift;
703 %mediafile = %{$mediafile};
706 my $title = $commit{title
};
707 my $comment = $commit{comment
};
708 my $content = $commit{content
};
709 my $author = $commit{author
};
710 my $date = $commit{date
};
712 print {*STDOUT
} "commit refs/mediawiki/${remotename}/master\n";
713 print {*STDOUT
} "mark :${n}\n";
714 print {*STDOUT
} "committer ${author} <${author}\@${wiki_name}> " . $date->epoch . " +0000\n";
715 literal_data
($comment);
717 # If it's not a clone, we need to know where to start from
718 if (!$full_import && $n == 1) {
719 print {*STDOUT
} "from refs/mediawiki/${remotename}/master^0\n";
721 if ($content ne DELETED_CONTENT
) {
722 print {*STDOUT
} 'M 644 inline ' .
723 fe_escape_path
("${title}.mw") . "\n";
724 literal_data
($content);
726 print {*STDOUT
} 'M 644 inline '
727 . fe_escape_path
($mediafile{title
}) . "\n";
728 literal_data_raw
($mediafile{content
});
730 print {*STDOUT
} "\n\n";
732 print {*STDOUT
} 'D ' . fe_escape_path
("${title}.mw") . "\n";
735 # mediawiki revision number in the git note
736 if ($full_import && $n == 1) {
737 print {*STDOUT
} "reset refs/notes/${remotename}/mediawiki\n";
739 print {*STDOUT
} "commit refs/notes/${remotename}/mediawiki\n";
740 print {*STDOUT
} "committer ${author} <${author}\@${wiki_name}> " . $date->epoch . " +0000\n";
741 literal_data
('Note added by git-mediawiki during import');
742 if (!$full_import && $n == 1) {
743 print {*STDOUT
} "from refs/notes/${remotename}/mediawiki^0\n";
745 print {*STDOUT
} "N inline :${n}\n";
746 literal_data
("mediawiki_revision: $commit{mw_revision}");
747 print {*STDOUT
} "\n\n";
751 # parse a sequence of
755 # (like batch sequence of import and sequence of push statements)
761 if ($line =~ /^$cmd (.*)$/) {
763 } elsif ($line eq "\n") {
766 die("Invalid command in a '$cmd' batch: $_\n");
773 # multiple import commands can follow each other.
774 my @refs = (shift, get_more_refs
('import'));
775 foreach my $ref (@refs) {
778 print {*STDOUT
} "done\n";
784 # The remote helper will call "import HEAD" and
785 # "import refs/heads/master".
786 # Since HEAD is a symbolic ref to master (by convention,
787 # followed by the output of the command "list" that we gave),
788 # we don't need to do anything in this case.
789 if ($ref eq 'HEAD') {
793 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
795 print {*STDERR
} "Searching revisions...\n";
796 my $last_local = get_last_local_revision
();
797 my $fetch_from = $last_local + 1;
798 if ($fetch_from == 1) {
799 print {*STDERR
} ", fetching from beginning.\n";
801 print {*STDERR
} ", fetching from here.\n";
805 if ($fetch_strategy eq 'by_rev') {
806 print {*STDERR
} "Fetching & writing export data by revs...\n";
807 $n = mw_import_ref_by_revs
($fetch_from);
808 } elsif ($fetch_strategy eq 'by_page') {
809 print {*STDERR
} "Fetching & writing export data by pages...\n";
810 $n = mw_import_ref_by_pages
($fetch_from);
812 print {*STDERR
} qq(fatal
: invalid fetch strategy
"${fetch_strategy}".\n);
813 print {*STDERR
} "Check your configuration variables remote.${remotename}.fetchStrategy and mediawiki.fetchStrategy\n";
817 if ($fetch_from == 1 && $n == 0) {
818 print {*STDERR
} "You appear to have cloned an empty MediaWiki.\n";
819 # Something has to be done remote-helper side. If nothing is done, an error is
820 # thrown saying that HEAD is referring to unknown object 0000000000000000000
821 # and the clone fails.
826 sub mw_import_ref_by_pages
{
828 my $fetch_from = shift;
829 my %pages_hash = get_mw_pages
();
830 my @pages = values(%pages_hash);
832 my ($n, @revisions) = fetch_mw_revisions
(\
@pages, $fetch_from);
834 @revisions = sort {$a->{revid
} <=> $b->{revid
}} @revisions;
835 my @revision_ids = map { $_->{revid
} } @revisions;
837 return mw_import_revids
($fetch_from, \
@revision_ids, \
%pages_hash);
840 sub mw_import_ref_by_revs
{
842 my $fetch_from = shift;
843 my %pages_hash = get_mw_pages
();
845 my $last_remote = get_last_global_remote_rev
();
846 my @revision_ids = $fetch_from..$last_remote;
847 return mw_import_revids
($fetch_from, \
@revision_ids, \
%pages_hash);
850 # Import revisions given in second argument (array of integers).
851 # Only pages appearing in the third argument (hash indexed by page titles)
853 sub mw_import_revids
{
854 my $fetch_from = shift;
855 my $revision_ids = shift;
860 my $last_timestamp = 0; # Placeholer in case $rev->timestamp is undefined
862 foreach my $pagerevid (@
{$revision_ids}) {
863 # Count page even if we skip it, since we display
864 # $n/$total and $total includes skipped pages.
867 # fetch the content of the pages
871 rvprop
=> 'content|timestamp|comment|user|ids',
872 revids
=> $pagerevid,
875 my $result = $mediawiki->api($query);
878 die "Failed to retrieve modified page for revision $pagerevid\n";
881 if (defined($result->{query
}->{badrevids
}->{$pagerevid})) {
882 # The revision id does not exist on the remote wiki.
886 if (!defined($result->{query
}->{pages
})) {
887 die "Invalid revision ${pagerevid}.\n";
890 my @result_pages = values(%{$result->{query
}->{pages
}});
891 my $result_page = $result_pages[0];
892 my $rev = $result_pages[0]->{revisions
}->[0];
894 my $page_title = $result_page->{title
};
896 if (!exists($pages->{$page_title})) {
897 print {*STDERR
} "${n}/", scalar(@
{$revision_ids}),
898 ": Skipping revision #$rev->{revid} of ${page_title}\n";
905 $commit{author
} = $rev->{user
} || 'Anonymous';
906 $commit{comment
} = $rev->{comment
} || EMPTY_MESSAGE
;
907 $commit{title
} = smudge_filename
($page_title);
908 $commit{mw_revision
} = $rev->{revid
};
909 $commit{content
} = mediawiki_smudge
($rev->{'*'});
911 if (!defined($rev->{timestamp
})) {
914 $last_timestamp = $rev->{timestamp
};
916 $commit{date
} = DateTime
::Format
::ISO8601
->parse_datetime($last_timestamp);
918 # Differentiates classic pages and media files.
919 my ($namespace, $filename) = $page_title =~ /^([^:]*):(.*)$/;
922 my $id = get_mw_namespace_id
($namespace);
923 if ($id && $id == get_mw_namespace_id
('File')) {
924 %mediafile = get_mw_mediafile_for_page_revision
($filename, $rev->{timestamp
});
927 # If this is a revision of the media page for new version
928 # of a file do one common commit for both file and media page.
929 # Else do commit only for that page.
930 print {*STDERR
} "${n}/", scalar(@
{$revision_ids}), ": Revision #$rev->{revid} of $commit{title}\n";
931 import_file_revision
(\
%commit, ($fetch_from == 1), $n_actual, \
%mediafile);
937 sub error_non_fast_forward
{
938 my $advice = run_git
('config --bool advice.pushNonFastForward');
940 if ($advice ne 'false') {
941 # Native git-push would show this after the summary.
942 # We can't ask it to display it cleanly, so print it
944 print {*STDERR
} "To prevent you from losing history, non-fast-forward updates were rejected\n";
945 print {*STDERR
} "Merge the remote changes (e.g. 'git pull') before pushing again. See the\n";
946 print {*STDERR
} "'Note about fast-forwards' section of 'git push --help' for details.\n";
948 print {*STDOUT
} qq(error
$_[0] "non-fast-forward"\n);
953 my $complete_file_name = shift;
954 my $new_sha1 = shift;
955 my $extension = shift;
956 my $file_deleted = shift;
959 my $path = "File:${complete_file_name}";
960 my %hashFiles = get_allowed_file_extensions
();
961 if (!exists($hashFiles{$extension})) {
962 print {*STDERR
} "${complete_file_name} is not a permitted file on this wiki.\n";
963 print {*STDERR
} "Check the configuration of file uploads in your mediawiki.\n";
966 # Deleting and uploading a file requires a priviledged user
968 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
974 if (!$mediawiki->edit($query)) {
975 print {*STDERR
} "Failed to delete file on remote wiki\n";
976 print {*STDERR
} "Check your permissions on the remote site. Error code:\n";
977 print {*STDERR
} $mediawiki->{error
}->{code
} . ':' . $mediawiki->{error
}->{details
};
981 # Don't let perl try to interpret file content as UTF-8 => use "raw"
982 my $content = run_git
("cat-file blob ${new_sha1}", 'raw');
983 if ($content ne EMPTY
) {
984 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
985 $mediawiki->{config
}->{upload_url
} =
986 "${url}/index.php/Special:Upload";
989 filename
=> $complete_file_name,
993 Content
=> $content],
997 } ) || die $mediawiki->{error
}->{code
} . ':'
998 . $mediawiki->{error
}->{details
} . "\n";
999 my $last_file_page = $mediawiki->get_page({title
=> $path});
1000 $newrevid = $last_file_page->{revid
};
1001 print {*STDERR
} "Pushed file: ${new_sha1} - ${complete_file_name}.\n";
1003 print {*STDERR
} "Empty file ${complete_file_name} not pushed.\n";
1010 my $diff_info = shift;
1011 # $diff_info contains a string in this format:
1012 # 100644 100644 <sha1_of_blob_before_commit> <sha1_of_blob_now> <status>
1013 my @diff_info_split = split(/[ \t]/, $diff_info);
1015 # Filename, including .mw extension
1016 my $complete_file_name = shift;
1018 my $summary = shift;
1019 # MediaWiki revision number. Keep the previous one by default,
1020 # in case there's no edit to perform.
1021 my $oldrevid = shift;
1024 if ($summary eq EMPTY_MESSAGE
) {
1028 my $new_sha1 = $diff_info_split[3];
1029 my $old_sha1 = $diff_info_split[2];
1030 my $page_created = ($old_sha1 eq NULL_SHA1
);
1031 my $page_deleted = ($new_sha1 eq NULL_SHA1
);
1032 $complete_file_name = clean_filename
($complete_file_name);
1034 my ($title, $extension) = $complete_file_name =~ /^(.*)\.([^\.]*)$/;
1035 if (!defined($extension)) {
1038 if ($extension eq 'mw') {
1039 my $ns = get_mw_namespace_id_for_page
($complete_file_name);
1040 if ($ns && $ns == get_mw_namespace_id
('File') && (!$export_media)) {
1041 print {*STDERR
} "Ignoring media file related page: ${complete_file_name}\n";
1042 return ($oldrevid, 'ok');
1045 if ($page_deleted) {
1046 # Deleting a page usually requires
1047 # special privileges. A common
1048 # convention is to replace the page
1049 # with this content instead:
1050 $file_content = DELETED_CONTENT
;
1052 $file_content = run_git
("cat-file blob ${new_sha1}");
1055 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
1057 my $result = $mediawiki->edit( {
1059 summary
=> $summary,
1061 basetimestamp
=> $basetimestamps{$oldrevid},
1062 text
=> mediawiki_clean
($file_content, $page_created),
1064 skip_encoding
=> 1 # Helps with names with accentuated characters
1067 if ($mediawiki->{error
}->{code
} == 3) {
1068 # edit conflicts, considered as non-fast-forward
1069 print {*STDERR
} 'Warning: Error ' .
1070 $mediawiki->{error
}->{code
} .
1071 ' from mediawiki: ' . $mediawiki->{error
}->{details
} .
1073 return ($oldrevid, 'non-fast-forward');
1075 # Other errors. Shouldn't happen => just die()
1076 die 'Fatal: Error ' .
1077 $mediawiki->{error
}->{code
} .
1078 ' from mediawiki: ' . $mediawiki->{error
}->{details
} . "\n";
1081 $newrevid = $result->{edit
}->{newrevid
};
1082 print {*STDERR
} "Pushed file: ${new_sha1} - ${title}\n";
1083 } elsif ($export_media) {
1084 $newrevid = mw_upload_file
($complete_file_name, $new_sha1,
1085 $extension, $page_deleted,
1088 print {*STDERR
} "Ignoring media file ${title}\n";
1090 $newrevid = ($newrevid or $oldrevid);
1091 return ($newrevid, 'ok');
1095 # multiple push statements can follow each other
1096 my @refsspecs = (shift, get_more_refs
('push'));
1098 for my $refspec (@refsspecs) {
1099 my ($force, $local, $remote) = $refspec =~ /^(\+)?([^:]*):([^:]*)$/
1100 or die("Invalid refspec for push. Expected <src>:<dst> or +<src>:<dst>\n");
1102 print {*STDERR
} "Warning: forced push not allowed on a MediaWiki.\n";
1104 if ($local eq EMPTY
) {
1105 print {*STDERR
} "Cannot delete remote branch on a MediaWiki\n";
1106 print {*STDOUT
} "error ${remote} cannot delete\n";
1109 if ($remote ne 'refs/heads/master') {
1110 print {*STDERR
} "Only push to the branch 'master' is supported on a MediaWiki\n";
1111 print {*STDOUT
} "error ${remote} only master allowed\n";
1114 if (mw_push_revision
($local, $remote)) {
1119 # Notify Git that the push is done
1120 print {*STDOUT
} "\n";
1122 if ($pushed && $dumb_push) {
1123 print {*STDERR
} "Just pushed some revisions to MediaWiki.\n";
1124 print {*STDERR
} "The pushed revisions now have to be re-imported, and your current branch\n";
1125 print {*STDERR
} "needs to be updated with these re-imported commits. You can do this with\n";
1126 print {*STDERR
} "\n";
1127 print {*STDERR
} " git pull --rebase\n";
1128 print {*STDERR
} "\n";
1133 sub mw_push_revision
{
1135 my $remote = shift; # actually, this has to be "refs/heads/master" at this point.
1136 my $last_local_revid = get_last_local_revision
();
1137 print {*STDERR
} ".\n"; # Finish sentence started by get_last_local_revision()
1138 my $last_remote_revid = get_last_remote_revision
();
1139 my $mw_revision = $last_remote_revid;
1141 # Get sha1 of commit pointed by local HEAD
1142 my $HEAD_sha1 = run_git
("rev-parse ${local} 2>/dev/null");
1144 # Get sha1 of commit pointed by remotes/$remotename/master
1145 my $remoteorigin_sha1 = run_git
("rev-parse refs/remotes/${remotename}/master 2>/dev/null");
1146 chomp($remoteorigin_sha1);
1148 if ($last_local_revid > 0 &&
1149 $last_local_revid < $last_remote_revid) {
1150 return error_non_fast_forward
($remote);
1153 if ($HEAD_sha1 eq $remoteorigin_sha1) {
1158 # Get every commit in between HEAD and refs/remotes/origin/master,
1159 # including HEAD and refs/remotes/origin/master
1160 my @commit_pairs = ();
1161 if ($last_local_revid > 0) {
1162 my $parsed_sha1 = $remoteorigin_sha1;
1163 # Find a path from last MediaWiki commit to pushed commit
1164 print {*STDERR
} "Computing path from local to remote ...\n";
1165 my @local_ancestry = split(/\n/, run_git
("rev-list --boundary --parents ${local} ^${parsed_sha1}"));
1167 foreach my $line (@local_ancestry) {
1168 if (my ($child, $parents) = $line =~ /^-?([a-f0-9]+) ([a-f0-9 ]+)/) {
1169 foreach my $parent (split(/ /, $parents)) {
1170 $local_ancestry{$parent} = $child;
1172 } elsif (!$line =~ /^([a-f0-9]+)/) {
1173 die "Unexpected output from git rev-list: ${line}\n";
1176 while ($parsed_sha1 ne $HEAD_sha1) {
1177 my $child = $local_ancestry{$parsed_sha1};
1179 print {*STDERR
} "Cannot find a path in history from remote commit to last commit\n";
1180 return error_non_fast_forward
($remote);
1182 push(@commit_pairs, [$parsed_sha1, $child]);
1183 $parsed_sha1 = $child;
1186 # No remote mediawiki revision. Export the whole
1187 # history (linearized with --first-parent)
1188 print {*STDERR
} "Warning: no common ancestor, pushing complete history\n";
1189 my $history = run_git
("rev-list --first-parent --children ${local}");
1190 my @history = split(/\n/, $history);
1191 @history = @history[1..$#history];
1192 foreach my $line (reverse @history) {
1193 my @commit_info_split = split(/[ \n]/, $line);
1194 push(@commit_pairs, \
@commit_info_split);
1198 foreach my $commit_info_split (@commit_pairs) {
1199 my $sha1_child = @
{$commit_info_split}[0];
1200 my $sha1_commit = @
{$commit_info_split}[1];
1201 my $diff_infos = run_git
("diff-tree -r --raw -z ${sha1_child} ${sha1_commit}");
1202 # TODO: we could detect rename, and encode them with a #redirect on the wiki.
1203 # TODO: for now, it's just a delete+add
1204 my @diff_info_list = split(/\0/, $diff_infos);
1205 # Keep the subject line of the commit message as mediawiki comment for the revision
1206 my $commit_msg = run_git
(qq(log --no-walk
--format
="%s" ${sha1_commit
}));
1209 while (@diff_info_list) {
1211 # git diff-tree -z gives an output like
1212 # <metadata>\0<filename1>\0
1213 # <metadata>\0<filename2>\0
1214 # and we've split on \0.
1215 my $info = shift(@diff_info_list);
1216 my $file = shift(@diff_info_list);
1217 ($mw_revision, $status) = mw_push_file
($info, $file, $commit_msg, $mw_revision);
1218 if ($status eq 'non-fast-forward') {
1219 # we may already have sent part of the
1220 # commit to MediaWiki, but it's too
1221 # late to cancel it. Stop the push in
1222 # the middle, but still give an
1223 # accurate error message.
1224 return error_non_fast_forward
($remote);
1226 if ($status ne 'ok') {
1227 die("Unknown error from mw_push_file()\n");
1231 run_git
(qq(notes
--ref=${remotename
}/mediawiki add
-f
-m
"mediawiki_revision: ${mw_revision}" ${sha1_commit
}));
1235 print {*STDOUT
} "ok ${remote}\n";
1239 sub get_allowed_file_extensions
{
1240 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
1245 siprop
=> 'fileextensions'
1247 my $result = $mediawiki->api($query);
1248 my @file_extensions = map { $_->{ext
}} @
{$result->{query
}->{fileextensions
}};
1249 my %hashFile = map { $_ => 1 } @file_extensions;
1254 # In memory cache for MediaWiki namespace ids.
1257 # Namespaces whose id is cached in the configuration file
1258 # (to avoid duplicates)
1259 my %cached_mw_namespace_id;
1261 # Return MediaWiki id for a canonical namespace name.
1262 # Ex.: "File", "Project".
1263 sub get_mw_namespace_id
{
1264 $mediawiki = connect_maybe
($mediawiki, $remotename, $url);
1267 if (!exists $namespace_id{$name}) {
1268 # Look at configuration file, if the record for that namespace is
1269 # already cached. Namespaces are stored in form:
1270 # "Name_of_namespace:Id_namespace", ex.: "File:6".
1271 my @temp = split(/\n/,
1272 run_git
("config --get-all remote.${remotename}.namespaceCache"));
1274 foreach my $ns (@temp) {
1275 my ($n, $id) = split(/:/, $ns);
1276 if ($id eq 'notANameSpace') {
1277 $namespace_id{$n} = {is_namespace
=> 0};
1279 $namespace_id{$n} = {is_namespace
=> 1, id
=> $id};
1281 $cached_mw_namespace_id{$n} = 1;
1285 if (!exists $namespace_id{$name}) {
1286 print {*STDERR
} "Namespace ${name} not found in cache, querying the wiki ...\n";
1287 # NS not found => get namespace id from MW and store it in
1288 # configuration file.
1292 siprop
=> 'namespaces'
1294 my $result = $mediawiki->api($query);
1296 while (my ($id, $ns) = each(%{$result->{query
}->{namespaces
}})) {
1297 if (defined($ns->{id
}) && defined($ns->{canonical
})) {
1298 $namespace_id{$ns->{canonical
}} = {is_namespace
=> 1, id
=> $ns->{id
}};
1300 # alias (e.g. french Fichier: as alias for canonical File:)
1301 $namespace_id{$ns->{'*'}} = {is_namespace
=> 1, id
=> $ns->{id
}};
1307 my $ns = $namespace_id{$name};
1311 print {*STDERR
} "No such namespace ${name} on MediaWiki.\n";
1312 $ns = {is_namespace
=> 0};
1313 $namespace_id{$name} = $ns;
1316 if ($ns->{is_namespace
}) {
1320 # Store "notANameSpace" as special value for inexisting namespaces
1321 my $store_id = ($id || 'notANameSpace');
1323 # Store explicitly requested namespaces on disk
1324 if (!exists $cached_mw_namespace_id{$name}) {
1325 run_git
(qq(config
--add remote
.${remotename
}.namespaceCache
"${name}:${store_id}"));
1326 $cached_mw_namespace_id{$name} = 1;
1331 sub get_mw_namespace_id_for_page
{
1332 my $namespace = shift;
1333 if ($namespace =~ /^([^:]*):/) {
1334 return get_mw_namespace_id
($namespace);