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 # https://github.com/Bibzball/Git-Mediawiki/wiki
16 # - Only wiki pages are managed, no support for [[File:...]]
19 # - Poor performance in the best case: it takes forever to check
20 # whether we're up-to-date (on fetch or push) or to fetch a few
21 # revisions from a large wiki, because we use exclusively a
22 # page-based synchronization. We could switch to a wiki-wide
23 # synchronization when the synchronization involves few revisions
24 # but the wiki is large.
26 # - Git renames could be turned into MediaWiki renames (see TODO
29 # - login/password support requires the user to write the password
30 # cleartext in a file (see TODO below).
32 # - No way to import "one page, and all pages included in it"
34 # - Multiple remote MediaWikis have not been very well tested.
38 use DateTime::Format::ISO8601;
40 # By default, use UTF-8 to communicate with Git and the user
41 binmode STDERR, ":utf8";
42 binmode STDOUT, ":utf8";
49 # Mediawiki filenames can contain forward slashes. This variable decides by which pattern they should be replaced
50 use constant SLASH_REPLACEMENT => "%2F";
52 # It's not always possible to delete pages (may require some
53 # priviledges). Deleted pages are replaced with this content.
54 use constant DELETED_CONTENT => "[[Category:Deleted]]\n";
56 # It's not possible to create empty pages. New empty files in Git are
57 # sent with this content instead.
58 use constant EMPTY_CONTENT => "<!-- empty page -->\n";
60 # used to reflect file creation or deletion in diff.
61 use constant NULL_SHA1 => "0000000000000000000000000000000000000000";
63 my $remotename = $ARGV[0];
66 # Accept both space-separated and multiple keys in config file.
67 # Spaces should be written as _ anyway because we'll use chomp.
68 my @tracked_pages = split(/[ \n]/, run_git("config --get-all remote.". $remotename .".pages"));
69 chomp(@tracked_pages);
71 # Just like @tracked_pages, but for MediaWiki categories.
72 my @tracked_categories = split(/[ \n]/, run_git("config --get-all remote.". $remotename .".categories"));
73 chomp(@tracked_categories);
75 my $wiki_login = run_git("config --get remote.". $remotename .".mwLogin");
76 # TODO: ideally, this should be able to read from keyboard, but we're
77 # inside a remote helper, so our stdin is connect to git, not to a
79 my $wiki_passwd = run_git("config --get remote.". $remotename .".mwPassword");
80 my $wiki_domain = run_git("config --get remote.". $remotename .".mwDomain");
85 # Import only last revisions (both for clone and fetch)
86 my $shallow_import = run_git("config --get --bool remote.". $remotename .".shallow");
87 chomp($shallow_import);
88 $shallow_import = ($shallow_import eq "true");
90 # Dumb push: don't update notes and mediawiki ref to reflect the last push.
92 # Configurable with mediawiki.dumbPush, or per-remote with
93 # remote.<remotename>.dumbPush.
95 # This means the user will have to re-import the just-pushed
96 # revisions. On the other hand, this means that the Git revisions
97 # corresponding to MediaWiki revisions are all imported from the wiki,
98 # regardless of whether they were initially created in Git or from the
99 # web interface, hence all users will get the same history (i.e. if
100 # the push from Git to MediaWiki loses some information, everybody
101 # will get the history with information lost). If the import is
102 # deterministic, this means everybody gets the same sha1 for each
103 # MediaWiki revision.
104 my $dumb_push = run_git("config --get --bool remote.$remotename.dumbPush");
105 unless ($dumb_push) {
106 $dumb_push = run_git("config --get --bool mediawiki.dumbPush");
109 $dumb_push = ($dumb_push eq "true");
111 my $wiki_name = $url;
112 $wiki_name =~ s/[^\/]*:\/\///;
113 # If URL is like http://user:password@example.com/, we clearly don't
114 # want the password in $wiki_name. While we're there, also remove user
115 # and '@' sign, to avoid author like MWUser@HTTPUser@host.com
116 $wiki_name =~ s/^.*@//;
124 if (defined($cmd[0])) {
126 if ($cmd[0] eq "capabilities") {
127 die("Too many arguments for capabilities") unless (!defined($cmd[1]));
129 } elsif ($cmd[0] eq "list") {
130 die("Too many arguments for list") unless (!defined($cmd[2]));
132 } elsif ($cmd[0] eq "import") {
133 die("Invalid arguments for import") unless ($cmd[1] ne "" && !defined($cmd[2]));
135 } elsif ($cmd[0] eq "option") {
136 die("Too many arguments for option") unless ($cmd[1] ne "" && $cmd[2] ne "" && !defined($cmd[3]));
137 mw_option($cmd[1],$cmd[2]);
138 } elsif ($cmd[0] eq "push") {
141 print STDERR "Unknown command. Aborting...\n";
145 # blank line: we should terminate
149 BEGIN { $| = 1 } # flush STDOUT, to make sure the previous
150 # command is fully processed.
153 ########################## Functions ##############################
155 ## credential API management (generic functions)
157 sub credential_from_url {
159 my $parsed = URI->new($url);
162 if ($parsed->scheme) {
163 $credential{protocol} = $parsed->scheme;
166 $credential{host} = $parsed->host;
169 $credential{path} = $parsed->path;
171 if ($parsed->userinfo) {
172 if ($parsed->userinfo =~ /([^:]*):(.*)/) {
173 $credential{username} = $1;
174 $credential{password} = $2;
176 $credential{username} = $parsed->userinfo;
183 sub credential_read {
188 my ($key, $value) = /([^=]*)=(.*)/;
189 if (not defined $key) {
190 die "ERROR receiving response from git credential $op:\n$_\n";
192 $credential{$key} = $value;
197 sub credential_write {
198 my $credential = shift;
200 while (my ($key, $value) = each(%$credential) ) {
202 print $writer "$key=$value\n";
209 my $credential = shift;
210 my $pid = open2(my $reader, my $writer, "git credential $op");
211 credential_write($credential, $writer);
216 %$credential = credential_read($reader, $op);
219 die "ERROR while running git credential $op:\n$_";
224 my $child_exit_status = $? >> 8;
225 if ($child_exit_status != 0) {
226 die "'git credential $op' failed with code $child_exit_status.";
230 # MediaWiki API instance, created lazily.
233 sub mw_connect_maybe {
237 $mediawiki = MediaWiki::API->new;
238 $mediawiki->{config}->{api_url} = "$url/api.php";
240 my %credential = credential_from_url($url);
241 $credential{username} = $wiki_login;
242 $credential{password} = $wiki_passwd;
243 credential_run("fill", \%credential);
244 my $request = {lgname => $credential{username},
245 lgpassword => $credential{password},
246 lgdomain => $wiki_domain};
247 if ($mediawiki->login($request)) {
248 credential_run("approve", \%credential);
249 print STDERR "Logged in mediawiki user \"$credential{username}\".\n";
251 print STDERR "Failed to log in mediawiki user \"$credential{username}\" on $url\n";
252 print STDERR " (error " .
253 $mediawiki->{error}->{code} . ': ' .
254 $mediawiki->{error}->{details} . ")\n";
255 credential_run("reject", \%credential);
261 sub get_mw_first_pages {
262 my $some_pages = shift;
263 my @some_pages = @{$some_pages};
267 # pattern 'page1|page2|...' required by the API
268 my $titles = join('|', @some_pages);
270 my $mw_pages = $mediawiki->api({
274 if (!defined($mw_pages)) {
275 print STDERR "fatal: could not query the list of wiki pages.\n";
276 print STDERR "fatal: '$url' does not appear to be a mediawiki\n";
277 print STDERR "fatal: make sure '$url/api.php' is a valid page.\n";
280 while (my ($id, $page) = each(%{$mw_pages->{query}->{pages}})) {
282 print STDERR "Warning: page $page->{title} not found on wiki\n";
284 $pages->{$page->{title}} = $page;
292 my %pages; # hash on page titles to avoid duplicates
294 if (@tracked_pages) {
296 # The user provided a list of pages titles, but we
297 # still need to query the API to get the page IDs.
299 my @some_pages = @tracked_pages;
300 while (@some_pages) {
302 if ($#some_pages < $last) {
303 $last = $#some_pages;
305 my @slice = @some_pages[0..$last];
306 get_mw_first_pages(\@slice, \%pages);
307 @some_pages = @some_pages[51..$#some_pages];
310 if (@tracked_categories) {
312 foreach my $category (@tracked_categories) {
313 if (index($category, ':') < 0) {
314 # Mediawiki requires the Category
315 # prefix, but let's not force the user
317 $category = "Category:" . $category;
319 my $mw_pages = $mediawiki->list( {
321 list => 'categorymembers',
322 cmtitle => $category,
324 || die $mediawiki->{error}->{code} . ': ' . $mediawiki->{error}->{details};
325 foreach my $page (@{$mw_pages}) {
326 $pages{$page->{title}} = $page;
330 if (!$user_defined) {
331 # No user-provided list, get the list of pages from
333 my $mw_pages = $mediawiki->list({
338 if (!defined($mw_pages)) {
339 print STDERR "fatal: could not get the list of wiki pages.\n";
340 print STDERR "fatal: '$url' does not appear to be a mediawiki\n";
341 print STDERR "fatal: make sure '$url/api.php' is a valid page.\n";
344 foreach my $page (@{$mw_pages}) {
345 $pages{$page->{title}} = $page;
348 return values(%pages);
351 # usage: $out = run_git("command args");
352 # $out = run_git("command args", "raw"); # don't interpret output as UTF-8.
355 my $encoding = (shift || "encoding(UTF-8)");
356 open(my $git, "-|:$encoding", "git " . $args);
357 my $res = do { local $/; <$git> };
364 sub get_last_local_revision {
365 # Get note regarding last mediawiki revision
366 my $note = run_git("notes --ref=$remotename/mediawiki show refs/mediawiki/$remotename/master 2>/dev/null");
367 my @note_info = split(/ /, $note);
369 my $lastrevision_number;
370 if (!(defined($note_info[0]) && $note_info[0] eq "mediawiki_revision:")) {
371 print STDERR "No previous mediawiki revision found";
372 $lastrevision_number = 0;
374 # Notes are formatted : mediawiki_revision: #number
375 $lastrevision_number = $note_info[1];
376 chomp($lastrevision_number);
377 print STDERR "Last local mediawiki revision found is $lastrevision_number";
379 return $lastrevision_number;
382 # Remember the timestamp corresponding to a revision id.
385 sub get_last_remote_revision {
388 my @pages = get_mw_pages();
392 foreach my $page (@pages) {
393 my $id = $page->{pageid};
398 rvprop => 'ids|timestamp',
402 my $result = $mediawiki->api($query);
404 my $lastrev = pop(@{$result->{query}->{pages}->{$id}->{revisions}});
406 $basetimestamps{$lastrev->{revid}} = $lastrev->{timestamp};
408 $max_rev_num = ($lastrev->{revid} > $max_rev_num ? $lastrev->{revid} : $max_rev_num);
411 print STDERR "Last remote revision found is $max_rev_num.\n";
415 # Clean content before sending it to MediaWiki
416 sub mediawiki_clean {
418 my $page_created = shift;
419 # Mediawiki does not allow blank space at the end of a page and ends with a single \n.
420 # This function right trims a string and adds a \n at the end to follow this rule
422 if ($string eq "" && $page_created) {
423 # Creating empty pages is forbidden.
424 $string = EMPTY_CONTENT;
429 # Filter applied on MediaWiki data before adding them to Git
430 sub mediawiki_smudge {
432 if ($string eq EMPTY_CONTENT) {
435 # This \n is important. This is due to mediawiki's way to handle end of files.
439 sub mediawiki_clean_filename {
440 my $filename = shift;
441 $filename =~ s/@{[SLASH_REPLACEMENT]}/\//g;
442 # [, ], |, {, and } are forbidden by MediaWiki, even URL-encoded.
443 # Do a variant of URL-encoding, i.e. looks like URL-encoding,
444 # but with _ added to prevent MediaWiki from thinking this is
445 # an actual special character.
446 $filename =~ s/[\[\]\{\}\|]/sprintf("_%%_%x", ord($&))/ge;
447 # If we use the uri escape before
448 # we should unescape here, before anything
453 sub mediawiki_smudge_filename {
454 my $filename = shift;
455 $filename =~ s/\//@{[SLASH_REPLACEMENT]}/g;
456 $filename =~ s/ /_/g;
457 # Decode forbidden characters encoded in mediawiki_clean_filename
458 $filename =~ s/_%_([0-9a-fA-F][0-9a-fA-F])/sprintf("%c", hex($1))/ge;
464 print STDOUT "data ", bytes::length($content), "\n", $content;
467 sub mw_capabilities {
468 # Revisions are imported to the private namespace
469 # refs/mediawiki/$remotename/ by the helper and fetched into
470 # refs/remotes/$remotename later by fetch.
471 print STDOUT "refspec refs/heads/*:refs/mediawiki/$remotename/*\n";
472 print STDOUT "import\n";
473 print STDOUT "list\n";
474 print STDOUT "push\n";
479 # MediaWiki do not have branches, we consider one branch arbitrarily
480 # called master, and HEAD pointing to it.
481 print STDOUT "? refs/heads/master\n";
482 print STDOUT "\@refs/heads/master HEAD\n";
487 print STDERR "remote-helper command 'option $_[0]' not yet implemented\n";
488 print STDOUT "unsupported\n";
491 sub fetch_mw_revisions_for_page {
494 my $fetch_from = shift;
501 rvstartid => $fetch_from,
507 # Get 500 revisions at a time due to the mediawiki api limit
509 my $result = $mediawiki->api($query);
511 # Parse each of those 500 revisions
512 foreach my $revision (@{$result->{query}->{pages}->{$id}->{revisions}}) {
514 $page_rev_ids->{pageid} = $page->{pageid};
515 $page_rev_ids->{revid} = $revision->{revid};
516 push(@page_revs, $page_rev_ids);
519 last unless $result->{'query-continue'};
520 $query->{rvstartid} = $result->{'query-continue'}->{revisions}->{rvstartid};
522 if ($shallow_import && @page_revs) {
523 print STDERR " Found 1 revision (shallow import).\n";
524 @page_revs = sort {$b->{revid} <=> $a->{revid}} (@page_revs);
525 return $page_revs[0];
527 print STDERR " Found ", $revnum, " revision(s).\n";
531 sub fetch_mw_revisions {
532 my $pages = shift; my @pages = @{$pages};
533 my $fetch_from = shift;
537 foreach my $page (@pages) {
538 my $id = $page->{pageid};
540 print STDERR "page $n/", scalar(@pages), ": ". $page->{title} ."\n";
542 my @page_revs = fetch_mw_revisions_for_page($page, $id, $fetch_from);
543 @revisions = (@page_revs, @revisions);
546 return ($n, @revisions);
549 sub import_file_revision {
551 my %commit = %{$commit};
552 my $full_import = shift;
555 my $title = $commit{title};
556 my $comment = $commit{comment};
557 my $content = $commit{content};
558 my $author = $commit{author};
559 my $date = $commit{date};
561 print STDOUT "commit refs/mediawiki/$remotename/master\n";
562 print STDOUT "mark :$n\n";
563 print STDOUT "committer $author <$author\@$wiki_name> ", $date->epoch, " +0000\n";
564 literal_data($comment);
566 # If it's not a clone, we need to know where to start from
567 if (!$full_import && $n == 1) {
568 print STDOUT "from refs/mediawiki/$remotename/master^0\n";
570 if ($content ne DELETED_CONTENT) {
571 print STDOUT "M 644 inline $title.mw\n";
572 literal_data($content);
575 print STDOUT "D $title.mw\n";
578 # mediawiki revision number in the git note
579 if ($full_import && $n == 1) {
580 print STDOUT "reset refs/notes/$remotename/mediawiki\n";
582 print STDOUT "commit refs/notes/$remotename/mediawiki\n";
583 print STDOUT "committer $author <$author\@$wiki_name> ", $date->epoch, " +0000\n";
584 literal_data("Note added by git-mediawiki during import");
585 if (!$full_import && $n == 1) {
586 print STDOUT "from refs/notes/$remotename/mediawiki^0\n";
588 print STDOUT "N inline :$n\n";
589 literal_data("mediawiki_revision: " . $commit{mw_revision});
593 # parse a sequence of
597 # (like batch sequence of import and sequence of push statements)
603 if ($line =~ m/^$cmd (.*)$/) {
605 } elsif ($line eq "\n") {
608 die("Invalid command in a '$cmd' batch: ". $_);
614 # multiple import commands can follow each other.
615 my @refs = (shift, get_more_refs("import"));
616 foreach my $ref (@refs) {
619 print STDOUT "done\n";
624 # The remote helper will call "import HEAD" and
625 # "import refs/heads/master".
626 # Since HEAD is a symbolic ref to master (by convention,
627 # followed by the output of the command "list" that we gave),
628 # we don't need to do anything in this case.
629 if ($ref eq "HEAD") {
635 my @pages = get_mw_pages();
637 print STDERR "Searching revisions...\n";
638 my $last_local = get_last_local_revision();
639 my $fetch_from = $last_local + 1;
640 if ($fetch_from == 1) {
641 print STDERR ", fetching from beginning.\n";
643 print STDERR ", fetching from here.\n";
645 my ($n, @revisions) = fetch_mw_revisions(\@pages, $fetch_from);
647 # Creation of the fast-import stream
648 print STDERR "Fetching & writing export data...\n";
651 my $last_timestamp = 0; # Placeholer in case $rev->timestamp is undefined
653 foreach my $pagerevid (sort {$a->{revid} <=> $b->{revid}} @revisions) {
654 # fetch the content of the pages
658 rvprop => 'content|timestamp|comment|user|ids',
659 revids => $pagerevid->{revid},
662 my $result = $mediawiki->api($query);
664 my $rev = pop(@{$result->{query}->{pages}->{$pagerevid->{pageid}}->{revisions}});
669 $commit{author} = $rev->{user} || 'Anonymous';
670 $commit{comment} = $rev->{comment} || '*Empty MediaWiki Message*';
671 $commit{title} = mediawiki_smudge_filename(
672 $result->{query}->{pages}->{$pagerevid->{pageid}}->{title}
674 $commit{mw_revision} = $pagerevid->{revid};
675 $commit{content} = mediawiki_smudge($rev->{'*'});
677 if (!defined($rev->{timestamp})) {
680 $last_timestamp = $rev->{timestamp};
682 $commit{date} = DateTime::Format::ISO8601->parse_datetime($last_timestamp);
684 print STDERR "$n/", scalar(@revisions), ": Revision #$pagerevid->{revid} of $commit{title}\n";
686 import_file_revision(\%commit, ($fetch_from == 1), $n);
689 if ($fetch_from == 1 && $n == 0) {
690 print STDERR "You appear to have cloned an empty MediaWiki.\n";
691 # Something has to be done remote-helper side. If nothing is done, an error is
692 # thrown saying that HEAD is refering to unknown object 0000000000000000000
693 # and the clone fails.
697 sub error_non_fast_forward {
698 my $advice = run_git("config --bool advice.pushNonFastForward");
700 if ($advice ne "false") {
701 # Native git-push would show this after the summary.
702 # We can't ask it to display it cleanly, so print it
704 print STDERR "To prevent you from losing history, non-fast-forward updates were rejected\n";
705 print STDERR "Merge the remote changes (e.g. 'git pull') before pushing again. See the\n";
706 print STDERR "'Note about fast-forwards' section of 'git push --help' for details.\n";
708 print STDOUT "error $_[0] \"non-fast-forward\"\n";
713 my $complete_file_name = shift;
714 my $new_sha1 = shift;
715 my $extension = shift;
716 my $file_deleted = shift;
719 my $path = "File:" . $complete_file_name;
720 my %hashFiles = get_allowed_file_extensions();
721 if (!exists($hashFiles{$extension})) {
722 print STDERR "$complete_file_name is not a permitted file on this wiki.\n";
723 print STDERR "Check the configuration of file uploads in your mediawiki.\n";
726 # Deleting and uploading a file requires a priviledged user
734 if (!$mediawiki->edit($query)) {
735 print STDERR "Failed to delete file on remote wiki\n";
736 print STDERR "Check your permissions on the remote site. Error code:\n";
737 print STDERR $mediawiki->{error}->{code} . ':' . $mediawiki->{error}->{details};
741 # Don't let perl try to interpret file content as UTF-8 => use "raw"
742 my $content = run_git("cat-file blob $new_sha1", "raw");
743 if ($content ne "") {
745 $mediawiki->{config}->{upload_url} =
746 "$url/index.php/Special:Upload";
749 filename => $complete_file_name,
753 Content => $content],
757 } ) || die $mediawiki->{error}->{code} . ':'
758 . $mediawiki->{error}->{details};
759 my $last_file_page = $mediawiki->get_page({title => $path});
760 $newrevid = $last_file_page->{revid};
761 print STDERR "Pushed file: $new_sha1 - $complete_file_name.\n";
763 print STDERR "Empty file $complete_file_name not pushed.\n";
770 my $diff_info = shift;
771 # $diff_info contains a string in this format:
772 # 100644 100644 <sha1_of_blob_before_commit> <sha1_of_blob_now> <status>
773 my @diff_info_split = split(/[ \t]/, $diff_info);
775 # Filename, including .mw extension
776 my $complete_file_name = shift;
779 # MediaWiki revision number. Keep the previous one by default,
780 # in case there's no edit to perform.
781 my $oldrevid = shift;
784 my $new_sha1 = $diff_info_split[3];
785 my $old_sha1 = $diff_info_split[2];
786 my $page_created = ($old_sha1 eq NULL_SHA1);
787 my $page_deleted = ($new_sha1 eq NULL_SHA1);
788 $complete_file_name = mediawiki_clean_filename($complete_file_name);
790 my ($title, $extension) = $complete_file_name =~ /^(.*)\.([^\.]*)$/;
791 if (!defined($extension)) {
794 if ($extension eq "mw") {
797 # Deleting a page usually requires
798 # special priviledges. A common
799 # convention is to replace the page
800 # with this content instead:
801 $file_content = DELETED_CONTENT;
803 $file_content = run_git("cat-file blob $new_sha1");
808 my $result = $mediawiki->edit( {
812 basetimestamp => $basetimestamps{$oldrevid},
813 text => mediawiki_clean($file_content, $page_created),
815 skip_encoding => 1 # Helps with names with accentuated characters
818 if ($mediawiki->{error}->{code} == 3) {
819 # edit conflicts, considered as non-fast-forward
820 print STDERR 'Warning: Error ' .
821 $mediawiki->{error}->{code} .
822 ' from mediwiki: ' . $mediawiki->{error}->{details} .
824 return ($oldrevid, "non-fast-forward");
826 # Other errors. Shouldn't happen => just die()
827 die 'Fatal: Error ' .
828 $mediawiki->{error}->{code} .
829 ' from mediwiki: ' . $mediawiki->{error}->{details};
832 $newrevid = $result->{edit}->{newrevid};
833 print STDERR "Pushed file: $new_sha1 - $title\n";
835 $newrevid = mw_upload_file($complete_file_name, $new_sha1,
836 $extension, $page_deleted,
839 $newrevid = ($newrevid or $oldrevid);
840 return ($newrevid, "ok");
844 # multiple push statements can follow each other
845 my @refsspecs = (shift, get_more_refs("push"));
847 for my $refspec (@refsspecs) {
848 my ($force, $local, $remote) = $refspec =~ /^(\+)?([^:]*):([^:]*)$/
849 or die("Invalid refspec for push. Expected <src>:<dst> or +<src>:<dst>");
851 print STDERR "Warning: forced push not allowed on a MediaWiki.\n";
854 print STDERR "Cannot delete remote branch on a MediaWiki\n";
855 print STDOUT "error $remote cannot delete\n";
858 if ($remote ne "refs/heads/master") {
859 print STDERR "Only push to the branch 'master' is supported on a MediaWiki\n";
860 print STDOUT "error $remote only master allowed\n";
863 if (mw_push_revision($local, $remote)) {
868 # Notify Git that the push is done
871 if ($pushed && $dumb_push) {
872 print STDERR "Just pushed some revisions to MediaWiki.\n";
873 print STDERR "The pushed revisions now have to be re-imported, and your current branch\n";
874 print STDERR "needs to be updated with these re-imported commits. You can do this with\n";
876 print STDERR " git pull --rebase\n";
881 sub mw_push_revision {
883 my $remote = shift; # actually, this has to be "refs/heads/master" at this point.
884 my $last_local_revid = get_last_local_revision();
885 print STDERR ".\n"; # Finish sentence started by get_last_local_revision()
886 my $last_remote_revid = get_last_remote_revision();
887 my $mw_revision = $last_remote_revid;
889 # Get sha1 of commit pointed by local HEAD
890 my $HEAD_sha1 = run_git("rev-parse $local 2>/dev/null"); chomp($HEAD_sha1);
891 # Get sha1 of commit pointed by remotes/$remotename/master
892 my $remoteorigin_sha1 = run_git("rev-parse refs/remotes/$remotename/master 2>/dev/null");
893 chomp($remoteorigin_sha1);
895 if ($last_local_revid > 0 &&
896 $last_local_revid < $last_remote_revid) {
897 return error_non_fast_forward($remote);
900 if ($HEAD_sha1 eq $remoteorigin_sha1) {
905 # Get every commit in between HEAD and refs/remotes/origin/master,
906 # including HEAD and refs/remotes/origin/master
907 my @commit_pairs = ();
908 if ($last_local_revid > 0) {
909 my $parsed_sha1 = $remoteorigin_sha1;
910 # Find a path from last MediaWiki commit to pushed commit
911 while ($parsed_sha1 ne $HEAD_sha1) {
912 my @commit_info = grep(/^$parsed_sha1/, split(/\n/, run_git("rev-list --children $local")));
914 return error_non_fast_forward($remote);
916 my @commit_info_split = split(/ |\n/, $commit_info[0]);
917 # $commit_info_split[1] is the sha1 of the commit to export
918 # $commit_info_split[0] is the sha1 of its direct child
919 push(@commit_pairs, \@commit_info_split);
920 $parsed_sha1 = $commit_info_split[1];
923 # No remote mediawiki revision. Export the whole
924 # history (linearized with --first-parent)
925 print STDERR "Warning: no common ancestor, pushing complete history\n";
926 my $history = run_git("rev-list --first-parent --children $local");
927 my @history = split('\n', $history);
928 @history = @history[1..$#history];
929 foreach my $line (reverse @history) {
930 my @commit_info_split = split(/ |\n/, $line);
931 push(@commit_pairs, \@commit_info_split);
935 foreach my $commit_info_split (@commit_pairs) {
936 my $sha1_child = @{$commit_info_split}[0];
937 my $sha1_commit = @{$commit_info_split}[1];
938 my $diff_infos = run_git("diff-tree -r --raw -z $sha1_child $sha1_commit");
939 # TODO: we could detect rename, and encode them with a #redirect on the wiki.
940 # TODO: for now, it's just a delete+add
941 my @diff_info_list = split(/\0/, $diff_infos);
942 # Keep the subject line of the commit message as mediawiki comment for the revision
943 my $commit_msg = run_git("log --no-walk --format=\"%s\" $sha1_commit");
946 while (@diff_info_list) {
948 # git diff-tree -z gives an output like
949 # <metadata>\0<filename1>\0
950 # <metadata>\0<filename2>\0
951 # and we've split on \0.
952 my $info = shift(@diff_info_list);
953 my $file = shift(@diff_info_list);
954 ($mw_revision, $status) = mw_push_file($info, $file, $commit_msg, $mw_revision);
955 if ($status eq "non-fast-forward") {
956 # we may already have sent part of the
957 # commit to MediaWiki, but it's too
958 # late to cancel it. Stop the push in
959 # the middle, but still give an
960 # accurate error message.
961 return error_non_fast_forward($remote);
963 if ($status ne "ok") {
964 die("Unknown error from mw_push_file()");
967 unless ($dumb_push) {
968 run_git("notes --ref=$remotename/mediawiki add -m \"mediawiki_revision: $mw_revision\" $sha1_commit");
969 run_git("update-ref -m \"Git-MediaWiki push\" refs/mediawiki/$remotename/master $sha1_commit $sha1_child");
973 print STDOUT "ok $remote\n";
977 sub get_allowed_file_extensions {
983 siprop => 'fileextensions'
985 my $result = $mediawiki->api($query);
986 my @file_extensions= map $_->{ext},@{$result->{query}->{fileextensions}};
987 my %hashFile = map {$_ => 1}@file_extensions;