]> sipb.mit.edu Git - ikiwiki.git/blob - IkiWiki/Plugin/po.pm
a920618faf5fa49ca053b46f1d67c23320ef9443
[ikiwiki.git] / IkiWiki / Plugin / po.pm
1 #!/usr/bin/perl
2 # .po as a wiki page type
3 # Licensed under GPL v2 or greater
4 # Copyright (C) 2008-2009 intrigeri <intrigeri@boum.org>
5 # inspired by the GPL'd po4a-translate,
6 # which is Copyright 2002, 2003, 2004 by Martin Quinson (mquinson#debian.org)
7 package IkiWiki::Plugin::po;
8
9 use warnings;
10 use strict;
11 use IkiWiki 3.00;
12 use Encode;
13 use Locale::Po4a::Chooser;
14 use Locale::Po4a::Po;
15 use File::Basename;
16 use File::Copy;
17 use File::Spec;
18 use File::Temp;
19 use Memoize;
20 use UNIVERSAL;
21
22 my %translations;
23 my @origneedsbuild;
24 my %origsubs;
25
26 memoize("istranslatable");
27 memoize("_istranslation");
28 memoize("percenttranslated");
29
30 sub import {
31         hook(type => "getsetup", id => "po", call => \&getsetup);
32         hook(type => "checkconfig", id => "po", call => \&checkconfig);
33         hook(type => "needsbuild", id => "po", call => \&needsbuild);
34         hook(type => "scan", id => "po", call => \&scan, last =>1);
35         hook(type => "filter", id => "po", call => \&filter);
36         hook(type => "htmlize", id => "po", call => \&htmlize);
37         hook(type => "pagetemplate", id => "po", call => \&pagetemplate, last => 1);
38         hook(type => "postscan", id => "po", call => \&postscan);
39         hook(type => "rename", id => "po", call => \&renamepages, first => 1);
40         hook(type => "delete", id => "po", call => \&mydelete);
41         hook(type => "change", id => "po", call => \&change);
42         hook(type => "cansave", id => "po", call => \&cansave);
43         hook(type => "canremove", id => "po", call => \&canremove);
44         hook(type => "canrename", id => "po", call => \&canrename);
45         hook(type => "editcontent", id => "po", call => \&editcontent);
46         hook(type => "formbuilder_setup", id => "po", call => \&formbuilder_setup, last => 1);
47         hook(type => "formbuilder", id => "po", call => \&formbuilder);
48
49         $origsubs{'bestlink'}=\&IkiWiki::bestlink;
50         inject(name => "IkiWiki::bestlink", call => \&mybestlink);
51         $origsubs{'beautify_urlpath'}=\&IkiWiki::beautify_urlpath;
52         inject(name => "IkiWiki::beautify_urlpath", call => \&mybeautify_urlpath);
53         $origsubs{'targetpage'}=\&IkiWiki::targetpage;
54         inject(name => "IkiWiki::targetpage", call => \&mytargetpage);
55         $origsubs{'urlto'}=\&IkiWiki::urlto;
56         inject(name => "IkiWiki::urlto", call => \&myurlto);
57         $origsubs{'nicepagetitle'}=\&IkiWiki::nicepagetitle;
58         inject(name => "IkiWiki::nicepagetitle", call => \&mynicepagetitle);
59 }
60
61
62 # ,----
63 # | Table of contents
64 # `----
65
66 # 1. Hooks
67 # 2. Injected functions
68 # 3. Blackboxes for private data
69 # 4. Helper functions
70 # 5. PageSpec's
71
72
73 # ,----
74 # | Hooks
75 # `----
76
77 sub getsetup () {
78         return
79                 plugin => {
80                         safe => 0,
81                         rebuild => 1,
82                 },
83                 po_master_language => {
84                         type => "string",
85                         example => {
86                                 'code' => 'en',
87                                 'name' => 'English'
88                         },
89                         description => "master language (non-PO files)",
90                         safe => 1,
91                         rebuild => 1,
92                 },
93                 po_slave_languages => {
94                         type => "string",
95                         example => {
96                                 'fr' => 'Français',
97                                 'es' => 'Castellano',
98                                 'de' => 'Deutsch'
99                         },
100                         description => "slave languages (PO files)",
101                         safe => 1,
102                         rebuild => 1,
103                 },
104                 po_translatable_pages => {
105                         type => "pagespec",
106                         example => "!*/Discussion",
107                         description => "PageSpec controlling which pages are translatable",
108                         link => "ikiwiki/PageSpec",
109                         safe => 1,
110                         rebuild => 1,
111                 },
112                 po_link_to => {
113                         type => "string",
114                         example => "current",
115                         description => "internal linking behavior (default/current/negotiated)",
116                         safe => 1,
117                         rebuild => 1,
118                 },
119                 po_translation_status_in_links => {
120                         type => "boolean",
121                         example => 1,
122                         description => "display translation status in links to translations",
123                         safe => 1,
124                         rebuild => 1,
125                 },
126 }
127
128 sub checkconfig () {
129         foreach my $field (qw{po_master_language po_slave_languages}) {
130                 if (! exists $config{$field} || ! defined $config{$field}) {
131                         error(sprintf(gettext("Must specify %s when using the %s plugin"),
132                                       $field, 'po'));
133                 }
134         }
135         if (! (keys %{$config{po_slave_languages}})) {
136                 error(gettext("At least one slave language must be defined ".
137                               "in po_slave_languages when using the po plugin"));
138         }
139         map {
140                 islanguagecode($_)
141                         or error(sprintf(gettext("%s is not a valid language code"), $_));
142         } ($config{po_master_language}{code}, keys %{$config{po_slave_languages}});
143         if (! exists $config{po_translatable_pages} ||
144             ! defined $config{po_translatable_pages}) {
145                 $config{po_translatable_pages}="";
146         }
147         if (! exists $config{po_link_to} ||
148             ! defined $config{po_link_to}) {
149                 $config{po_link_to}='default';
150         }
151         elsif (! grep {
152                         $config{po_link_to} eq $_
153                 } ('default', 'current', 'negotiated')) {
154                 warn(sprintf(gettext('%s is not a valid value for po_link_to, falling back to po_link_to=default'),
155                              $config{po_link_to}));
156                 $config{po_link_to}='default';
157         }
158         elsif ($config{po_link_to} eq "negotiated" && ! $config{usedirs}) {
159                 warn(gettext('po_link_to=negotiated requires usedirs to be enabled, falling back to po_link_to=default'));
160                 $config{po_link_to}='default';
161         }
162         if (! exists $config{po_translation_status_in_links} ||
163             ! defined $config{po_translation_status_in_links}) {
164                 $config{po_translation_status_in_links}=1;
165         }
166         push @{$config{wiki_file_prune_regexps}}, qr/\.pot$/;
167 }
168
169 sub needsbuild () {
170         my $needsbuild=shift;
171
172         # backup @needsbuild content so that change() can know whether
173         # a given master page was rendered because its source file was changed
174         @origneedsbuild=(@$needsbuild);
175
176         flushmemoizecache();
177         buildtranslationscache();
178
179         # make existing translations depend on the corresponding master page
180         foreach my $master (keys %translations) {
181                 map add_depends($_, $master), values %{otherlanguages($master)};
182         }
183 }
184
185 # Massage the recorded state of internal links so that:
186 # - it matches the actually generated links, rather than the links as written
187 #   in the pages' source
188 # - backlinks are consistent in all cases
189 sub scan (@) {
190         my %params=@_;
191         my $page=$params{page};
192         my $content=$params{content};
193
194         return unless UNIVERSAL::can("IkiWiki::Plugin::link", "import");
195
196         if (istranslation($page)) {
197                 foreach my $destpage (@{$links{$page}}) {
198                         if (istranslatable($destpage)) {
199                                 # replace one occurence of $destpage in $links{$page}
200                                 # (we only want to replace the one that was added by
201                                 # IkiWiki::Plugin::link::scan, other occurences may be
202                                 # there for other reasons)
203                                 for (my $i=0; $i<@{$links{$page}}; $i++) {
204                                         if (@{$links{$page}}[$i] eq $destpage) {
205                                                 @{$links{$page}}[$i] = $destpage . '.' . lang($page);
206                                                 last;
207                                         }
208                                 }
209                         }
210                 }
211         }
212         elsif (! istranslatable($page) && ! istranslation($page)) {
213                 foreach my $destpage (@{$links{$page}}) {
214                         if (istranslatable($destpage)) {
215                                 # make sure any destpage's translations has
216                                 # $page in its backlinks
217                                 push @{$links{$page}},
218                                         values %{otherlanguages($destpage)};
219                         }
220                 }
221         }
222 }
223
224 # We use filter to convert PO to the master page's format,
225 # since the rest of ikiwiki should not work on PO files.
226 sub filter (@) {
227         my %params = @_;
228
229         my $page = $params{page};
230         my $destpage = $params{destpage};
231         my $content = $params{content};
232         if (istranslation($page) && ! alreadyfiltered($page, $destpage)) {
233                 $content = po_to_markup($page, $content);
234                 setalreadyfiltered($page, $destpage);
235         }
236         return $content;
237 }
238
239 sub htmlize (@) {
240         my %params=@_;
241
242         my $page = $params{page};
243         my $content = $params{content};
244
245         # ignore PO files this plugin did not create
246         return $content unless istranslation($page);
247
248         # force content to be htmlize'd as if it was the same type as the master page
249         return IkiWiki::htmlize($page, $page,
250                                 pagetype(srcfile($pagesources{masterpage($page)})),
251                                 $content);
252 }
253
254 sub pagetemplate (@) {
255         my %params=@_;
256         my $page=$params{page};
257         my $destpage=$params{destpage};
258         my $template=$params{template};
259
260         my ($masterpage, $lang) = istranslation($page);
261
262         if (istranslation($page) && $template->query(name => "percenttranslated")) {
263                 $template->param(percenttranslated => percenttranslated($page));
264         }
265         if ($template->query(name => "istranslation")) {
266                 $template->param(istranslation => scalar istranslation($page));
267         }
268         if ($template->query(name => "istranslatable")) {
269                 $template->param(istranslatable => istranslatable($page));
270         }
271         if ($template->query(name => "HOMEPAGEURL")) {
272                 $template->param(homepageurl => homepageurl($page));
273         }
274         if ($template->query(name => "otherlanguages")) {
275                 $template->param(otherlanguages => [otherlanguagesloop($page)]);
276                 map add_depends($page, $_), (values %{otherlanguages($page)});
277         }
278         # Rely on IkiWiki::Render's genpage() to decide wether
279         # a discussion link should appear on $page; this is not
280         # totally accurate, though: some broken links may be generated
281         # when cgiurl is disabled.
282         # This compromise avoids some code duplication, and will probably
283         # prevent future breakage when ikiwiki internals change.
284         # Known limitations are preferred to future random bugs.
285         if ($template->param('discussionlink') && istranslation($page)) {
286                 $template->param('discussionlink' => htmllink(
287                                                         $page,
288                                                         $destpage,
289                                                         $masterpage . '/' . gettext("Discussion"),
290                                                         noimageinline => 1,
291                                                         forcesubpage => 0,
292                                                         linktext => gettext("Discussion"),
293                                                         ));
294         }
295         # Remove broken parentlink to ./index.html on home page's translations.
296         # It works because this hook has the "last" parameter set, to ensure it
297         # runs after parentlinks' own pagetemplate hook.
298         if ($template->param('parentlinks')
299             && istranslation($page)
300             && $masterpage eq "index") {
301                 $template->param('parentlinks' => []);
302         }
303 } # }}}
304
305 sub postscan (@) {
306         my %params = @_;
307         my $page = $params{page};
308
309         # backlinks involve back-dependencies, so that nicepagetitle effects,
310         # such as translation status displayed in links, are updated
311         use IkiWiki::Render;
312         map add_depends($page, $_), keys %{$IkiWiki::backlinks{$page}};
313 }
314
315 # Add the renamed page translations to the list of to-be-renamed pages.
316 sub renamepages($$$) {
317         my ($torename, $cgi, $session) = (shift, shift, shift);
318
319         # copy the initial array, so that we can iterate on it AND
320         # modify it at the same time, without iterating on the items we
321         # pushed on it ourselves
322         my @torename=@{$torename};
323
324         # Save the page(s) the user asked to rename, so that our
325         # canrename hook can tell the difference between:
326         #  - a translation being renamed as a consequence of its master page
327         #    being renamed
328         #  - a user trying to directly rename a translation
329         # This is why this hook has to be run first, before @torename is modified
330         # by other plugins.
331         $session->param(po_orig_torename => [ @torename ]);
332         IkiWiki::cgi_savesession($session);
333
334         foreach my $rename (@torename) {
335                 next unless istranslatable($rename->{src});
336                 my %otherpages=%{otherlanguages($rename->{src})};
337                 while (my ($lang, $otherpage) = each %otherpages) {
338                         push @{$torename}, {
339                                 src => $otherpage,
340                                 srcfile => $pagesources{$otherpage},
341                                 dest => otherlanguage($rename->{dest}, $lang),
342                                 destfile => $rename->{dest}.".".$lang.".po",
343                                 required => 0,
344                         };
345                 }
346         }
347 }
348
349 sub mydelete(@) {
350         my @deleted=@_;
351
352         map { deletetranslations($_) } grep istranslatablefile($_), @deleted;
353 }
354
355 sub change(@) {
356         my @rendered=@_;
357
358         my $updated_po_files=0;
359
360         # Refresh/create POT and PO files as needed.
361         foreach my $file (grep {istranslatablefile($_)} @rendered) {
362                 my $page=pagename($file);
363                 my $masterfile=srcfile($file);
364                 my $updated_pot_file=0;
365                 # Only refresh Pot file if it does not exist, or if
366                 # $pagesources{$page} was changed: don't if only the HTML was
367                 # refreshed, e.g. because of a dependency.
368                 if ((grep { $_ eq $pagesources{$page} } @origneedsbuild)
369                     || ! -e potfile($masterfile)) {
370                         refreshpot($masterfile);
371                         $updated_pot_file=1;
372                 }
373                 my @pofiles;
374                 map {
375                         push @pofiles, $_ if ($updated_pot_file || ! -e $_);
376                 } (pofiles($masterfile));
377                 if (@pofiles) {
378                         refreshpofiles($masterfile, @pofiles);
379                         map { IkiWiki::rcs_add($_) } @pofiles if $config{rcs};
380                         $updated_po_files=1;
381                 }
382         }
383
384         if ($updated_po_files) {
385                 commit_and_refresh(
386                         gettext("updated PO files"),
387                         "IkiWiki::Plugin::po::change");
388         }
389 }
390
391 sub cansave ($$$$) {
392         my ($page, $content, $cgi, $session) = (shift, shift, shift, shift);
393
394         if (istranslation($page)) {
395                 my $res = isvalidpo($content);
396                 if ($res) {
397                         return undef;
398                 }
399                 else {
400                         return "$res";
401                 }
402         }
403         return undef;
404 }
405
406 sub canremove ($$$) {
407         my ($page, $cgi, $session) = (shift, shift, shift);
408
409         if (istranslation($page)) {
410                 return gettext("Can not remove a translation. Removing the master page, ".
411                                "though, removes its translations as well.");
412         }
413         return undef;
414 }
415
416 sub canrename ($$@) {
417         my ($cgi, $session) = (shift, shift);
418         my %params = @_;
419
420         if (istranslation($params{src})) {
421                 my $masterpage = masterpage($params{src});
422                 # Tell the difference between:
423                 #  - a translation being renamed as a consequence of its master page
424                 #    being renamed, which is allowed
425                 #  - a user trying to directly rename a translation, which is forbidden
426                 # by looking for the master page in the list of to-be-renamed pages we
427                 # saved early in the renaming process.
428                 my $orig_torename = $session->param("po_orig_torename");
429                 unless (scalar grep { $_->{src} eq $masterpage } @{$orig_torename}) {
430                         return gettext("Can not rename a translation. Renaming the master page, ".
431                                        "though, renames its translations as well.");
432                 }
433         }
434         return undef;
435 }
436
437 # As we're previewing or saving a page, the content may have
438 # changed, so tell the next filter() invocation it must not be lazy.
439 sub editcontent () {
440         my %params=@_;
441
442         unsetalreadyfiltered($params{page}, $params{page});
443         return $params{content};
444 }
445
446 sub formbuilder_setup (@) {
447         my %params=@_;
448         my $form=$params{form};
449         my $q=$params{cgi};
450
451         return unless defined $form->field("do");
452
453         if ($form->field("do") eq "create") {
454                 # Warn the user: new pages must be written in master language.
455                 my $template=template("pocreatepage.tmpl");
456                 $template->param(LANG => $config{po_master_language}{name});
457                 $form->tmpl_param(message => $template->output);
458         }
459         elsif ($form->field("do") eq "edit") {
460                 # Remove the rename/remove buttons on slave pages.
461                 # This has to be done after the rename/remove plugins have added
462                 # their buttons, which is why this hook must be run last.
463                 # The canrename/canremove hooks already ensure this is forbidden
464                 # at the backend level, so this is only UI sugar.
465                 if (istranslation($form->field("page"))) {
466                         map {
467                                 for (my $i = 0; $i < @{$params{buttons}}; $i++) {
468                                         if (@{$params{buttons}}[$i] eq $_) {
469                                                 delete  @{$params{buttons}}[$i];
470                                                 last;
471                                         }
472                                 }
473                         } qw(Rename Remove);
474                 }
475         }
476 }
477
478 # Do not allow to create pages of type po: they are automatically created.
479 # The main reason to do so is to bypass the "favor the type of linking page
480 # on page creation" logic, which is unsuitable when a broken link is clicked
481 # on a slave (PO) page.
482 sub formbuilder (@) {
483         my %params=@_;
484         my $form=$params{form};
485         my $q=$params{cgi};
486
487         return unless (defined $form->field("do") && $form->field("do") eq "create");
488
489         for my $field ($form->field) {
490                 next unless "$field" eq "type";
491                 if ($field->type eq 'select') {
492                         # remove po from the types list
493                         my @types = grep { $_ ne 'po' } $field->options;
494                         $field->options(\@types) if scalar @types;
495                 }
496                 else {
497                         # make sure the default value is not po;
498                         # does this case actually happen?
499                         debug "po(formbuilder) ".gettext("type field is not select - not implemented yet");
500                 }
501         }
502 }
503
504 # ,----
505 # | Injected functions
506 # `----
507
508 # Implement po_link_to 'current' and 'negotiated' settings.
509 sub mybestlink ($$) {
510         my $page=shift;
511         my $link=shift;
512
513         my $res=$origsubs{'bestlink'}->(masterpage($page), $link);
514         if (length $res
515             && ($config{po_link_to} eq "current" || $config{po_link_to} eq "negotiated")
516             && istranslatable($res)
517             && istranslation($page)) {
518                 return $res . "." . lang($page);
519         }
520         return $res;
521 }
522
523 sub mybeautify_urlpath ($) {
524         my $url=shift;
525
526         my $res=$origsubs{'beautify_urlpath'}->($url);
527         if ($config{po_link_to} eq "negotiated") {
528                 $res =~ s!/\Qindex.$config{po_master_language}{code}.$config{htmlext}\E$!/!;
529                 $res =~ s!/\Qindex.$config{htmlext}\E$!/!;
530                 map {
531                         $res =~ s!/\Qindex.$_.$config{htmlext}\E$!/!;
532                 } (keys %{$config{po_slave_languages}});
533         }
534         return $res;
535 }
536
537 sub mytargetpage ($$) {
538         my $page=shift;
539         my $ext=shift;
540
541         if (istranslation($page) || istranslatable($page)) {
542                 my ($masterpage, $lang) = (masterpage($page), lang($page));
543                 if (! $config{usedirs} || $masterpage eq 'index') {
544                         return $masterpage . "." . $lang . "." . $ext;
545                 }
546                 else {
547                         return $masterpage . "/index." . $lang . "." . $ext;
548                 }
549         }
550         return $origsubs{'targetpage'}->($page, $ext);
551 }
552
553 sub myurlto ($$;$) {
554         my $to=shift;
555         my $from=shift;
556         my $absolute=shift;
557
558         # workaround hard-coded /index.$config{htmlext} in IkiWiki::urlto()
559         if (! length $to
560             && $config{po_link_to} eq "current"
561             && istranslatable('index')) {
562                 return IkiWiki::beautify_urlpath(IkiWiki::baseurl($from) . "index." . lang($from) . ".$config{htmlext}");
563         }
564         # avoid using our injected beautify_urlpath if run by cgi_editpage,
565         # so that one is redirected to the just-edited page rather than to the
566         # negociated translation; to prevent unnecessary fiddling with caller/inject,
567         # we only do so when our beautify_urlpath would actually do what we want to
568         # avoid, i.e. when po_link_to = negotiated
569         if ($config{po_link_to} eq "negotiated") {
570                 my @caller = caller(1);
571                 my $run_by_editpage = 0;
572                 $run_by_editpage = 1 if (exists $caller[3] && defined $caller[3]
573                                          && $caller[3] eq "IkiWiki::cgi_editpage");
574                 inject(name => "IkiWiki::beautify_urlpath", call => $origsubs{'beautify_urlpath'})
575                         if $run_by_editpage;
576                 my $res = $origsubs{'urlto'}->($to,$from,$absolute);
577                 inject(name => "IkiWiki::beautify_urlpath", call => \&mybeautify_urlpath)
578                         if $run_by_editpage;
579                 return $res;
580         }
581         else {
582                 return $origsubs{'urlto'}->($to,$from,$absolute)
583         }
584 }
585
586 sub mynicepagetitle ($;$) {
587         my ($page, $unescaped) = (shift, shift);
588
589         my $res = $origsubs{'nicepagetitle'}->($page, $unescaped);
590         return $res unless istranslation($page);
591         return $res unless $config{po_translation_status_in_links};
592         return $res.' ('.percenttranslated($page).'&nbsp;%)';
593 }
594
595 # ,----
596 # | Blackboxes for private data
597 # `----
598
599 {
600         my %filtered;
601
602         sub alreadyfiltered($$) {
603                 my $page=shift;
604                 my $destpage=shift;
605
606                 return ( exists $filtered{$page}{$destpage}
607                          && $filtered{$page}{$destpage} eq 1 );
608         }
609
610         sub setalreadyfiltered($$) {
611                 my $page=shift;
612                 my $destpage=shift;
613
614                 $filtered{$page}{$destpage}=1;
615         }
616
617         sub unsetalreadyfiltered($$) {
618                 my $page=shift;
619                 my $destpage=shift;
620
621                 if (exists $filtered{$page}{$destpage}) {
622                         delete $filtered{$page}{$destpage};
623                 }
624         }
625
626         sub resetalreadyfiltered() {
627                 undef %filtered;
628         }
629 }
630
631 # ,----
632 # | Helper functions
633 # `----
634
635 sub maybe_add_leading_slash ($;$) {
636         my $str=shift;
637         my $add=shift;
638         $add=1 unless defined $add;
639         return '/' . $str if $add;
640         return $str;
641 }
642
643 sub istranslatablefile ($) {
644         my $file=shift;
645
646         return 0 unless defined $file;
647         return 0 if (defined pagetype($file) && pagetype($file) eq 'po');
648         return 0 if $file =~ /\.pot$/;
649         return 1 if pagespec_match(pagename($file), $config{po_translatable_pages});
650         return;
651 }
652
653 sub istranslatable ($) {
654         my $page=shift;
655
656         $page=~s#^/##;
657         return 1 if istranslatablefile($pagesources{$page});
658         return;
659 }
660
661 sub _istranslation ($) {
662         my $page=shift;
663
664         my $hasleadingslash = ($page=~s#^/##);
665         my $file=$pagesources{$page};
666         return 0 unless (defined $file
667                          && defined pagetype($file)
668                          && pagetype($file) eq 'po');
669         return 0 if $file =~ /\.pot$/;
670
671         my ($masterpage, $lang) = ($page =~ /(.*)[.]([a-z]{2})$/);
672         return 0 unless (defined $masterpage && defined $lang
673                          && length $masterpage && length $lang
674                          && defined $pagesources{$masterpage}
675                          && defined $config{po_slave_languages}{$lang});
676
677         return (maybe_add_leading_slash($masterpage, $hasleadingslash), $lang)
678                 if istranslatable($masterpage);
679 }
680
681 sub istranslation ($) {
682         my $page=shift;
683
684         if (1 < (my ($masterpage, $lang) = _istranslation($page))) {
685                 my $hasleadingslash = ($masterpage=~s#^/##);
686                 $translations{$masterpage}{$lang}=$page unless exists $translations{$masterpage}{$lang};
687                 return (maybe_add_leading_slash($masterpage, $hasleadingslash), $lang);
688         }
689         return;
690 }
691
692 sub masterpage ($) {
693         my $page=shift;
694
695         if ( 1 < (my ($masterpage, $lang) = _istranslation($page))) {
696                 return $masterpage;
697         }
698         return $page;
699 }
700
701 sub lang ($) {
702         my $page=shift;
703
704         if (1 < (my ($masterpage, $lang) = _istranslation($page))) {
705                 return $lang;
706         }
707         return $config{po_master_language}{code};
708 }
709
710 sub islanguagecode ($) {
711         my $code=shift;
712
713         return ($code =~ /^[a-z]{2}$/);
714 }
715
716 sub otherlanguage ($$) {
717         my $page=shift;
718         my $code=shift;
719
720         return masterpage($page) if $code eq $config{po_master_language}{code};
721         return masterpage($page) . '.' . $code;
722 }
723
724 sub otherlanguages ($) {
725         my $page=shift;
726
727         my %ret;
728         return \%ret unless (istranslation($page) || istranslatable($page));
729         my $curlang=lang($page);
730         foreach my $lang
731                 ($config{po_master_language}{code}, keys %{$config{po_slave_languages}}) {
732                 next if $lang eq $curlang;
733                 $ret{$lang}=otherlanguage($page, $lang);
734         }
735         return \%ret;
736 }
737
738 sub potfile ($) {
739         my $masterfile=shift;
740
741         (my $name, my $dir, my $suffix) = fileparse($masterfile, qr/\.[^.]*/);
742         $dir='' if $dir eq './';
743         return File::Spec->catpath('', $dir, $name . ".pot");
744 }
745
746 sub pofile ($$) {
747         my $masterfile=shift;
748         my $lang=shift;
749
750         (my $name, my $dir, my $suffix) = fileparse($masterfile, qr/\.[^.]*/);
751         $dir='' if $dir eq './';
752         return File::Spec->catpath('', $dir, $name . "." . $lang . ".po");
753 }
754
755 sub pofiles ($) {
756         my $masterfile=shift;
757
758         return map pofile($masterfile, $_), (keys %{$config{po_slave_languages}});
759 }
760
761 sub refreshpot ($) {
762         my $masterfile=shift;
763
764         my $potfile=potfile($masterfile);
765         my %options = ("markdown" => (pagetype($masterfile) eq 'mdwn') ? 1 : 0);
766         my $doc=Locale::Po4a::Chooser::new('text',%options);
767         $doc->{TT}{utf_mode} = 1;
768         $doc->{TT}{file_in_charset} = 'utf-8';
769         $doc->{TT}{file_out_charset} = 'utf-8';
770         $doc->read($masterfile);
771         # let's cheat a bit to force porefs option to be passed to Locale::Po4a::Po;
772         # this is undocument use of internal Locale::Po4a::TransTractor's data,
773         # compulsory since this module prevents us from using the porefs option.
774         $doc->{TT}{po_out}=Locale::Po4a::Po->new({ 'porefs' => 'none' });
775         $doc->{TT}{po_out}->set_charset('utf-8');
776         # do the actual work
777         $doc->parse;
778         IkiWiki::prep_writefile(basename($potfile),dirname($potfile));
779         $doc->writepo($potfile);
780 }
781
782 sub refreshpofiles ($@) {
783         my $masterfile=shift;
784         my @pofiles=@_;
785
786         my $potfile=potfile($masterfile);
787         (-e $potfile)
788                 or error("po(refreshpofiles) ".sprintf(gettext("POT file (%s) does not exist"),
789                                                        $potfile));
790
791         foreach my $pofile (@pofiles) {
792                 IkiWiki::prep_writefile(basename($pofile),dirname($pofile));
793                 if (-e $pofile) {
794                         system("msgmerge", "-U", "--backup=none", $pofile, $potfile) == 0
795                                 or error("po(refreshpofiles) ".
796                                          sprintf(gettext("failed to update %s"),
797                                                  $pofile));
798                 }
799                 else {
800                         File::Copy::syscopy($potfile,$pofile)
801                                 or error("po(refreshpofiles) ".
802                                          sprintf(gettext("failed to copy the POT file to %s"),
803                                                  $pofile));
804                 }
805         }
806 }
807
808 sub buildtranslationscache() {
809         # use istranslation's side-effect
810         map istranslation($_), (keys %pagesources);
811 }
812
813 sub resettranslationscache() {
814         undef %translations;
815 }
816
817 sub flushmemoizecache() {
818         Memoize::flush_cache("istranslatable");
819         Memoize::flush_cache("_istranslation");
820         Memoize::flush_cache("percenttranslated");
821 }
822
823 sub urlto_with_orig_beautiful_urlpath($$) {
824         my $to=shift;
825         my $from=shift;
826
827         inject(name => "IkiWiki::beautify_urlpath", call => $origsubs{'beautify_urlpath'});
828         my $res=urlto($to, $from);
829         inject(name => "IkiWiki::beautify_urlpath", call => \&mybeautify_urlpath);
830
831         return $res;
832 }
833
834 sub percenttranslated ($) {
835         my $page=shift;
836
837         $page=~s/^\///;
838         return gettext("N/A") unless istranslation($page);
839         my $file=srcfile($pagesources{$page});
840         my $masterfile = srcfile($pagesources{masterpage($page)});
841         my %options = (
842                 "markdown" => (pagetype($masterfile) eq 'mdwn') ? 1 : 0,
843         );
844         my $doc=Locale::Po4a::Chooser::new('text',%options);
845         $doc->process(
846                 'po_in_name'    => [ $file ],
847                 'file_in_name'  => [ $masterfile ],
848                 'file_in_charset'  => 'utf-8',
849                 'file_out_charset' => 'utf-8',
850         ) or error("po(percenttranslated) ".
851                    sprintf(gettext("failed to translate %s"), $page));
852         my ($percent,$hit,$queries) = $doc->stats();
853         $percent =~ s/\.[0-9]+$//;
854         return $percent;
855 }
856
857 sub languagename ($) {
858         my $code=shift;
859
860         return $config{po_master_language}{name}
861                 if $code eq $config{po_master_language}{code};
862         return $config{po_slave_languages}{$code}
863                 if defined $config{po_slave_languages}{$code};
864         return;
865 }
866
867 sub otherlanguagesloop ($) {
868         my $page=shift;
869
870         my @ret;
871         my %otherpages=%{otherlanguages($page)};
872         while (my ($lang, $otherpage) = each %otherpages) {
873                 if (istranslation($page) && masterpage($page) eq $otherpage) {
874                         push @ret, {
875                                 url => urlto_with_orig_beautiful_urlpath($otherpage, $page),
876                                 code => $lang,
877                                 language => languagename($lang),
878                                 master => 1,
879                         };
880                 }
881                 else {
882                         push @ret, {
883                                 url => urlto_with_orig_beautiful_urlpath($otherpage, $page),
884                                 code => $lang,
885                                 language => languagename($lang),
886                                 percent => percenttranslated($otherpage),
887                         }
888                 }
889         }
890         return sort {
891                         return -1 if $a->{code} eq $config{po_master_language}{code};
892                         return 1 if $b->{code} eq $config{po_master_language}{code};
893                         return $a->{language} cmp $b->{language};
894                 } @ret;
895 }
896
897 sub homepageurl (;$) {
898         my $page=shift;
899
900         return urlto('', $page);
901 }
902
903 sub deletetranslations ($) {
904         my $deletedmasterfile=shift;
905
906         my $deletedmasterpage=pagename($deletedmasterfile);
907         my @todelete;
908         map {
909                 my $file = newpagefile($deletedmasterpage.'.'.$_, 'po');
910                 my $absfile = "$config{srcdir}/$file";
911                 if (-e $absfile && ! -l $absfile && ! -d $absfile) {
912                         push @todelete, $file;
913                 }
914         } keys %{$config{po_slave_languages}};
915
916         map {
917                 if ($config{rcs}) {
918                         IkiWiki::rcs_remove($_);
919                 }
920                 else {
921                         IkiWiki::prune("$config{srcdir}/$_");
922                 }
923         } @todelete;
924
925         if (scalar @todelete) {
926                 commit_and_refresh(
927                         gettext("removed obsolete PO files"),
928                         "IkiWiki::Plugin::po::deletetranslations");
929         }
930 }
931
932 sub commit_and_refresh ($$) {
933         my ($msg, $author) = (shift, shift);
934
935         if ($config{rcs}) {
936                 IkiWiki::disable_commit_hook();
937                 IkiWiki::rcs_commit_staged($msg, $author, "127.0.0.1");
938                 IkiWiki::enable_commit_hook();
939                 IkiWiki::rcs_update();
940         }
941         # Reinitialize module's private variables.
942         resetalreadyfiltered();
943         resettranslationscache();
944         flushmemoizecache();
945         # Trigger a wiki refresh.
946         require IkiWiki::Render;
947         # without preliminary saveindex/loadindex, refresh()
948         # complains about a lot of uninitialized variables
949         IkiWiki::saveindex();
950         IkiWiki::loadindex();
951         IkiWiki::refresh();
952         IkiWiki::saveindex();
953 }
954
955 # on success, returns the filtered content.
956 # on error, if $nonfatal, warn and return undef; else, error out.
957 sub po_to_markup ($$;$) {
958         my ($page, $content) = (shift, shift);
959         my $nonfatal = shift;
960
961         $content = '' unless defined $content;
962         $content = decode_utf8(encode_utf8($content));
963         # CRLF line terminators make poor Locale::Po4a feel bad
964         $content=~s/\r\n/\n/g;
965
966         # There are incompatibilities between some File::Temp versions
967         # (including 0.18, bundled with Lenny's perl-modules package)
968         # and others (e.g. 0.20, previously present in the archive as
969         # a standalone package): under certain circumstances, some
970         # return a relative filename, whereas others return an absolute one;
971         # we here use this module in a way that is at least compatible
972         # with 0.18 and 0.20. Beware, hit'n'run refactorers!
973         my $infile = new File::Temp(TEMPLATE => "ikiwiki-po-filter-in.XXXXXXXXXX",
974                                     DIR => File::Spec->tmpdir,
975                                     UNLINK => 1)->filename;
976         my $outfile = new File::Temp(TEMPLATE => "ikiwiki-po-filter-out.XXXXXXXXXX",
977                                      DIR => File::Spec->tmpdir,
978                                      UNLINK => 1)->filename;
979
980         my $fail = sub ($) {
981                 my $msg = "po(po_to_markup) - $page : " . shift;
982                 if ($nonfatal) {
983                         warn $msg;
984                         return undef;
985                 }
986                 error($msg, sub { unlink $infile, $outfile});
987         };
988
989         writefile(basename($infile), File::Spec->tmpdir, $content)
990                 or return $fail->(sprintf(gettext("failed to write %s"), $infile));
991
992         my $masterfile = srcfile($pagesources{masterpage($page)});
993         my %options = (
994                 "markdown" => (pagetype($masterfile) eq 'mdwn') ? 1 : 0,
995         );
996         my $doc=Locale::Po4a::Chooser::new('text',%options);
997         $doc->process(
998                 'po_in_name'    => [ $infile ],
999                 'file_in_name'  => [ $masterfile ],
1000                 'file_in_charset'  => 'utf-8',
1001                 'file_out_charset' => 'utf-8',
1002         ) or return $fail->(gettext("failed to translate"));
1003         $doc->write($outfile)
1004                 or return $fail->(sprintf(gettext("failed to write %s"), $outfile));
1005
1006         $content = readfile($outfile)
1007                 or return $fail->(sprintf(gettext("failed to read %s"), $outfile));
1008
1009         # Unlinking should happen automatically, thanks to File::Temp,
1010         # but it does not work here, probably because of the way writefile()
1011         # and Locale::Po4a::write() work.
1012         unlink $infile, $outfile;
1013
1014         return $content;
1015 }
1016
1017 # returns a SuccessReason or FailReason object
1018 sub isvalidpo ($) {
1019         my $content = shift;
1020
1021         # NB: we don't use po_to_markup here, since Po4a parser does
1022         # not mind invalid PO content
1023         $content = '' unless defined $content;
1024         $content = decode_utf8(encode_utf8($content));
1025
1026         # There are incompatibilities between some File::Temp versions
1027         # (including 0.18, bundled with Lenny's perl-modules package)
1028         # and others (e.g. 0.20, previously present in the archive as
1029         # a standalone package): under certain circumstances, some
1030         # return a relative filename, whereas others return an absolute one;
1031         # we here use this module in a way that is at least compatible
1032         # with 0.18 and 0.20. Beware, hit'n'run refactorers!
1033         my $infile = new File::Temp(TEMPLATE => "ikiwiki-po-isvalidpo.XXXXXXXXXX",
1034                                     DIR => File::Spec->tmpdir,
1035                                     UNLINK => 1)->filename;
1036
1037         my $fail = sub ($) {
1038                 my $msg = '[po/isvalidpo] ' . shift;
1039                 unlink $infile;
1040                 return IkiWiki::FailReason->new("$msg");
1041         };
1042
1043         writefile(basename($infile), File::Spec->tmpdir, $content)
1044                 or return $fail->(sprintf(gettext("failed to write %s"), $infile));
1045
1046         my $res = (system("msgfmt", "--check", $infile, "-o", "/dev/null") == 0);
1047
1048         # Unlinking should happen automatically, thanks to File::Temp,
1049         # but it does not work here, probably because of the way writefile()
1050         # and Locale::Po4a::write() work.
1051         unlink $infile;
1052
1053         if ($res) {
1054             return IkiWiki::SuccessReason->new("valid gettext data");
1055         }
1056         return IkiWiki::FailReason->new("invalid gettext data");
1057 }
1058
1059 # ,----
1060 # | PageSpec's
1061 # `----
1062
1063 package IkiWiki::PageSpec;
1064 use warnings;
1065 use strict;
1066 use IkiWiki 2.00;
1067
1068 sub match_istranslation ($;@) {
1069         my $page=shift;
1070
1071         if (IkiWiki::Plugin::po::istranslation($page)) {
1072                 return IkiWiki::SuccessReason->new("is a translation page");
1073         }
1074         else {
1075                 return IkiWiki::FailReason->new("is not a translation page");
1076         }
1077 }
1078
1079 sub match_istranslatable ($;@) {
1080         my $page=shift;
1081
1082         if (IkiWiki::Plugin::po::istranslatable($page)) {
1083                 return IkiWiki::SuccessReason->new("is set as translatable in po_translatable_pages");
1084         }
1085         else {
1086                 return IkiWiki::FailReason->new("is not set as translatable in po_translatable_pages");
1087         }
1088 }
1089
1090 sub match_lang ($$;@) {
1091         my $page=shift;
1092         my $wanted=shift;
1093
1094         my $regexp=IkiWiki::glob2re($wanted);
1095         my $lang=IkiWiki::Plugin::po::lang($page);
1096         if ($lang!~/^$regexp$/i) {
1097                 return IkiWiki::FailReason->new("file language is $lang, not $wanted");
1098         }
1099         else {
1100                 return IkiWiki::SuccessReason->new("file language is $wanted");
1101         }
1102 }
1103
1104 sub match_currentlang ($$;@) {
1105         my $page=shift;
1106         shift;
1107         my %params=@_;
1108
1109         return IkiWiki::FailReason->new("no location provided") unless exists $params{location};
1110
1111         my $currentlang=IkiWiki::Plugin::po::lang($params{location});
1112         my $lang=IkiWiki::Plugin::po::lang($page);
1113
1114         if ($lang eq $currentlang) {
1115                 return IkiWiki::SuccessReason->new("file language is the same as current one, i.e. $currentlang");
1116         }
1117         else {
1118                 return IkiWiki::FailReason->new("file language is $lang, whereas current language is $currentlang");
1119         }
1120 }
1121
1122 1