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