word/edit: search query ^ to search root categories
[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         nl => ["\N{REGIONAL INDICATOR SYMBOL LETTER N}\N{REGIONAL INDICATOR SYMBOL LETTER L}", 'nederlands'],
76         en => ["\N{REGIONAL INDICATOR SYMBOL LETTER G}\N{REGIONAL INDICATOR SYMBOL LETTER B}", 'english'],
77         eo => [qq'<span style="color:green">\N{BLACK STAR}</span>', 'esperanto'],
78         ru => ["\N{REGIONAL INDICATOR SYMBOL LETTER R}\N{REGIONAL INDICATOR SYMBOL LETTER U}", 'русский'],
79         zh => ["\N{REGIONAL INDICATOR SYMBOL LETTER C}\N{REGIONAL INDICATOR SYMBOL LETTER N}", '中文'],
80         la => ["\N{PUSHPIN}", 'latin'],
81 );
82 my @wordcols = pairkeys
83 my %wordcol = (
84         lang    => {-label => 'Language', -select => {
85                 map { $_ => "@{$lang{$_}}" } keys %lang
86         }},
87         cat     => [{-label => 'Category'}, 'ref'],
88         ref     => {-label => 'Reference'},
89         prio    => [
90                 {-label => 'Level', -select => sub {
91                         my ($row) = @_;
92                         my @enum = qw[ essential basic common distinctive optional invisible ];
93                         return {
94                                 ('' => 'parent') x (defined $row->{ref}),
95                                 map { $_ => $enum[$_] } 0 .. $#enum
96                         };
97                 }},
98                 'cover', 'grade',
99         ],
100         cover   => {-label => 'Highlighted', type => 'checkbox'},
101         grade   => {-label => 'Order', type => 'number'},
102         form    => {-label => 'Title'},
103         alt     => {-label => 'Synonyms', -multiple => 1},
104         wptitle => {-label => 'Wikipedia'},
105         source  => {-label => 'Image', -json => 'image', -src => sub {
106                 return "data/word/org/$_[0]->{id}.jpg";
107         }},
108         convert => {-label => 'Convert options', -json => 'image', -multiple => 1, -src => sub {
109                 return "data/word/en/$_[0]->{id}.jpg";
110         }},
111         story   => {-label => 'Story', type => 'textarea', hidden => 'hidden'},
112 );
113
114 if (my $search = $fields{q}) {
115         my %filter = $search eq '^' ? (cat => undef, ref => undef) :
116                 (form => {ilike => '%'.parseinput($search).'%'});
117         my $results = $db->select(word => '*', \%filter);
118         say '<h1>Search</h1><ul>';
119         printf("<li><small>%s</small> %s %s</li>\n",
120                 $_->{id}, showlink($_->{form}, "$editorurl/$_->{id}"),
121                 sprintf('<img src="/%s" style="height:3ex; width:auto" />', $wordcol{convert}->{-src}->($_)) x defined $_->{image}
122         ) for $results->hashes;
123         say "</ul>\n";
124         exit;
125 }
126
127 my ($find) = map {{id => $_}} $fields{id} || $Request || ();
128 my $row;
129 if ($find) {
130         $row = $db->select(word => '*', $find)->hash
131                 or Abort("Word not found", 404);
132 }
133
134 if (exists $get{copy}) {
135         $row = {%{$row}{ qw(prio lang cat) }};
136 }
137 elsif (defined $post{form}) {{
138         sub parseinput {
139                 return if not length $_[0];
140                 require Encode;
141                 return Encode::decode_utf8($_[0]);
142         }
143
144         my $replace = $row;  # currently stored
145         $row = {};  # proposed update
146         while (my ($col, $colinfo) = each %wordcol) {
147                 ref $colinfo eq 'HASH' or $colinfo = {};
148                 my @val = map { parseinput($_) } $post{'@'.$col}->@*;
149                 my $val = $colinfo->{-multiple} && @val ? \@val : $val[-1];
150                 if (my $jsoncol = $colinfo->{-json}) {
151                         defined $val and
152                         $row->{$jsoncol}->{$col} = $val;  # hash will be encoded
153                 }
154                 else {
155                         $row->{$col} = $val;
156                 }
157         }
158         my $imagecol = $row->{image};  # backup image subcolumns
159         ref $_ eq 'HASH' and $_ = encode_json($_) for values %{$row};
160
161         if (!$row->{form}) {
162                 if ($row->{ref} ne 'delete') {
163                         Alert("Empty title",
164                                 "Confirm removal by setting <em>Reference</em> to <q>delete</q>."
165                         );
166                 }
167                 else {
168                         $db->delete(word => $find);
169                         Alert("Entry removed");
170                 }
171                 next;
172         }
173
174         eval {
175                 my %res = (returning => '*');
176                 $row->{creator} = $user->{id} unless $find;
177                 $row->{updated} = ['now()'];
178                 my $query = $find ? $db->update(word => $row, $find, \%res) :
179                         $db->insert(word => $row, \%res);
180                 $row = $query->hash;
181         } or do {
182                 Alert("Entry could not be saved", $@);
183                 next;
184         };
185
186         eval {
187                 while (my ($lang, $val) = each %post) {
188                         my $field = $lang;
189                         $lang =~ s/^trans-// or next;
190                         $val = parseinput($val) or next;
191                         my %subrow = (
192                                 ref   => $row->{id},
193                                 lang  => $lang,
194                                 form  => $val,
195                                 prio  => undef,
196                         );
197                         $subrow{wptitle} = $1 if $subrow{form} =~ s/\h*\[(.*)\]$//; # [Link] shorthand
198                         $subrow{alt} = [split m{/}, $1] if $subrow{form} =~ s{/(\S.*)}{}; # /alternates shorthand
199                         $db->insert(word => \%subrow);
200                         delete $fields{$field};
201                 }
202                 return 1;
203         } or Alert('Error creating translation entries', $@);
204
205         require Shiar_Sheet::ImagePrep;
206         my $image = Shiar_Sheet::ImagePrep->new($wordcol{source}->{-src}->($row));
207         my $reimage = eval {
208                 ($imagecol->{source} // '') ne ($replace->{source} // '') or return;
209                 $image->download($imagecol->{source});
210         };
211         !$@ or Alert(["Source image not found", $@]);
212
213         $reimage ||= $row->{image} ~~ $replace->{image};  # different source
214         $reimage ||= $row->{cover} ~~ $replace->{cover};  # resize
215         $reimage++ if $fields{rethumb};  # force refresh
216         if ($reimage) {
217                 eval {
218                         $image->convert($wordcol{convert}->{-src}->($row), $imagecol->{convert});
219                 } or do {
220                         my ($warn, @details) = ref $@ ? @{$@} : $@;
221                         Alert([ "Thumbnail image not generated", $warn ], @details);
222                 };
223         }
224 }}
225 else {
226         $row->{lang} //= $user->{editlang}->[0];
227         $row->{$_} = $get{$_} for keys %get;
228         $row->{prio} = defined $row->{ref} ? undef : 1 unless exists $row->{prio};
229 }
230
231 eval {
232         my $imagerow = $row->{image} && JSON->new->decode(delete $row->{image}) || {};
233         while (my ($col, $val) = each %{$imagerow}) {
234                 $row->{$col} = $val;
235         }
236         1;
237 } or Alert("Error decoding image metadata", $@);
238
239 my $title = $row->{id} ? "entry <small>#$row->{id}</small>" : 'new entry';
240 bless $row, 'Shiar_Sheet::FormRow';
241 :>
242 <h1>Words <:= $title :></h1>
243
244 <div class="inline">
245
246 <form action="?" method="post">
247 <input id="id" name="id" value="<:= $row->{id} // '' :>" type="hidden" />
248 <ul>
249 <:
250 for my $col (@wordcols) {
251         my $info = $wordcol{$col} or next;
252         my ($attr, @span) = ref $info eq 'ARRAY' ? @{$info} : $info;
253         next if delete $attr->{hidden} and not $row->{$col};
254         my $title = ref $attr ? delete $attr->{-label} : $attr;
255         printf '<li><label for="%s">%s</label><p>', $col, $title;
256                 printf '<span class=inline>';
257                 print $row->input($col => $attr);
258                 if (my $imgsrc = $attr->{-src}) {
259                         printf('<img id="%spreview" src="/%s" alt="%s"%s />',
260                                 $col, $_, $row->{form}, $col eq 'source' && ' hidden'
261                         ) for grep { -e } $imgsrc->($row);
262                 }
263                 print $row->input($_ => delete $wordcol{$_}) for @span;
264                 print '</span>';
265         say '</p></li>';
266 }
267
268 if (not $row->{ref}) {
269         printf '<li><label for="%s">%s</label><div><ul class="inline multiinput" id="%1$s">',
270                 'trans', 'Translations';
271         my @children = !$row->{id} ? () :
272                 $db->select(word => '*', {ref => $row->{id}}, 'lang, id')->hashes;
273         while (my ($lang, $val) = each %fields) {
274                 $lang =~ s/^trans-// or next;
275                 push @children, { lang => $lang, form => $val };
276         }
277         my %existing = map { $_->{lang} => 1 } $row, @children;
278         $existing{$_} or push @children, { lang => $_ } for @{$user->{editlang}};
279
280         for my $ref (@children) {
281                 printf(
282                         '<li><label for="%s" title="%3$s">%s </label>',
283                         "trans-$ref->{lang}", @{$lang{ $ref->{lang} }}, # flag, name
284                 );
285                 printf(
286                         $ref->{id} ? '<a id="%s" href="%s">%s</a></li>' :
287                         '<input id="%s" name="%1$s" value="%3$s" />',
288                         "trans-$ref->{lang}", "$editorurl/$ref->{id}", Entity($ref->{form} // ''),
289                 );
290         }
291         say '</ul></div></li>';
292 }
293 :>
294 </ul>
295 <p>
296         <input type="submit" value="Save" />
297         <input type="submit" value="New" formaction="<:= $editorurl :>?copy=cat" />
298 </p>
299 </form>
300
301 <:
302 if ($row->{id}) {
303 :>
304 <section id="nav">
305 <h2>Hierarchy</h2>
306
307 <:
308 say '<ul>';
309 my $parents = $db->select(word => '*', [{id => $row->{cat}}, {id => $row->{ref}}]);
310 while (my $ref = $parents->hash) {
311         printf '<li><a href="%s/%d">%s</a></li>', $editorurl, $ref->{id}, Entity($ref->{form});
312 }
313 say "<li><strong>$_</strong></li>" for Entity($row->{form});
314 my $children = $db->select(word => '*', {cat => $row->{id}, ref => undef}, 'grade, id');
315 while (my $ref = $children->hash) {
316         printf '<li><a href="%s/%d">%s</a></li>', $editorurl, $ref->{id}, Entity($ref->{form});
317 }
318 :>
319 <li><form action="<:= $editorurl :>">
320         <input type="hidden" name="cat" value="<:= $row->{id} :>" />
321         <input type="hidden" name="lang" value="<:= $row->{lang} :>" />
322         <input type="submit" value="Add" />
323 </form></li>
324 </ul>
325 </section>
326 <:
327 }
328 :>
329 </div>