9af73cdb3737e3cfbb6bed374f447f0ddf4809d0
[sheet.git] / word / edit.plp
1 <(../common.inc.plp)><:
2
3 my $editorurl = '/word/edit';
4 s{\Aedit(/|\z)}{} for $Request // ();
5
6 Html({
7         title => 'words cheat sheet admin',
8         version => '1.0',
9         nocache => 1,
10         raw => <<'EOT',
11 <link rel="stylesheet" type="text/css" media="all" href="/word/editor.css" />
12 <script src="/word/editor.js"></script>
13 EOT
14 });
15
16 use List::Util qw( pairs pairkeys );
17 use Shiar_Sheet::FormRow;
18 use JSON;
19
20 my $db = eval {
21         require Shiar_Sheet::DB;
22         Shiar_Sheet::DB->connect;
23 } or Abort('Database error', 501, $@);
24
25 my $user = eval {
26         if (defined $post{username}) {
27                 $cookie{login} = EncodeURI(join ':', @post{qw( username pass )});
28         }
29         elsif (exists $fields{logout}) {
30                 require CGI::Cookie;
31                 if (AddCookie(CGI::Cookie->new(
32                         -name    => 'login',
33                         -value   => '',
34                         -path    => $editorurl,
35                         -expires => 'now',
36                 )->as_string)) {
37                         delete $cookie{login};
38                         die "Logged out as requested\n";
39                 }
40                 Alert("Failed to log out", "Login cookie could not be removed.");
41         }
42
43         my $cookiedata = $cookie{login} or return;
44         my ($name, $key) = split /[:\v]/, DecodeURI($cookiedata);
45         my %rowmatch = (username => $name, pass => $key);
46         my $found = $db->select(login => '*', \%rowmatch)->hash
47                 or die "Invalid user or password\n";
48
49         eval {
50                 require CGI::Cookie;
51                 my $httpcookie = CGI::Cookie->new(
52                         -name    => 'login',
53                         -value   => join(':', @{$found}{qw( username pass )}),
54                         -path    => $editorurl,
55                 ) or die "prepared object is empty\n";
56                 AddCookie($httpcookie->as_string);
57         } or Abort(["Unable to create login cookie", $@], 403);
58
59         return $found;
60 } or do {
61         say '<h1>Login to edit words</h1>';
62         Alert('Access denied', $@) if $@;
63         say '<form action="?" method="post" class="inline"><ul>';
64         my $loginform = bless {%post}, 'Shiar_Sheet::FormRow';
65         say '<li>', $loginform->input(@{$_}), '</li>' for pairs (
66                 username => {-label => 'User name'},
67                 pass     => {-label => 'Password', type => 'password'},
68         );
69         say '<li><input type="submit" value="Login" /></li>';
70         say '</ul></form>';
71         exit;
72 };
73
74 my %lang = (
75         '' => ['(reference)'],
76         nl => ["\N{REGIONAL INDICATOR SYMBOL LETTER N}\N{REGIONAL INDICATOR SYMBOL LETTER L}", 'nederlands'],
77         en => ["\N{REGIONAL INDICATOR SYMBOL LETTER G}\N{REGIONAL INDICATOR SYMBOL LETTER B}", 'english'],
78         eo => [qq'<span style="color:green">\N{BLACK STAR}</span>', 'esperanto'],
79         ru => ["\N{REGIONAL INDICATOR SYMBOL LETTER R}\N{REGIONAL INDICATOR SYMBOL LETTER U}", 'русский'],
80         zh => ["\N{REGIONAL INDICATOR SYMBOL LETTER C}\N{REGIONAL INDICATOR SYMBOL LETTER N}", '中文'],
81         la => ["\N{PUSHPIN}", 'latin'],
82 );
83 my @wordcols = pairkeys
84 my %wordcol = (
85         lang    => {-label => 'Language', -select => {
86                 map { $_ => "@{$lang{$_}}" } keys %lang
87         }},
88         cat     => [{-label => 'Category'}, 'ref'],
89         ref     => {-label => 'Reference'},
90         prio    => [
91                 {-label => 'Level', -select => sub {
92                         my ($row) = @_;
93                         my @enum = qw[
94                                 essential ubiquitous basic common distinctive specialised rare invisible
95                         ];
96                         return {
97                                 ('' => 'parent') x (defined $row->{ref}),
98                                 map { $_ => $enum[$_] } 0 .. $#enum
99                         };
100                 }},
101                 'cover', 'grade',
102         ],
103         cover   => {-label => 'Highlighted', type => 'checkbox'},
104         grade   => {-label => 'Order', type => 'number'},
105         form    => {-label => 'Title'},
106         alt     => {-label => 'Synonyms', -multiple => 1},
107         wptitle => {-label => 'Wikipedia'},
108         source  => {-label => 'Image', -json => 'image', -src => sub {
109                 return "data/word/org/$_[0]->{id}.jpg";
110         }},
111         convert => {-label => 'Convert options', -json => 'image', -multiple => 1, -src => sub {
112                 return "data/word/32/$_[0]->{id}.jpg";
113         }},
114         crop32  => {-label => 'Crop 3:2', -json => 'image'},
115         story   => {-label => 'Story', type => 'textarea', hidden => 'hidden'},
116 );
117
118 if (my $search = $fields{q}) {
119         my %filter = $search eq '^' ? (cat => undef, ref => undef) :
120                 (form => {ilike => '%'.parseinput($search).'%'});
121         my $results = $db->select(word => '*', \%filter);
122         say '<h1>Search</h1><ul>';
123         printf("<li><small>%s</small> %s %s</li>\n",
124                 $_->{id}, showlink($_->{form}, "$editorurl/$_->{id}"),
125                 sprintf('<img src="/%s" style="height:3ex; width:auto" />', $wordcol{convert}->{-src}->($_)) x defined $_->{image}
126         ) for $results->hashes;
127         say "</ul>\n";
128         exit;
129 }
130
131 my ($find) = map {{id => $_}} $fields{id} || $Request || ();
132 my $row;
133 if ($find) {
134         $row = $db->select(word => '*', $find)->hash
135                 or Abort("Word not found", 404);
136 }
137
138 if (exists $get{copy}) {
139         $row = {%{$row}{ qw(prio lang cat) }};
140 }
141 elsif (defined $post{form}) {{
142         sub parseinput {
143                 return if not length $_[0];
144                 require Encode;
145                 return Encode::decode_utf8($_[0]);
146         }
147
148         my $replace = $row;  # currently stored
149         $row = {};  # proposed update
150         while (my ($col, $colinfo) = each %wordcol) {
151                 ref $colinfo eq 'HASH' or $colinfo = {};
152                 my @val = map { parseinput($_) } $post{'@'.$col}->@*;
153                 my $val = $colinfo->{-multiple} && @val ? \@val : $val[-1];
154                 if (my $jsoncol = $colinfo->{-json}) {
155                         defined $val and
156                         $row->{$jsoncol}->{$col} = $val;  # hash will be encoded
157                 }
158                 else {
159                         $row->{$col} = $val;
160                 }
161         }
162         my $imagecol = $row->{image};  # backup image subcolumns
163         ref $_ eq 'HASH' and $_ = encode_json($_) for values %{$row};
164
165         if (!$row->{form} and $row->{lang}) {
166                 if ($row->{ref} ne 'delete') {
167                         Alert("Empty title",
168                                 "Confirm removal by setting <em>Reference</em> to <q>delete</q>."
169                         );
170                 }
171                 else {
172                         $db->delete(word => $find);
173                         Alert("Entry removed");
174                 }
175                 next;
176         }
177
178         eval {
179                 my %res = (returning => '*');
180                 $row->{creator} = $user->{id} unless $find;
181                 $row->{updated} = ['now()'];
182                 my $query = $find ? $db->update(word => $row, $find, \%res) :
183                         $db->insert(word => $row, \%res);
184                 $row = $query->hash;
185         } or do {
186                 Alert("Entry could not be saved", $@);
187                 next;
188         };
189
190         eval {
191                 while (my ($lang, $val) = each %post) {
192                         my $field = $lang;
193                         $lang =~ s/^trans-// or next;
194                         $val = parseinput($val) or next;
195                         my %subrow = (
196                                 ref   => $row->{id},
197                                 lang  => $lang,
198                                 form  => $val,
199                                 prio  => undef,
200                         );
201                         $subrow{wptitle} = $1 if $subrow{form} =~ s/\h*\[(.*)\]$//; # [Link] shorthand
202                         $subrow{alt} = [split m{/}, $1] if $subrow{form} =~ s{/(\S.*)}{}; # /alternates shorthand
203                         $db->insert(word => \%subrow);
204                         delete $fields{$field};
205                 }
206                 return 1;
207         } or Alert('Error creating translation entries', $@);
208
209         require Shiar_Sheet::ImagePrep;
210         my $image = Shiar_Sheet::ImagePrep->new($wordcol{source}->{-src}->($row));
211         my $reimage = eval {
212                 ($imagecol->{source} // '') ne ($replace->{source} // '') or return;
213                 $image->download($imagecol->{source});
214         };
215         !$@ or Alert(["Source image not found", $@]);
216
217         $reimage ||= $row->{image} ~~ $replace->{image};  # different source
218         $reimage ||= $row->{cover} ~~ $replace->{cover};  # resize
219         $reimage++ if $fields{rethumb};  # force refresh
220         if ($reimage) {
221                 eval {
222                         $image->generate($wordcol{convert}->{-src}->($row), $imagecol);
223                 } or do {
224                         my ($warn, @details) = ref $@ ? @{$@} : $@;
225                         Alert([ "Thumbnail image not generated", $warn ], @details);
226                 };
227         }
228 }}
229 else {
230         $row->{lang} //= $user->{editlang}->[0] unless exists $row->{lang};
231         $row->{$_} = $get{$_} for keys %get;
232         $row->{prio} = defined $row->{ref} ? undef : 4 unless exists $row->{prio};
233 }
234
235 eval {
236         my $imagerow = $row->{image} && JSON->new->decode(delete $row->{image}) || {};
237         while (my ($col, $val) = each %{$imagerow}) {
238                 $row->{$col} = $val;
239         }
240         1;
241 } or Alert("Error decoding image metadata", $@);
242
243 my $title = $row->{id} ? "entry <small>#$row->{id}</small>" : 'new entry';
244 bless $row, 'Shiar_Sheet::FormRow';
245 :>
246 <h1>Words <:= $title :></h1>
247
248 <div class="inline">
249
250 <form action="?" method="post">
251 <input id="id" name="id" value="<:= $row->{id} // '' :>" type="hidden" />
252 <ul>
253 <:
254 for my $col (@wordcols) {
255         my $info = $wordcol{$col} or next;
256         my ($attr, @span) = ref $info eq 'ARRAY' ? @{$info} : $info;
257         next if delete $attr->{hidden} and not $row->{$col};
258         my $title = ref $attr ? delete $attr->{-label} : $attr;
259         printf '<li><label for="%s">%s</label><p>', $col, $title;
260                 printf '<span class=inline>';
261                 print $row->input($col => $attr);
262                 if (my $imgsrc = $attr->{-src}) {
263                         printf('<img id="%spreview" src="/%s" alt="%s"%s />',
264                                 $col, $_, $row->{form}, $col eq 'source' && ' hidden'
265                         ) for grep { -e } $imgsrc->($row);
266                 }
267                 print $row->input($_ => delete $wordcol{$_}) for @span;
268                 print '</span>';
269         say '</p></li>';
270 }
271
272 if (not $row->{ref}) {
273         printf '<li><label for="%s">%s</label><div><ul class="inline multiinput" id="%1$s">',
274                 'trans', 'Translations';
275         my @children = !$row->{id} ? () :
276                 $db->select(word => '*', {ref => $row->{id}}, 'lang, id')->hashes;
277         while (my ($lang, $val) = each %fields) {
278                 $lang =~ s/^trans-// or next;
279                 push @children, { lang => $lang, form => $val };
280         }
281         my %existing = map { $_->{lang} => 1 } $row, @children;
282         $existing{$_} or push @children, { lang => $_ } for @{$user->{editlang}};
283
284         for my $ref (@children) {
285                 printf(
286                         '<li><label for="%s" title="%3$s">%s </label>',
287                         "trans-$ref->{lang}", @{$lang{ $ref->{lang} }}, # flag, name
288                 );
289                 printf(
290                         $ref->{id} ? '<a id="%s" href="%s">%s</a></li>' :
291                         '<input id="%s" name="%1$s" value="%3$s" />',
292                         "trans-$ref->{lang}", "$editorurl/$ref->{id}", Entity($ref->{form} // ''),
293                 );
294         }
295         say '</ul></div></li>';
296 }
297 :>
298 </ul>
299 <p>
300         <input type="submit" value="Save" />
301         <input type="submit" value="New" formaction="<:= $editorurl :>?copy=cat" />
302 </p>
303 </form>
304
305 <:
306 if ($row->{id}) {
307 :>
308 <section id="nav">
309 <h2>Hierarchy</h2>
310
311 <:
312 say '<ul>';
313 my $parents = $db->select(word => '*', [{id => $row->{cat}}, {id => $row->{ref}}]);
314 while (my $ref = $parents->hash) {
315         printf '<li><a href="%s/%d">%s</a></li>', $editorurl, $ref->{id}, Entity($ref->{form});
316 }
317 say "<li><strong>$_</strong></li>" for Entity($row->{form});
318 my $children = $db->select(word => '*', {cat => $row->{id}, ref => undef}, 'grade, id');
319 while (my $ref = $children->hash) {
320         printf '<li><a href="%s/%d">%s</a></li>', $editorurl, $ref->{id}, Entity($ref->{form});
321 }
322 :>
323 <li><form action="<:= $editorurl :>">
324         <input type="hidden" name="cat" value="<:= $row->{id} :>" />
325         <input type="hidden" name="lang" value="<:= $row->{lang} :>" />
326         <input type="submit" value="Add" />
327 </form></li>
328 </ul>
329 </section>
330 <:
331 }
332 :>
333 </div>