275909b094feeae07ddd9131913aa4a898ab912e
[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         wptitle => 'Wikipedia',
115         source  => 'Image URL',
116         thumb   => 'Convert options',
117         prio    => 'Level',
118         ref     => 'Reference',
119 );
120 my ($find) = map {{id => $_}} $fields{id} || $Request || ();
121
122 my $row;
123 if ($find) {
124         $row = $db->select(word => '*', $find)->hash
125                 or Abort("Word not found", 404);
126 }
127
128 if (exists $get{copy}) {
129         $row = {%{$row}{ qw(prio lang cat) }};
130 }
131 elsif ($ENV{REQUEST_METHOD} eq 'POST') {{
132         my $replace = $row;
133         $row = {%post{ pairkeys @wordcols }};
134         $_ = length ? $_ : undef for values %{$row};
135
136         eval {
137                 my %res = (returning => '*');
138                 my $query = $find ? $db->update(word => $row, $find, \%res) :
139                         $db->insert(word => $row, \%res);
140                 $row = $query->hash;
141         } or do {
142                 Alert("Entry could not be saved", $@);
143                 next;
144         };
145
146         my $imgpath = "data/word/org/$row->{id}.jpg";
147         if (($row->{source} // '') ne ($replace->{source} // '')) {
148                 # copy changed remote url to local file
149                 unlink $imgpath if -e $imgpath;
150                 if (my $download = $row->{source}) {
151                         require LWP::UserAgent;
152                         my $ua = LWP::UserAgent->new;
153                         $ua->agent('/');
154                         my $status = $ua->mirror($download, $imgpath);
155                         $status->is_success or Alert([
156                                 "Source image not found",
157                                 "Download from <q>$download</q> failed: ".$status->status_line,
158                         ]);
159                 }
160         }
161         elsif ($row->{thumb} ~~ $replace->{thumb}) {
162                 # image and conversion unaltered
163                 $imgpath = undef;
164         }
165
166         my $thumbpath = "data/word/eng/$row->{form}.jpg";
167         if ($imgpath) {
168                 if (-e $imgpath) {
169                         my @cmds = @{ $row->{thumb} // [] };
170                         @cmds = (
171                                 'convert',
172                                 -delete => '1--1', -background => 'white',
173                                 -gravity => @cmds ? 'northwest' : 'center',
174                                 @cmds,
175                                 -resize => '300x200^', -extent => '300x200',
176                                 '-strip', -quality => '60%', -interlace => 'plane',
177                                 $imgpath => $thumbpath
178                         );
179                         my $status = system @cmds;
180                         $status == 0 or Alert([
181                                 "Thumbnail image not generated",
182                                 "Failed to convert source image, error code ".($status >> 8),
183                         ], "@cmds");
184                 }
185                 else {
186                         unlink $thumbpath;
187                 }
188         }
189 }}
190 else {
191         $row->{prio} //= 1;
192         $row->{$_} = $get{$_} for keys %get;
193 }
194
195 my $title = $row->{id} ? "entry <small>#$row->{id}</small>" : 'new entry';
196 :>
197 <h1>Words <:= $title :></h1>
198
199 <form action="?" method="post">
200 <input id="id" name="id" value="<:= $row->{id} // '' :>" type="hidden" />
201 <dl>
202 <:
203
204 for my $col (pairs @wordcols) {
205         my $val = $row->{$col->key} // '';
206         $val = '{'.join(',', map {s/,/\\,/gr} @{$val}).'}' if ref $val eq 'ARRAY';
207         printf '<dt><label for="%s">%s</label></dt>'
208                 . '<dd><input id="%1$s" name="%1$s" value="%s" />',
209                 $col->key, $col->value, Entity($val);
210         -e and printf ' <img src="/%s" alt="%s" />', $_, $row->{form} for
211                 $col->key eq 'source' ? "data/word/org/$row->{id}.jpg" :
212                 $col->key eq 'thumb'  ? "data/word/eng/$row->{form}.jpg" :
213                 ();
214         say '</dd>';
215 }
216 :>
217 </dl>
218 <p>
219         <input type="submit" value="Save" />
220         <input type="submit" value="New" formaction="/writer?copy=cat" />
221 </p>
222 </form>
223
224 <:
225 $row->{id} or exit;
226 :>
227 <section>
228 <h2>Hierarchy</h2>
229
230 <:
231 say '<ul>';
232 my $parents = $db->select(word => '*', {id => $row->{cat}});
233 while (my $ref = $parents->hash) {
234         printf '<li><a href="/writer/%d">%s</a></li>', $ref->{id}, Entity($ref->{form});
235 }
236 say "<li><strong>$row->{form}</strong></li>";
237 my $children = $db->select(word => '*', {cat => $row->{id}});
238 while (my $ref = $children->hash) {
239         printf '<li><a href="/writer/%d">%s</a></li>', $ref->{id}, Entity($ref->{form});
240 }
241 :>
242 <li><form action="/writer">
243         <input type="hidden" name="cat" value="<:= $row->{id} :>" />
244         <input type="hidden" name="lang" value="<:= $row->{lang} :>" />
245         <input type="submit" value="Add" />
246 </form></li>
247 </ul>
248 </section>