contrib / mw-to-git / git-remote-mediawikion commit mw-to-git: use git-credential's URL parser (77eab05)
   1#! /usr/bin/perl
   2
   3# Copyright (C) 2011
   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
  10
  11# Gateway between Git and MediaWiki.
  12#   https://github.com/Bibzball/Git-Mediawiki/wiki
  13#
  14# Known limitations:
  15#
  16# - Several strategies are provided to fetch modifications from the
  17#   wiki, but no automatic heuristics is provided, the user has
  18#   to understand and chose which strategy is appropriate for him.
  19#
  20# - Git renames could be turned into MediaWiki renames (see TODO
  21#   below)
  22#
  23# - No way to import "one page, and all pages included in it"
  24#
  25# - Multiple remote MediaWikis have not been very well tested.
  26
  27use strict;
  28use MediaWiki::API;
  29use DateTime::Format::ISO8601;
  30
  31# By default, use UTF-8 to communicate with Git and the user
  32binmode STDERR, ":utf8";
  33binmode STDOUT, ":utf8";
  34
  35use URI::Escape;
  36use IPC::Open2;
  37
  38use warnings;
  39
  40# Mediawiki filenames can contain forward slashes. This variable decides by which pattern they should be replaced
  41use constant SLASH_REPLACEMENT => "%2F";
  42
  43# It's not always possible to delete pages (may require some
  44# priviledges). Deleted pages are replaced with this content.
  45use constant DELETED_CONTENT => "[[Category:Deleted]]\n";
  46
  47# It's not possible to create empty pages. New empty files in Git are
  48# sent with this content instead.
  49use constant EMPTY_CONTENT => "<!-- empty page -->\n";
  50
  51# used to reflect file creation or deletion in diff.
  52use constant NULL_SHA1 => "0000000000000000000000000000000000000000";
  53
  54my $remotename = $ARGV[0];
  55my $url = $ARGV[1];
  56
  57# Accept both space-separated and multiple keys in config file.
  58# Spaces should be written as _ anyway because we'll use chomp.
  59my @tracked_pages = split(/[ \n]/, run_git("config --get-all remote.". $remotename .".pages"));
  60chomp(@tracked_pages);
  61
  62# Just like @tracked_pages, but for MediaWiki categories.
  63my @tracked_categories = split(/[ \n]/, run_git("config --get-all remote.". $remotename .".categories"));
  64chomp(@tracked_categories);
  65
  66# Import media files too.
  67my $import_media = run_git("config --get --bool remote.". $remotename .".mediaimport");
  68chomp($import_media);
  69$import_media = ($import_media eq "true");
  70
  71my $wiki_login = run_git("config --get remote.". $remotename .".mwLogin");
  72# Note: mwPassword is discourraged. Use the credential system instead.
  73my $wiki_passwd = run_git("config --get remote.". $remotename .".mwPassword");
  74my $wiki_domain = run_git("config --get remote.". $remotename .".mwDomain");
  75chomp($wiki_login);
  76chomp($wiki_passwd);
  77chomp($wiki_domain);
  78
  79# Import only last revisions (both for clone and fetch)
  80my $shallow_import = run_git("config --get --bool remote.". $remotename .".shallow");
  81chomp($shallow_import);
  82$shallow_import = ($shallow_import eq "true");
  83
  84# Fetch (clone and pull) by revisions instead of by pages. This behavior
  85# is more efficient when we have a wiki with lots of pages and we fetch
  86# the revisions quite often so that they concern only few pages.
  87# Possible values:
  88# - by_rev: perform one query per new revision on the remote wiki
  89# - by_page: query each tracked page for new revision
  90my $fetch_strategy = run_git("config --get remote.$remotename.fetchStrategy");
  91unless ($fetch_strategy) {
  92        $fetch_strategy = run_git("config --get mediawiki.fetchStrategy");
  93}
  94chomp($fetch_strategy);
  95unless ($fetch_strategy) {
  96        $fetch_strategy = "by_page";
  97}
  98
  99# Dumb push: don't update notes and mediawiki ref to reflect the last push.
 100#
 101# Configurable with mediawiki.dumbPush, or per-remote with
 102# remote.<remotename>.dumbPush.
 103#
 104# This means the user will have to re-import the just-pushed
 105# revisions. On the other hand, this means that the Git revisions
 106# corresponding to MediaWiki revisions are all imported from the wiki,
 107# regardless of whether they were initially created in Git or from the
 108# web interface, hence all users will get the same history (i.e. if
 109# the push from Git to MediaWiki loses some information, everybody
 110# will get the history with information lost). If the import is
 111# deterministic, this means everybody gets the same sha1 for each
 112# MediaWiki revision.
 113my $dumb_push = run_git("config --get --bool remote.$remotename.dumbPush");
 114unless ($dumb_push) {
 115        $dumb_push = run_git("config --get --bool mediawiki.dumbPush");
 116}
 117chomp($dumb_push);
 118$dumb_push = ($dumb_push eq "true");
 119
 120my $wiki_name = $url;
 121$wiki_name =~ s/[^\/]*:\/\///;
 122# If URL is like http://user:password@example.com/, we clearly don't
 123# want the password in $wiki_name. While we're there, also remove user
 124# and '@' sign, to avoid author like MWUser@HTTPUser@host.com
 125$wiki_name =~ s/^.*@//;
 126
 127# Commands parser
 128my $entry;
 129my @cmd;
 130while (<STDIN>) {
 131        chomp;
 132        @cmd = split(/ /);
 133        if (defined($cmd[0])) {
 134                # Line not blank
 135                if ($cmd[0] eq "capabilities") {
 136                        die("Too many arguments for capabilities") unless (!defined($cmd[1]));
 137                        mw_capabilities();
 138                } elsif ($cmd[0] eq "list") {
 139                        die("Too many arguments for list") unless (!defined($cmd[2]));
 140                        mw_list($cmd[1]);
 141                } elsif ($cmd[0] eq "import") {
 142                        die("Invalid arguments for import") unless ($cmd[1] ne "" && !defined($cmd[2]));
 143                        mw_import($cmd[1]);
 144                } elsif ($cmd[0] eq "option") {
 145                        die("Too many arguments for option") unless ($cmd[1] ne "" && $cmd[2] ne "" && !defined($cmd[3]));
 146                        mw_option($cmd[1],$cmd[2]);
 147                } elsif ($cmd[0] eq "push") {
 148                        mw_push($cmd[1]);
 149                } else {
 150                        print STDERR "Unknown command. Aborting...\n";
 151                        last;
 152                }
 153        } else {
 154                # blank line: we should terminate
 155                last;
 156        }
 157
 158        BEGIN { $| = 1 } # flush STDOUT, to make sure the previous
 159                         # command is fully processed.
 160}
 161
 162########################## Functions ##############################
 163
 164## credential API management (generic functions)
 165
 166sub credential_read {
 167        my %credential;
 168        my $reader = shift;
 169        my $op = shift;
 170        while (<$reader>) {
 171                my ($key, $value) = /([^=]*)=(.*)/;
 172                if (not defined $key) {
 173                        die "ERROR receiving response from git credential $op:\n$_\n";
 174                }
 175                $credential{$key} = $value;
 176        }
 177        return %credential;
 178}
 179
 180sub credential_write {
 181        my $credential = shift;
 182        my $writer = shift;
 183        # url overwrites other fields, so it must come first
 184        print $writer "url=$credential->{url}\n" if exists $credential->{url};
 185        while (my ($key, $value) = each(%$credential) ) {
 186                if (length $value && $key ne 'url') {
 187                        print $writer "$key=$value\n";
 188                }
 189        }
 190}
 191
 192sub credential_run {
 193        my $op = shift;
 194        my $credential = shift;
 195        my $pid = open2(my $reader, my $writer, "git credential $op");
 196        credential_write($credential, $writer);
 197        print $writer "\n";
 198        close($writer);
 199
 200        if ($op eq "fill") {
 201                %$credential = credential_read($reader, $op);
 202        } else {
 203                if (<$reader>) {
 204                        die "ERROR while running git credential $op:\n$_";
 205                }
 206        }
 207        close($reader);
 208        waitpid($pid, 0);
 209        my $child_exit_status = $? >> 8;
 210        if ($child_exit_status != 0) {
 211                die "'git credential $op' failed with code $child_exit_status.";
 212        }
 213}
 214
 215# MediaWiki API instance, created lazily.
 216my $mediawiki;
 217
 218sub mw_connect_maybe {
 219        if ($mediawiki) {
 220                return;
 221        }
 222        $mediawiki = MediaWiki::API->new;
 223        $mediawiki->{config}->{api_url} = "$url/api.php";
 224        if ($wiki_login) {
 225                my %credential = (url => $url);
 226                $credential{username} = $wiki_login;
 227                $credential{password} = $wiki_passwd;
 228                credential_run("fill", \%credential);
 229                my $request = {lgname => $credential{username},
 230                               lgpassword => $credential{password},
 231                               lgdomain => $wiki_domain};
 232                if ($mediawiki->login($request)) {
 233                        credential_run("approve", \%credential);
 234                        print STDERR "Logged in mediawiki user \"$credential{username}\".\n";
 235                } else {
 236                        print STDERR "Failed to log in mediawiki user \"$credential{username}\" on $url\n";
 237                        print STDERR "  (error " .
 238                                $mediawiki->{error}->{code} . ': ' .
 239                                $mediawiki->{error}->{details} . ")\n";
 240                        credential_run("reject", \%credential);
 241                        exit 1;
 242                }
 243        }
 244}
 245
 246## Functions for listing pages on the remote wiki
 247sub get_mw_tracked_pages {
 248        my $pages = shift;
 249        get_mw_page_list(\@tracked_pages, $pages);
 250}
 251
 252sub get_mw_page_list {
 253        my $page_list = shift;
 254        my $pages = shift;
 255        my @some_pages = @$page_list;
 256        while (@some_pages) {
 257                my $last = 50;
 258                if ($#some_pages < $last) {
 259                        $last = $#some_pages;
 260                }
 261                my @slice = @some_pages[0..$last];
 262                get_mw_first_pages(\@slice, $pages);
 263                @some_pages = @some_pages[51..$#some_pages];
 264        }
 265}
 266
 267sub get_mw_tracked_categories {
 268        my $pages = shift;
 269        foreach my $category (@tracked_categories) {
 270                if (index($category, ':') < 0) {
 271                        # Mediawiki requires the Category
 272                        # prefix, but let's not force the user
 273                        # to specify it.
 274                        $category = "Category:" . $category;
 275                }
 276                my $mw_pages = $mediawiki->list( {
 277                        action => 'query',
 278                        list => 'categorymembers',
 279                        cmtitle => $category,
 280                        cmlimit => 'max' } )
 281                        || die $mediawiki->{error}->{code} . ': '
 282                                . $mediawiki->{error}->{details};
 283                foreach my $page (@{$mw_pages}) {
 284                        $pages->{$page->{title}} = $page;
 285                }
 286        }
 287}
 288
 289sub get_mw_all_pages {
 290        my $pages = shift;
 291        # No user-provided list, get the list of pages from the API.
 292        my $mw_pages = $mediawiki->list({
 293                action => 'query',
 294                list => 'allpages',
 295                aplimit => 'max'
 296        });
 297        if (!defined($mw_pages)) {
 298                print STDERR "fatal: could not get the list of wiki pages.\n";
 299                print STDERR "fatal: '$url' does not appear to be a mediawiki\n";
 300                print STDERR "fatal: make sure '$url/api.php' is a valid page.\n";
 301                exit 1;
 302        }
 303        foreach my $page (@{$mw_pages}) {
 304                $pages->{$page->{title}} = $page;
 305        }
 306}
 307
 308# queries the wiki for a set of pages. Meant to be used within a loop
 309# querying the wiki for slices of page list.
 310sub get_mw_first_pages {
 311        my $some_pages = shift;
 312        my @some_pages = @{$some_pages};
 313
 314        my $pages = shift;
 315
 316        # pattern 'page1|page2|...' required by the API
 317        my $titles = join('|', @some_pages);
 318
 319        my $mw_pages = $mediawiki->api({
 320                action => 'query',
 321                titles => $titles,
 322        });
 323        if (!defined($mw_pages)) {
 324                print STDERR "fatal: could not query the list of wiki pages.\n";
 325                print STDERR "fatal: '$url' does not appear to be a mediawiki\n";
 326                print STDERR "fatal: make sure '$url/api.php' is a valid page.\n";
 327                exit 1;
 328        }
 329        while (my ($id, $page) = each(%{$mw_pages->{query}->{pages}})) {
 330                if ($id < 0) {
 331                        print STDERR "Warning: page $page->{title} not found on wiki\n";
 332                } else {
 333                        $pages->{$page->{title}} = $page;
 334                }
 335        }
 336}
 337
 338# Get the list of pages to be fetched according to configuration.
 339sub get_mw_pages {
 340        mw_connect_maybe();
 341
 342        my %pages; # hash on page titles to avoid duplicates
 343        my $user_defined;
 344        if (@tracked_pages) {
 345                $user_defined = 1;
 346                # The user provided a list of pages titles, but we
 347                # still need to query the API to get the page IDs.
 348                get_mw_tracked_pages(\%pages);
 349        }
 350        if (@tracked_categories) {
 351                $user_defined = 1;
 352                get_mw_tracked_categories(\%pages);
 353        }
 354        if (!$user_defined) {
 355                get_mw_all_pages(\%pages);
 356        }
 357        if ($import_media) {
 358                print STDERR "Getting media files for selected pages...\n";
 359                if ($user_defined) {
 360                        get_linked_mediafiles(\%pages);
 361                } else {
 362                        get_all_mediafiles(\%pages);
 363                }
 364        }
 365        return %pages;
 366}
 367
 368# usage: $out = run_git("command args");
 369#        $out = run_git("command args", "raw"); # don't interpret output as UTF-8.
 370sub run_git {
 371        my $args = shift;
 372        my $encoding = (shift || "encoding(UTF-8)");
 373        open(my $git, "-|:$encoding", "git " . $args);
 374        my $res = do { local $/; <$git> };
 375        close($git);
 376
 377        return $res;
 378}
 379
 380
 381sub get_all_mediafiles {
 382        my $pages = shift;
 383        # Attach list of all pages for media files from the API,
 384        # they are in a different namespace, only one namespace
 385        # can be queried at the same moment
 386        my $mw_pages = $mediawiki->list({
 387                action => 'query',
 388                list => 'allpages',
 389                apnamespace => get_mw_namespace_id("File"),
 390                aplimit => 'max'
 391        });
 392        if (!defined($mw_pages)) {
 393                print STDERR "fatal: could not get the list of pages for media files.\n";
 394                print STDERR "fatal: '$url' does not appear to be a mediawiki\n";
 395                print STDERR "fatal: make sure '$url/api.php' is a valid page.\n";
 396                exit 1;
 397        }
 398        foreach my $page (@{$mw_pages}) {
 399                $pages->{$page->{title}} = $page;
 400        }
 401}
 402
 403sub get_linked_mediafiles {
 404        my $pages = shift;
 405        my @titles = map $_->{title}, values(%{$pages});
 406
 407        # The query is split in small batches because of the MW API limit of
 408        # the number of links to be returned (500 links max).
 409        my $batch = 10;
 410        while (@titles) {
 411                if ($#titles < $batch) {
 412                        $batch = $#titles;
 413                }
 414                my @slice = @titles[0..$batch];
 415
 416                # pattern 'page1|page2|...' required by the API
 417                my $mw_titles = join('|', @slice);
 418
 419                # Media files could be included or linked from
 420                # a page, get all related
 421                my $query = {
 422                        action => 'query',
 423                        prop => 'links|images',
 424                        titles => $mw_titles,
 425                        plnamespace => get_mw_namespace_id("File"),
 426                        pllimit => 'max'
 427                };
 428                my $result = $mediawiki->api($query);
 429
 430                while (my ($id, $page) = each(%{$result->{query}->{pages}})) {
 431                        my @media_titles;
 432                        if (defined($page->{links})) {
 433                                my @link_titles = map $_->{title}, @{$page->{links}};
 434                                push(@media_titles, @link_titles);
 435                        }
 436                        if (defined($page->{images})) {
 437                                my @image_titles = map $_->{title}, @{$page->{images}};
 438                                push(@media_titles, @image_titles);
 439                        }
 440                        if (@media_titles) {
 441                                get_mw_page_list(\@media_titles, $pages);
 442                        }
 443                }
 444
 445                @titles = @titles[($batch+1)..$#titles];
 446        }
 447}
 448
 449sub get_mw_mediafile_for_page_revision {
 450        # Name of the file on Wiki, with the prefix.
 451        my $filename = shift;
 452        my $timestamp = shift;
 453        my %mediafile;
 454
 455        # Search if on a media file with given timestamp exists on
 456        # MediaWiki. In that case download the file.
 457        my $query = {
 458                action => 'query',
 459                prop => 'imageinfo',
 460                titles => "File:" . $filename,
 461                iistart => $timestamp,
 462                iiend => $timestamp,
 463                iiprop => 'timestamp|archivename|url',
 464                iilimit => 1
 465        };
 466        my $result = $mediawiki->api($query);
 467
 468        my ($fileid, $file) = each( %{$result->{query}->{pages}} );
 469        # If not defined it means there is no revision of the file for
 470        # given timestamp.
 471        if (defined($file->{imageinfo})) {
 472                $mediafile{title} = $filename;
 473
 474                my $fileinfo = pop(@{$file->{imageinfo}});
 475                $mediafile{timestamp} = $fileinfo->{timestamp};
 476                # Mediawiki::API's download function doesn't support https URLs
 477                # and can't download old versions of files.
 478                print STDERR "\tDownloading file $mediafile{title}, version $mediafile{timestamp}\n";
 479                $mediafile{content} = download_mw_mediafile($fileinfo->{url});
 480        }
 481        return %mediafile;
 482}
 483
 484sub download_mw_mediafile {
 485        my $url = shift;
 486
 487        my $response = $mediawiki->{ua}->get($url);
 488        if ($response->code == 200) {
 489                return $response->decoded_content;
 490        } else {
 491                print STDERR "Error downloading mediafile from :\n";
 492                print STDERR "URL: $url\n";
 493                print STDERR "Server response: " . $response->code . " " . $response->message . "\n";
 494                exit 1;
 495        }
 496}
 497
 498sub get_last_local_revision {
 499        # Get note regarding last mediawiki revision
 500        my $note = run_git("notes --ref=$remotename/mediawiki show refs/mediawiki/$remotename/master 2>/dev/null");
 501        my @note_info = split(/ /, $note);
 502
 503        my $lastrevision_number;
 504        if (!(defined($note_info[0]) && $note_info[0] eq "mediawiki_revision:")) {
 505                print STDERR "No previous mediawiki revision found";
 506                $lastrevision_number = 0;
 507        } else {
 508                # Notes are formatted : mediawiki_revision: #number
 509                $lastrevision_number = $note_info[1];
 510                chomp($lastrevision_number);
 511                print STDERR "Last local mediawiki revision found is $lastrevision_number";
 512        }
 513        return $lastrevision_number;
 514}
 515
 516# Remember the timestamp corresponding to a revision id.
 517my %basetimestamps;
 518
 519# Get the last remote revision without taking in account which pages are
 520# tracked or not. This function makes a single request to the wiki thus
 521# avoid a loop onto all tracked pages. This is useful for the fetch-by-rev
 522# option.
 523sub get_last_global_remote_rev {
 524        mw_connect_maybe();
 525
 526        my $query = {
 527                action => 'query',
 528                list => 'recentchanges',
 529                prop => 'revisions',
 530                rclimit => '1',
 531                rcdir => 'older',
 532        };
 533        my $result = $mediawiki->api($query);
 534        return $result->{query}->{recentchanges}[0]->{revid};
 535}
 536
 537# Get the last remote revision concerning the tracked pages and the tracked
 538# categories.
 539sub get_last_remote_revision {
 540        mw_connect_maybe();
 541
 542        my %pages_hash = get_mw_pages();
 543        my @pages = values(%pages_hash);
 544
 545        my $max_rev_num = 0;
 546
 547        foreach my $page (@pages) {
 548                my $id = $page->{pageid};
 549
 550                my $query = {
 551                        action => 'query',
 552                        prop => 'revisions',
 553                        rvprop => 'ids|timestamp',
 554                        pageids => $id,
 555                };
 556
 557                my $result = $mediawiki->api($query);
 558
 559                my $lastrev = pop(@{$result->{query}->{pages}->{$id}->{revisions}});
 560
 561                $basetimestamps{$lastrev->{revid}} = $lastrev->{timestamp};
 562
 563                $max_rev_num = ($lastrev->{revid} > $max_rev_num ? $lastrev->{revid} : $max_rev_num);
 564        }
 565
 566        print STDERR "Last remote revision found is $max_rev_num.\n";
 567        return $max_rev_num;
 568}
 569
 570# Clean content before sending it to MediaWiki
 571sub mediawiki_clean {
 572        my $string = shift;
 573        my $page_created = shift;
 574        # Mediawiki does not allow blank space at the end of a page and ends with a single \n.
 575        # This function right trims a string and adds a \n at the end to follow this rule
 576        $string =~ s/\s+$//;
 577        if ($string eq "" && $page_created) {
 578                # Creating empty pages is forbidden.
 579                $string = EMPTY_CONTENT;
 580        }
 581        return $string."\n";
 582}
 583
 584# Filter applied on MediaWiki data before adding them to Git
 585sub mediawiki_smudge {
 586        my $string = shift;
 587        if ($string eq EMPTY_CONTENT) {
 588                $string = "";
 589        }
 590        # This \n is important. This is due to mediawiki's way to handle end of files.
 591        return $string."\n";
 592}
 593
 594sub mediawiki_clean_filename {
 595        my $filename = shift;
 596        $filename =~ s/@{[SLASH_REPLACEMENT]}/\//g;
 597        # [, ], |, {, and } are forbidden by MediaWiki, even URL-encoded.
 598        # Do a variant of URL-encoding, i.e. looks like URL-encoding,
 599        # but with _ added to prevent MediaWiki from thinking this is
 600        # an actual special character.
 601        $filename =~ s/[\[\]\{\}\|]/sprintf("_%%_%x", ord($&))/ge;
 602        # If we use the uri escape before
 603        # we should unescape here, before anything
 604
 605        return $filename;
 606}
 607
 608sub mediawiki_smudge_filename {
 609        my $filename = shift;
 610        $filename =~ s/\//@{[SLASH_REPLACEMENT]}/g;
 611        $filename =~ s/ /_/g;
 612        # Decode forbidden characters encoded in mediawiki_clean_filename
 613        $filename =~ s/_%_([0-9a-fA-F][0-9a-fA-F])/sprintf("%c", hex($1))/ge;
 614        return $filename;
 615}
 616
 617sub literal_data {
 618        my ($content) = @_;
 619        print STDOUT "data ", bytes::length($content), "\n", $content;
 620}
 621
 622sub literal_data_raw {
 623        # Output possibly binary content.
 624        my ($content) = @_;
 625        # Avoid confusion between size in bytes and in characters
 626        utf8::downgrade($content);
 627        binmode STDOUT, ":raw";
 628        print STDOUT "data ", bytes::length($content), "\n", $content;
 629        binmode STDOUT, ":utf8";
 630}
 631
 632sub mw_capabilities {
 633        # Revisions are imported to the private namespace
 634        # refs/mediawiki/$remotename/ by the helper and fetched into
 635        # refs/remotes/$remotename later by fetch.
 636        print STDOUT "refspec refs/heads/*:refs/mediawiki/$remotename/*\n";
 637        print STDOUT "import\n";
 638        print STDOUT "list\n";
 639        print STDOUT "push\n";
 640        print STDOUT "\n";
 641}
 642
 643sub mw_list {
 644        # MediaWiki do not have branches, we consider one branch arbitrarily
 645        # called master, and HEAD pointing to it.
 646        print STDOUT "? refs/heads/master\n";
 647        print STDOUT "\@refs/heads/master HEAD\n";
 648        print STDOUT "\n";
 649}
 650
 651sub mw_option {
 652        print STDERR "remote-helper command 'option $_[0]' not yet implemented\n";
 653        print STDOUT "unsupported\n";
 654}
 655
 656sub fetch_mw_revisions_for_page {
 657        my $page = shift;
 658        my $id = shift;
 659        my $fetch_from = shift;
 660        my @page_revs = ();
 661        my $query = {
 662                action => 'query',
 663                prop => 'revisions',
 664                rvprop => 'ids',
 665                rvdir => 'newer',
 666                rvstartid => $fetch_from,
 667                rvlimit => 500,
 668                pageids => $id,
 669        };
 670
 671        my $revnum = 0;
 672        # Get 500 revisions at a time due to the mediawiki api limit
 673        while (1) {
 674                my $result = $mediawiki->api($query);
 675
 676                # Parse each of those 500 revisions
 677                foreach my $revision (@{$result->{query}->{pages}->{$id}->{revisions}}) {
 678                        my $page_rev_ids;
 679                        $page_rev_ids->{pageid} = $page->{pageid};
 680                        $page_rev_ids->{revid} = $revision->{revid};
 681                        push(@page_revs, $page_rev_ids);
 682                        $revnum++;
 683                }
 684                last unless $result->{'query-continue'};
 685                $query->{rvstartid} = $result->{'query-continue'}->{revisions}->{rvstartid};
 686        }
 687        if ($shallow_import && @page_revs) {
 688                print STDERR "  Found 1 revision (shallow import).\n";
 689                @page_revs = sort {$b->{revid} <=> $a->{revid}} (@page_revs);
 690                return $page_revs[0];
 691        }
 692        print STDERR "  Found ", $revnum, " revision(s).\n";
 693        return @page_revs;
 694}
 695
 696sub fetch_mw_revisions {
 697        my $pages = shift; my @pages = @{$pages};
 698        my $fetch_from = shift;
 699
 700        my @revisions = ();
 701        my $n = 1;
 702        foreach my $page (@pages) {
 703                my $id = $page->{pageid};
 704
 705                print STDERR "page $n/", scalar(@pages), ": ". $page->{title} ."\n";
 706                $n++;
 707                my @page_revs = fetch_mw_revisions_for_page($page, $id, $fetch_from);
 708                @revisions = (@page_revs, @revisions);
 709        }
 710
 711        return ($n, @revisions);
 712}
 713
 714sub import_file_revision {
 715        my $commit = shift;
 716        my %commit = %{$commit};
 717        my $full_import = shift;
 718        my $n = shift;
 719        my $mediafile = shift;
 720        my %mediafile;
 721        if ($mediafile) {
 722                %mediafile = %{$mediafile};
 723        }
 724
 725        my $title = $commit{title};
 726        my $comment = $commit{comment};
 727        my $content = $commit{content};
 728        my $author = $commit{author};
 729        my $date = $commit{date};
 730
 731        print STDOUT "commit refs/mediawiki/$remotename/master\n";
 732        print STDOUT "mark :$n\n";
 733        print STDOUT "committer $author <$author\@$wiki_name> ", $date->epoch, " +0000\n";
 734        literal_data($comment);
 735
 736        # If it's not a clone, we need to know where to start from
 737        if (!$full_import && $n == 1) {
 738                print STDOUT "from refs/mediawiki/$remotename/master^0\n";
 739        }
 740        if ($content ne DELETED_CONTENT) {
 741                print STDOUT "M 644 inline $title.mw\n";
 742                literal_data($content);
 743                if (%mediafile) {
 744                        print STDOUT "M 644 inline $mediafile{title}\n";
 745                        literal_data_raw($mediafile{content});
 746                }
 747                print STDOUT "\n\n";
 748        } else {
 749                print STDOUT "D $title.mw\n";
 750        }
 751
 752        # mediawiki revision number in the git note
 753        if ($full_import && $n == 1) {
 754                print STDOUT "reset refs/notes/$remotename/mediawiki\n";
 755        }
 756        print STDOUT "commit refs/notes/$remotename/mediawiki\n";
 757        print STDOUT "committer $author <$author\@$wiki_name> ", $date->epoch, " +0000\n";
 758        literal_data("Note added by git-mediawiki during import");
 759        if (!$full_import && $n == 1) {
 760                print STDOUT "from refs/notes/$remotename/mediawiki^0\n";
 761        }
 762        print STDOUT "N inline :$n\n";
 763        literal_data("mediawiki_revision: " . $commit{mw_revision});
 764        print STDOUT "\n\n";
 765}
 766
 767# parse a sequence of
 768# <cmd> <arg1>
 769# <cmd> <arg2>
 770# \n
 771# (like batch sequence of import and sequence of push statements)
 772sub get_more_refs {
 773        my $cmd = shift;
 774        my @refs;
 775        while (1) {
 776                my $line = <STDIN>;
 777                if ($line =~ m/^$cmd (.*)$/) {
 778                        push(@refs, $1);
 779                } elsif ($line eq "\n") {
 780                        return @refs;
 781                } else {
 782                        die("Invalid command in a '$cmd' batch: ". $_);
 783                }
 784        }
 785}
 786
 787sub mw_import {
 788        # multiple import commands can follow each other.
 789        my @refs = (shift, get_more_refs("import"));
 790        foreach my $ref (@refs) {
 791                mw_import_ref($ref);
 792        }
 793        print STDOUT "done\n";
 794}
 795
 796sub mw_import_ref {
 797        my $ref = shift;
 798        # The remote helper will call "import HEAD" and
 799        # "import refs/heads/master".
 800        # Since HEAD is a symbolic ref to master (by convention,
 801        # followed by the output of the command "list" that we gave),
 802        # we don't need to do anything in this case.
 803        if ($ref eq "HEAD") {
 804                return;
 805        }
 806
 807        mw_connect_maybe();
 808
 809        print STDERR "Searching revisions...\n";
 810        my $last_local = get_last_local_revision();
 811        my $fetch_from = $last_local + 1;
 812        if ($fetch_from == 1) {
 813                print STDERR ", fetching from beginning.\n";
 814        } else {
 815                print STDERR ", fetching from here.\n";
 816        }
 817
 818        my $n = 0;
 819        if ($fetch_strategy eq "by_rev") {
 820                print STDERR "Fetching & writing export data by revs...\n";
 821                $n = mw_import_ref_by_revs($fetch_from);
 822        } elsif ($fetch_strategy eq "by_page") {
 823                print STDERR "Fetching & writing export data by pages...\n";
 824                $n = mw_import_ref_by_pages($fetch_from);
 825        } else {
 826                print STDERR "fatal: invalid fetch strategy \"$fetch_strategy\".\n";
 827                print STDERR "Check your configuration variables remote.$remotename.fetchStrategy and mediawiki.fetchStrategy\n";
 828                exit 1;
 829        }
 830
 831        if ($fetch_from == 1 && $n == 0) {
 832                print STDERR "You appear to have cloned an empty MediaWiki.\n";
 833                # Something has to be done remote-helper side. If nothing is done, an error is
 834                # thrown saying that HEAD is refering to unknown object 0000000000000000000
 835                # and the clone fails.
 836        }
 837}
 838
 839sub mw_import_ref_by_pages {
 840
 841        my $fetch_from = shift;
 842        my %pages_hash = get_mw_pages();
 843        my @pages = values(%pages_hash);
 844
 845        my ($n, @revisions) = fetch_mw_revisions(\@pages, $fetch_from);
 846
 847        @revisions = sort {$a->{revid} <=> $b->{revid}} @revisions;
 848        my @revision_ids = map $_->{revid}, @revisions;
 849
 850        return mw_import_revids($fetch_from, \@revision_ids, \%pages_hash);
 851}
 852
 853sub mw_import_ref_by_revs {
 854
 855        my $fetch_from = shift;
 856        my %pages_hash = get_mw_pages();
 857
 858        my $last_remote = get_last_global_remote_rev();
 859        my @revision_ids = $fetch_from..$last_remote;
 860        return mw_import_revids($fetch_from, \@revision_ids, \%pages_hash);
 861}
 862
 863# Import revisions given in second argument (array of integers).
 864# Only pages appearing in the third argument (hash indexed by page titles)
 865# will be imported.
 866sub mw_import_revids {
 867        my $fetch_from = shift;
 868        my $revision_ids = shift;
 869        my $pages = shift;
 870
 871        my $n = 0;
 872        my $n_actual = 0;
 873        my $last_timestamp = 0; # Placeholer in case $rev->timestamp is undefined
 874
 875        foreach my $pagerevid (@$revision_ids) {
 876                # fetch the content of the pages
 877                my $query = {
 878                        action => 'query',
 879                        prop => 'revisions',
 880                        rvprop => 'content|timestamp|comment|user|ids',
 881                        revids => $pagerevid,
 882                };
 883
 884                my $result = $mediawiki->api($query);
 885
 886                if (!$result) {
 887                        die "Failed to retrieve modified page for revision $pagerevid";
 888                }
 889
 890                if (!defined($result->{query}->{pages})) {
 891                        die "Invalid revision $pagerevid.";
 892                }
 893
 894                my @result_pages = values(%{$result->{query}->{pages}});
 895                my $result_page = $result_pages[0];
 896                my $rev = $result_pages[0]->{revisions}->[0];
 897
 898                # Count page even if we skip it, since we display
 899                # $n/$total and $total includes skipped pages.
 900                $n++;
 901
 902                my $page_title = $result_page->{title};
 903
 904                if (!exists($pages->{$page_title})) {
 905                        print STDERR "$n/", scalar(@$revision_ids),
 906                                ": Skipping revision #$rev->{revid} of $page_title\n";
 907                        next;
 908                }
 909
 910                $n_actual++;
 911
 912                my %commit;
 913                $commit{author} = $rev->{user} || 'Anonymous';
 914                $commit{comment} = $rev->{comment} || '*Empty MediaWiki Message*';
 915                $commit{title} = mediawiki_smudge_filename($page_title);
 916                $commit{mw_revision} = $rev->{revid};
 917                $commit{content} = mediawiki_smudge($rev->{'*'});
 918
 919                if (!defined($rev->{timestamp})) {
 920                        $last_timestamp++;
 921                } else {
 922                        $last_timestamp = $rev->{timestamp};
 923                }
 924                $commit{date} = DateTime::Format::ISO8601->parse_datetime($last_timestamp);
 925
 926                # Differentiates classic pages and media files.
 927                my ($namespace, $filename) = $page_title =~ /^([^:]*):(.*)$/;
 928                my %mediafile;
 929                if ($namespace && get_mw_namespace_id($namespace) == get_mw_namespace_id("File")) {
 930                        %mediafile = get_mw_mediafile_for_page_revision($filename, $rev->{timestamp});
 931                }
 932                # If this is a revision of the media page for new version
 933                # of a file do one common commit for both file and media page.
 934                # Else do commit only for that page.
 935                print STDERR "$n/", scalar(@$revision_ids), ": Revision #$rev->{revid} of $commit{title}\n";
 936                import_file_revision(\%commit, ($fetch_from == 1), $n_actual, \%mediafile);
 937        }
 938
 939        return $n_actual;
 940}
 941
 942sub error_non_fast_forward {
 943        my $advice = run_git("config --bool advice.pushNonFastForward");
 944        chomp($advice);
 945        if ($advice ne "false") {
 946                # Native git-push would show this after the summary.
 947                # We can't ask it to display it cleanly, so print it
 948                # ourselves before.
 949                print STDERR "To prevent you from losing history, non-fast-forward updates were rejected\n";
 950                print STDERR "Merge the remote changes (e.g. 'git pull') before pushing again. See the\n";
 951                print STDERR "'Note about fast-forwards' section of 'git push --help' for details.\n";
 952        }
 953        print STDOUT "error $_[0] \"non-fast-forward\"\n";
 954        return 0;
 955}
 956
 957sub mw_upload_file {
 958        my $complete_file_name = shift;
 959        my $new_sha1 = shift;
 960        my $extension = shift;
 961        my $file_deleted = shift;
 962        my $summary = shift;
 963        my $newrevid;
 964        my $path = "File:" . $complete_file_name;
 965        my %hashFiles = get_allowed_file_extensions();
 966        if (!exists($hashFiles{$extension})) {
 967                print STDERR "$complete_file_name is not a permitted file on this wiki.\n";
 968                print STDERR "Check the configuration of file uploads in your mediawiki.\n";
 969                return $newrevid;
 970        }
 971        # Deleting and uploading a file requires a priviledged user
 972        if ($file_deleted) {
 973                mw_connect_maybe();
 974                my $query = {
 975                        action => 'delete',
 976                        title => $path,
 977                        reason => $summary
 978                };
 979                if (!$mediawiki->edit($query)) {
 980                        print STDERR "Failed to delete file on remote wiki\n";
 981                        print STDERR "Check your permissions on the remote site. Error code:\n";
 982                        print STDERR $mediawiki->{error}->{code} . ':' . $mediawiki->{error}->{details};
 983                        exit 1;
 984                }
 985        } else {
 986                # Don't let perl try to interpret file content as UTF-8 => use "raw"
 987                my $content = run_git("cat-file blob $new_sha1", "raw");
 988                if ($content ne "") {
 989                        mw_connect_maybe();
 990                        $mediawiki->{config}->{upload_url} =
 991                                "$url/index.php/Special:Upload";
 992                        $mediawiki->edit({
 993                                action => 'upload',
 994                                filename => $complete_file_name,
 995                                comment => $summary,
 996                                file => [undef,
 997                                         $complete_file_name,
 998                                         Content => $content],
 999                                ignorewarnings => 1,
1000                        }, {
1001                                skip_encoding => 1
1002                        } ) || die $mediawiki->{error}->{code} . ':'
1003                                 . $mediawiki->{error}->{details};
1004                        my $last_file_page = $mediawiki->get_page({title => $path});
1005                        $newrevid = $last_file_page->{revid};
1006                        print STDERR "Pushed file: $new_sha1 - $complete_file_name.\n";
1007                } else {
1008                        print STDERR "Empty file $complete_file_name not pushed.\n";
1009                }
1010        }
1011        return $newrevid;
1012}
1013
1014sub mw_push_file {
1015        my $diff_info = shift;
1016        # $diff_info contains a string in this format:
1017        # 100644 100644 <sha1_of_blob_before_commit> <sha1_of_blob_now> <status>
1018        my @diff_info_split = split(/[ \t]/, $diff_info);
1019
1020        # Filename, including .mw extension
1021        my $complete_file_name = shift;
1022        # Commit message
1023        my $summary = shift;
1024        # MediaWiki revision number. Keep the previous one by default,
1025        # in case there's no edit to perform.
1026        my $oldrevid = shift;
1027        my $newrevid;
1028
1029        my $new_sha1 = $diff_info_split[3];
1030        my $old_sha1 = $diff_info_split[2];
1031        my $page_created = ($old_sha1 eq NULL_SHA1);
1032        my $page_deleted = ($new_sha1 eq NULL_SHA1);
1033        $complete_file_name = mediawiki_clean_filename($complete_file_name);
1034
1035        my ($title, $extension) = $complete_file_name =~ /^(.*)\.([^\.]*)$/;
1036        if (!defined($extension)) {
1037                $extension = "";
1038        }
1039        if ($extension eq "mw") {
1040                my $file_content;
1041                if ($page_deleted) {
1042                        # Deleting a page usually requires
1043                        # special priviledges. A common
1044                        # convention is to replace the page
1045                        # with this content instead:
1046                        $file_content = DELETED_CONTENT;
1047                } else {
1048                        $file_content = run_git("cat-file blob $new_sha1");
1049                }
1050
1051                mw_connect_maybe();
1052
1053                my $result = $mediawiki->edit( {
1054                        action => 'edit',
1055                        summary => $summary,
1056                        title => $title,
1057                        basetimestamp => $basetimestamps{$oldrevid},
1058                        text => mediawiki_clean($file_content, $page_created),
1059                                  }, {
1060                                          skip_encoding => 1 # Helps with names with accentuated characters
1061                                  });
1062                if (!$result) {
1063                        if ($mediawiki->{error}->{code} == 3) {
1064                                # edit conflicts, considered as non-fast-forward
1065                                print STDERR 'Warning: Error ' .
1066                                    $mediawiki->{error}->{code} .
1067                                    ' from mediwiki: ' . $mediawiki->{error}->{details} .
1068                                    ".\n";
1069                                return ($oldrevid, "non-fast-forward");
1070                        } else {
1071                                # Other errors. Shouldn't happen => just die()
1072                                die 'Fatal: Error ' .
1073                                    $mediawiki->{error}->{code} .
1074                                    ' from mediwiki: ' . $mediawiki->{error}->{details};
1075                        }
1076                }
1077                $newrevid = $result->{edit}->{newrevid};
1078                print STDERR "Pushed file: $new_sha1 - $title\n";
1079        } else {
1080                $newrevid = mw_upload_file($complete_file_name, $new_sha1,
1081                                           $extension, $page_deleted,
1082                                           $summary);
1083        }
1084        $newrevid = ($newrevid or $oldrevid);
1085        return ($newrevid, "ok");
1086}
1087
1088sub mw_push {
1089        # multiple push statements can follow each other
1090        my @refsspecs = (shift, get_more_refs("push"));
1091        my $pushed;
1092        for my $refspec (@refsspecs) {
1093                my ($force, $local, $remote) = $refspec =~ /^(\+)?([^:]*):([^:]*)$/
1094                    or die("Invalid refspec for push. Expected <src>:<dst> or +<src>:<dst>");
1095                if ($force) {
1096                        print STDERR "Warning: forced push not allowed on a MediaWiki.\n";
1097                }
1098                if ($local eq "") {
1099                        print STDERR "Cannot delete remote branch on a MediaWiki\n";
1100                        print STDOUT "error $remote cannot delete\n";
1101                        next;
1102                }
1103                if ($remote ne "refs/heads/master") {
1104                        print STDERR "Only push to the branch 'master' is supported on a MediaWiki\n";
1105                        print STDOUT "error $remote only master allowed\n";
1106                        next;
1107                }
1108                if (mw_push_revision($local, $remote)) {
1109                        $pushed = 1;
1110                }
1111        }
1112
1113        # Notify Git that the push is done
1114        print STDOUT "\n";
1115
1116        if ($pushed && $dumb_push) {
1117                print STDERR "Just pushed some revisions to MediaWiki.\n";
1118                print STDERR "The pushed revisions now have to be re-imported, and your current branch\n";
1119                print STDERR "needs to be updated with these re-imported commits. You can do this with\n";
1120                print STDERR "\n";
1121                print STDERR "  git pull --rebase\n";
1122                print STDERR "\n";
1123        }
1124}
1125
1126sub mw_push_revision {
1127        my $local = shift;
1128        my $remote = shift; # actually, this has to be "refs/heads/master" at this point.
1129        my $last_local_revid = get_last_local_revision();
1130        print STDERR ".\n"; # Finish sentence started by get_last_local_revision()
1131        my $last_remote_revid = get_last_remote_revision();
1132        my $mw_revision = $last_remote_revid;
1133
1134        # Get sha1 of commit pointed by local HEAD
1135        my $HEAD_sha1 = run_git("rev-parse $local 2>/dev/null"); chomp($HEAD_sha1);
1136        # Get sha1 of commit pointed by remotes/$remotename/master
1137        my $remoteorigin_sha1 = run_git("rev-parse refs/remotes/$remotename/master 2>/dev/null");
1138        chomp($remoteorigin_sha1);
1139
1140        if ($last_local_revid > 0 &&
1141            $last_local_revid < $last_remote_revid) {
1142                return error_non_fast_forward($remote);
1143        }
1144
1145        if ($HEAD_sha1 eq $remoteorigin_sha1) {
1146                # nothing to push
1147                return 0;
1148        }
1149
1150        # Get every commit in between HEAD and refs/remotes/origin/master,
1151        # including HEAD and refs/remotes/origin/master
1152        my @commit_pairs = ();
1153        if ($last_local_revid > 0) {
1154                my $parsed_sha1 = $remoteorigin_sha1;
1155                # Find a path from last MediaWiki commit to pushed commit
1156                while ($parsed_sha1 ne $HEAD_sha1) {
1157                        my @commit_info =  grep(/^$parsed_sha1/, split(/\n/, run_git("rev-list --children $local")));
1158                        if (!@commit_info) {
1159                                return error_non_fast_forward($remote);
1160                        }
1161                        my @commit_info_split = split(/ |\n/, $commit_info[0]);
1162                        # $commit_info_split[1] is the sha1 of the commit to export
1163                        # $commit_info_split[0] is the sha1 of its direct child
1164                        push(@commit_pairs, \@commit_info_split);
1165                        $parsed_sha1 = $commit_info_split[1];
1166                }
1167        } else {
1168                # No remote mediawiki revision. Export the whole
1169                # history (linearized with --first-parent)
1170                print STDERR "Warning: no common ancestor, pushing complete history\n";
1171                my $history = run_git("rev-list --first-parent --children $local");
1172                my @history = split('\n', $history);
1173                @history = @history[1..$#history];
1174                foreach my $line (reverse @history) {
1175                        my @commit_info_split = split(/ |\n/, $line);
1176                        push(@commit_pairs, \@commit_info_split);
1177                }
1178        }
1179
1180        foreach my $commit_info_split (@commit_pairs) {
1181                my $sha1_child = @{$commit_info_split}[0];
1182                my $sha1_commit = @{$commit_info_split}[1];
1183                my $diff_infos = run_git("diff-tree -r --raw -z $sha1_child $sha1_commit");
1184                # TODO: we could detect rename, and encode them with a #redirect on the wiki.
1185                # TODO: for now, it's just a delete+add
1186                my @diff_info_list = split(/\0/, $diff_infos);
1187                # Keep the subject line of the commit message as mediawiki comment for the revision
1188                my $commit_msg = run_git("log --no-walk --format=\"%s\" $sha1_commit");
1189                chomp($commit_msg);
1190                # Push every blob
1191                while (@diff_info_list) {
1192                        my $status;
1193                        # git diff-tree -z gives an output like
1194                        # <metadata>\0<filename1>\0
1195                        # <metadata>\0<filename2>\0
1196                        # and we've split on \0.
1197                        my $info = shift(@diff_info_list);
1198                        my $file = shift(@diff_info_list);
1199                        ($mw_revision, $status) = mw_push_file($info, $file, $commit_msg, $mw_revision);
1200                        if ($status eq "non-fast-forward") {
1201                                # we may already have sent part of the
1202                                # commit to MediaWiki, but it's too
1203                                # late to cancel it. Stop the push in
1204                                # the middle, but still give an
1205                                # accurate error message.
1206                                return error_non_fast_forward($remote);
1207                        }
1208                        if ($status ne "ok") {
1209                                die("Unknown error from mw_push_file()");
1210                        }
1211                }
1212                unless ($dumb_push) {
1213                        run_git("notes --ref=$remotename/mediawiki add -m \"mediawiki_revision: $mw_revision\" $sha1_commit");
1214                        run_git("update-ref -m \"Git-MediaWiki push\" refs/mediawiki/$remotename/master $sha1_commit $sha1_child");
1215                }
1216        }
1217
1218        print STDOUT "ok $remote\n";
1219        return 1;
1220}
1221
1222sub get_allowed_file_extensions {
1223        mw_connect_maybe();
1224
1225        my $query = {
1226                action => 'query',
1227                meta => 'siteinfo',
1228                siprop => 'fileextensions'
1229                };
1230        my $result = $mediawiki->api($query);
1231        my @file_extensions= map $_->{ext},@{$result->{query}->{fileextensions}};
1232        my %hashFile = map {$_ => 1}@file_extensions;
1233
1234        return %hashFile;
1235}
1236
1237# In memory cache for MediaWiki namespace ids.
1238my %namespace_id;
1239
1240# Namespaces whose id is cached in the configuration file
1241# (to avoid duplicates)
1242my %cached_mw_namespace_id;
1243
1244# Return MediaWiki id for a canonical namespace name.
1245# Ex.: "File", "Project".
1246sub get_mw_namespace_id {
1247        mw_connect_maybe();
1248        my $name = shift;
1249
1250        if (!exists $namespace_id{$name}) {
1251                # Look at configuration file, if the record for that namespace is
1252                # already cached. Namespaces are stored in form:
1253                # "Name_of_namespace:Id_namespace", ex.: "File:6".
1254                my @temp = split(/[ \n]/, run_git("config --get-all remote."
1255                                                . $remotename .".namespaceCache"));
1256                chomp(@temp);
1257                foreach my $ns (@temp) {
1258                        my ($n, $id) = split(/:/, $ns);
1259                        $namespace_id{$n} = $id;
1260                        $cached_mw_namespace_id{$n} = 1;
1261                }
1262        }
1263
1264        if (!exists $namespace_id{$name}) {
1265                print STDERR "Namespace $name not found in cache, querying the wiki ...\n";
1266                # NS not found => get namespace id from MW and store it in
1267                # configuration file.
1268                my $query = {
1269                        action => 'query',
1270                        meta => 'siteinfo',
1271                        siprop => 'namespaces'
1272                };
1273                my $result = $mediawiki->api($query);
1274
1275                while (my ($id, $ns) = each(%{$result->{query}->{namespaces}})) {
1276                        if (defined($ns->{id}) && defined($ns->{canonical})) {
1277                                $namespace_id{$ns->{canonical}} = $ns->{id};
1278                                if ($ns->{'*'}) {
1279                                        # alias (e.g. french Fichier: as alias for canonical File:)
1280                                        $namespace_id{$ns->{'*'}} = $ns->{id};
1281                                }
1282                        }
1283                }
1284        }
1285
1286        my $id = $namespace_id{$name};
1287
1288        if (defined $id) {
1289                # Store explicitely requested namespaces on disk
1290                if (!exists $cached_mw_namespace_id{$name}) {
1291                        run_git("config --add remote.". $remotename
1292                                .".namespaceCache \"". $name .":". $id ."\"");
1293                        $cached_mw_namespace_id{$name} = 1;
1294                }
1295                return $id;
1296        } else {
1297                die "No such namespace $name on MediaWiki.";
1298        }
1299}