]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - IkiWiki/Plugin/po.pm
po plugin: implemented po_link_to=negotiated
[git.ikiwiki.info.git] / IkiWiki / Plugin / po.pm
1 #!/usr/bin/perl
2 # .po as a wiki page type
3 # inspired by the GPL'd po4a-translate,
4 # which is Copyright 2002, 2003, 2004 by Martin Quinson (mquinson#debian.org)
5 package IkiWiki::Plugin::po;
7 use warnings;
8 use strict;
9 use IkiWiki 2.00;
10 use Encode;
11 use Locale::Po4a::Chooser;
12 use File::Temp;
14 sub import {
15         hook(type => "getsetup", id => "po", call => \&getsetup);
16         hook(type => "checkconfig", id => "po", call => \&checkconfig);
17         hook(type => "targetpage", id => "po", call => \&targetpage);
18         hook(type => "tweakurlpath", id => "po", call => \&tweakurlpath);
19         hook(type => "filter", id => "po", call => \&filter);
20         hook(type => "preprocess", id => "translatable", call => \&preprocess_translatable);
21         hook(type => "htmlize", id => "po", call => \&htmlize);
22 }
24 sub getsetup () { #{{{
25         return
26                 plugin => {
27                         safe => 0,
28                         rebuild => 1, # format plugin
29                 },
30                 po_master_language => {
31                         type => "string",
32                         example => {
33                                 'code' => 'en',
34                                 'name' => 'English'
35                         },
36                         description => "master language (non-PO files)",
37                         safe => 1,
38                         rebuild => 1,
39                 },
40                 po_slave_languages => {
41                         type => "string",
42                         example => {'fr' => { 'name' => 'Français' },
43                                     'es' => { 'name' => 'Castellano' },
44                                     'de' => { 'name' => 'Deutsch' },
45                         },
46                         description => "slave languages (PO files)",
47                         safe => 1,
48                         rebuild => 1,
49                 },
50                 po_link_to => {
51                         type => "string",
52                         example => "current",
53                         description => "internal linking behavior (default/current/negotiated)",
54                         safe => 1,
55                         rebuild => 1,
56                 },
57 } #}}}
59 sub checkconfig () { #{{{
60         foreach my $field (qw{po_master_language po_slave_languages}) {
61                 if (! exists $config{$field} || ! defined $config{$field}) {
62                         error(sprintf(gettext("Must specify %s"), $field));
63                 }
64         }
65         if (! exists $config{po_link_to} ||
66             ! defined $config{po_link_to}) {
67             $config{po_link_to}="default";
68         }
69         if ($config{po_link_to} eq "negotiated" && ! $config{usedirs}) {
70                 error(gettext("po_link_to=negotiated requires usedirs to be set"));
71         }
72 } #}}}
74 sub targetpage (@) { #{{{
75         my %params = @_;
76         my $page=$params{page};
77         my $ext=$params{ext};
79         if (pagespec_match($page,"istranslation()")) {
80                 my ($masterpage, $lang) = ($page =~ /(.*)[.]([a-z]{2})$/);
81                 if (! $config{usedirs} || $page eq 'index') {
82                         return $masterpage . "." . $lang . "." . $ext;
83                 }
84                 else {
85                         return $masterpage . "/index." . $lang . "." . $ext;
86                 }
87         }
88         else {
89                 if (! $config{usedirs} || $page eq 'index') {
90                         return $page . "." . $config{po_master_language}{code} . "." . $ext;
91                 }
92                 else {
93                         return $page . "/index." . $config{po_master_language}{code} . "." . $ext;
94                 }
95         }
96 } #}}}
98 sub tweakurlpath ($) { #{{{
99         my %params = @_;
100         my $url=$params{url};
101         if ($config{po_link_to} eq "negotiated") {
102                 $url =~ s!/index.$config{po_master_language}{code}.$config{htmlext}$!/!;
103         }
104         return $url;
105 } #}}}
107 # We use filter to convert PO to the master page's type,
108 # since other plugins should not work on PO files
109 sub filter (@) { #{{{
110         my %params = @_;
111         my $page = $params{page};
112         my $content = decode_utf8(encode_utf8($params{content}));
114         # decide if this is a PO file that should be converted into a translated document,
115         # and perform various sanity checks
116         if (! pagespec_match($page, "istranslation()")) {
117                 return $content;
118         }
120         my ($masterpage, $lang) = ($page =~ /(.*)[.]([a-z]{2})$/);
121         my $file=srcfile(exists $params{file} ? $params{file} : $IkiWiki::pagesources{$page});
122         my $masterfile = srcfile($pagesources{$masterpage});
123         my (@pos,@masters);
124         push @pos,$file;
125         push @masters,$masterfile;
126         my %options = (
127                         "markdown" => (pagetype($masterfile) eq 'mdwn') ? 1 : 0,
128                         );
129         my $doc=Locale::Po4a::Chooser::new('text',%options);
130         $doc->process(
131                 'po_in_name'    => \@pos,
132                 'file_in_name'  => \@masters,
133                 'file_in_charset'  => 'utf-8',
134                 'file_out_charset' => 'utf-8',
135         ) or error("[po/filter:$file]: failed to translate");
136         my ($percent,$hit,$queries) = $doc->stats();
137         my $tmpfh = File::Temp->new(TEMPLATE => "/tmp/ikiwiki-po-filter-out.XXXXXXXXXX");
138         my $tmpout = $tmpfh->filename;
139         $doc->write($tmpout) or error("[po/filter:$file] could not write $tmpout");
140         $content = readfile($tmpout) or error("[po/filter:$file] could not read $tmpout");
141         return $content;
142 } #}}}
144 sub preprocess_translatable (@) { #{{{
145         my %params = @_;
146         my $match = exists $params{match} ? $params{match} : $params{page};
148         $pagestate{$params{page}}{po_translatable}{$match}=1;
150         return "" if ($params{silent} && IkiWiki::yesno($params{silent}));
151         return sprintf(gettext("pages %s set as translatable"), $params{match});
153 } #}}}
155 sub htmlize (@) { #{{{
156         my %params=@_;
157         my $page = $params{page};
158         my $content = $params{content};
159         my ($masterpage, $lang) = ($page =~ /(.*)[.]([a-z]{2})$/);
160         my $masterfile = srcfile($pagesources{$masterpage});
162         # force content to be htmlize'd as if it was the same type as the master page
163         return IkiWiki::htmlize($page, $page, pagetype($masterfile), $content);
164 } #}}}
166 package IkiWiki::PageSpec;
168 sub match_istranslation ($;@) { #{{{
169         my $page=shift;
170         my $wanted=shift;
172         my %params=@_;
173         my $file=exists $params{file} ? $params{file} : $IkiWiki::pagesources{$page};
174         if (! defined $file) {
175                 return IkiWiki::FailReason->new("no file specified");
176         }
178         if (! IkiWiki::pagetype($page) eq 'po') {
179                 return IkiWiki::FailReason->new("is not a PO file");
180         }
182         my ($masterpage, $lang) = ($page =~ /(.*)[.]([a-z]{2})$/);
183         if (! defined $masterpage || ! defined $lang
184             || ! (length($masterpage) > 0) || ! (length($lang) > 0)) {
185                 return IkiWiki::FailReason->new("is not named like a translation file");
186         }
188         if (! defined $IkiWiki::pagesources{$masterpage}) {
189                 return IkiWiki::FailReason->new("the master page does not exist");
190         }
192         if (! defined $IkiWiki::config{po_slave_languages}{$lang}) {
193                 return IkiWiki::FailReason->new("language $lang is not supported");
194         }
196         return IkiWiki::SuccessReason->new("page $page is a translation");
198 } #}}}