word: form synonyms from alt column
[sheet.git] / writer.plp
1 <(common.inc.plp)><:
2
3 Html({
4         title => 'words cheat sheet admin',
5         version => '1.0',
6         nocache => 1,
7         raw => <<'EOT',
8 <style>
9 dd > input {
10         width: 32em;
11         max-width: 100%;
12         padding: 1ex;
13         font-family: monospace;
14 }
15 dl > dt, dl > dd {
16         float: none;
17         display: inline-block;
18         box-sizing: border-box;
19         width: 50%;
20         margin: 0;
21         line-height: 4ex;
22         vertical-align: text-top;
23 }
24 dd > img {
25         max-width: 300px;
26         display: block;
27 }
28 dd input ~ button {
29         margin-left: -5em;
30 }
31
32 ul.popup {
33         display: flex;
34         flex-wrap: wrap;
35         align-items: end;
36         position: fixed;
37         left: 0;
38         top: 0;
39         margin: auto;
40         max-height: 90%;
41         max-width: 90%;
42         overflow: auto;
43         background: rgba(0, 0, 0, .8);
44         border: 1px solid #CCC;
45 }
46
47 section {
48         position: absolute;
49         top: 7ex;
50         right: 1em;
51 }
52 section > ul {
53         margin-top: 1ex;
54 }
55 section > ul strong, section form {
56         line-height: 2;
57 }
58 </style>
59
60 <script>
61 document.addEventListener('DOMContentLoaded', () => {
62         var wpinput = document.getElementById('wptitle');
63         var wpbutton = wpinput.parentNode.appendChild(document.createElement('button'));
64         wpbutton.type = 'button';
65         wpbutton.append('Copy');
66         wpbutton.onclick = () => {
67                 let wptitle = wpinput.value || document.getElementById('form').value;
68                 let wppage = 'https://en.wikipedia.org/w/api.php?action=parse&format=json&origin=*&prop=text&page='+wptitle;
69                 fetch(wppage).then(res => res.json()).then(json => {
70                         if (json.error) throw `error returned: ${json.error.info}`;
71                         wpinput.value = json.parse.title;
72                         let imginput = document.getElementById('source');
73                         if (imginput.value) return;
74                         let wpimages = json.parse.text['*'].match(/<img\s[^>]+>/g);
75                         let wpselect = wpinput.parentNode.appendChild(document.createElement('ul'));
76                         wpselect.className = 'popup';
77                         wpimages.forEach(img => {
78                                 let selectitem = wpselect.appendChild(document.createElement('li'));
79                                 selectitem.insertAdjacentHTML('beforeend', img);
80                                 selectitem.onclick = e => {
81                                         let imgsrc = e.target.src
82                                                 .replace(/^(?=\/\/)/, 'https:')
83                                                 .replace(/\/thumb(\/.+)\/[^\/]+$/, '$1');
84                                         imginput.value = imgsrc;
85                                         wpselect.remove();
86                                         return false;
87                                 };
88                         });
89                 }).catch(error => alert(error));
90                 return false;
91         };
92 });
93 </script>
94 EOT
95 });
96
97 use List::Util qw( pairs pairkeys );
98
99 my $db = eval {
100         my @dbinfo = (
101                 'DBI:Pg:dbname=sheet;host=localhost', 'sheetadmin', 'fairuse',
102         ) or die "database not configured\n";
103         require DBIx::Simple;
104         DBIx::Simple->new(@dbinfo[0..2], {
105                 RaiseError => 1,
106                 pg_enable_utf8 => 1,
107         });
108 } or Abort('Database error', 501, $@);
109
110 my @wordcols = (
111         lang    => 'Language',
112         cat     => 'Category',
113         form    => 'Translation',
114         alt     => 'Synonyms',
115         wptitle => 'Wikipedia',
116         source  => 'Image URL',
117         thumb   => 'Convert options',
118         prio    => 'Level',
119         ref     => 'Reference',
120 );
121 my ($find) = map {{id => $_}} $fields{id} || $Request || ();
122
123 my $row;
124 if ($find) {
125         $row = $db->select(word => '*', $find)->hash
126                 or Abort("Word not found", 404);
127 }
128
129 if (exists $get{copy}) {
130         $row = {%{$row}{ qw(prio lang cat) }};
131 }
132 elsif ($ENV{REQUEST_METHOD} eq 'POST') {{
133         my $replace = $row;
134         $row = {%post{ pairkeys @wordcols }};
135         $_ = length ? $_ : undef for values %{$row};
136
137         eval {
138                 my %res = (returning => '*');
139                 my $query = $find ? $db->update(word => $row, $find, \%res) :
140                         $db->insert(word => $row, \%res);
141                 $row = $query->hash;
142         } or do {
143                 Alert("Entry could not be saved", $@);
144                 next;
145         };
146
147         my $imgpath = "data/word/org/$row->{id}.jpg";
148         if (($row->{source} // '') ne ($replace->{source} // '')) {
149                 # copy changed remote url to local file
150                 unlink $imgpath if -e $imgpath;
151                 if (my $download = $row->{source}) {
152                         require LWP::UserAgent;
153                         my $ua = LWP::UserAgent->new;
154                         $ua->agent('/');
155                         my $status = $ua->mirror($download, $imgpath);
156                         $status->is_success or Alert([
157                                 "Source image not found",
158                                 "Download from <q>$download</q> failed: ".$status->status_line,
159                         ]);
160                 }
161         }
162         elsif ($row->{thumb} ~~ $replace->{thumb}) {
163                 # image and conversion unaltered
164                 $imgpath = undef;
165         }
166
167         my $thumbpath = "data/word/eng/$row->{form}.jpg";
168         if ($imgpath) {
169                 if (-e $imgpath) {
170                         my @cmds = @{ $row->{thumb} // [] };
171                         @cmds = (
172                                 'convert',
173                                 -delete => '1--1', -background => 'white',
174                                 -gravity => @cmds ? 'northwest' : 'center',
175                                 @cmds,
176                                 -resize => '300x200^', -extent => '300x200',
177                                 '-strip', -quality => '60%', -interlace => 'plane',
178                                 $imgpath => $thumbpath
179                         );
180                         my $status = system @cmds;
181                         $status == 0 or Alert([
182                                 "Thumbnail image not generated",
183                                 "Failed to convert source image, error code ".($status >> 8),
184                         ], "@cmds");
185                 }
186                 else {
187                         unlink $thumbpath;
188                 }
189         }
190 }}
191 else {
192         $row->{prio} //= 1;
193         $row->{$_} = $get{$_} for keys %get;
194 }
195
196 my $title = $row->{id} ? "entry <small>#$row->{id}</small>" : 'new entry';
197 :>
198 <h1>Words <:= $title :></h1>
199
200 <form action="?" method="post">
201 <input id="id" name="id" value="<:= $row->{id} // '' :>" type="hidden" />
202 <dl>
203 <:
204
205 for my $col (pairs @wordcols) {
206         my $val = $row->{$col->key} // '';
207         $val = '{'.join(',', map {s/,/\\,/gr} @{$val}).'}' if ref $val eq 'ARRAY';
208         printf '<dt><label for="%s">%s</label></dt>'
209                 . '<dd><input id="%1$s" name="%1$s" value="%s" />',
210                 $col->key, $col->value, Entity($val);
211         -e and printf ' <img src="/%s" alt="%s" />', $_, $row->{form} for
212                 $col->key eq 'source' ? "data/word/org/$row->{id}.jpg" :
213                 $col->key eq 'thumb'  ? "data/word/eng/$row->{form}.jpg" :
214                 ();
215         say '</dd>';
216 }
217 :>
218 </dl>
219 <p>
220         <input type="submit" value="Save" />
221         <input type="submit" value="New" formaction="/writer?copy=cat" />
222 </p>
223 </form>
224
225 <:
226 $row->{id} or exit;
227 :>
228 <section>
229 <h2>Hierarchy</h2>
230
231 <:
232 say '<ul>';
233 my $parents = $db->select(word => '*', {id => $row->{cat}});
234 while (my $ref = $parents->hash) {
235         printf '<li><a href="/writer/%d">%s</a></li>', $ref->{id}, Entity($ref->{form});
236 }
237 say "<li><strong>$row->{form}</strong></li>";
238 my $children = $db->select(word => '*', {cat => $row->{id}});
239 while (my $ref = $children->hash) {
240         printf '<li><a href="/writer/%d">%s</a></li>', $ref->{id}, Entity($ref->{form});
241 }
242 :>
243 <li><form action="/writer">
244         <input type="hidden" name="cat" value="<:= $row->{id} :>" />
245         <input type="hidden" name="lang" value="<:= $row->{lang} :>" />
246         <input type="submit" value="Add" />
247 </form></li>
248 </ul>
249 </section>