X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/15f691a9a975a2072734e9a422a53fe837de8b9d..4cd7a16bb62318837752001e0d9a38b38bef3926:/writer.plp diff --git a/writer.plp b/writer.plp index b8e5f2d..ef377a0 100644 --- a/writer.plp +++ b/writer.plp @@ -6,22 +6,89 @@ Html({ nocache => 1, raw => <<'EOT', + + EOT }); @@ -38,50 +105,237 @@ my $db = eval { }); } or Abort('Database error', 501, $@); -my @wordcols = ( - form => 'Translation', - ref => 'Reference', - cat => 'Category', - lang => 'Language', - source => 'Image URL', - thumb => 'Convert options', +my %lang = ( + nld => ["\N{REGIONAL INDICATOR SYMBOL LETTER N}\N{REGIONAL INDICATOR SYMBOL LETTER L}", 'dutch'], + eng => ["\N{REGIONAL INDICATOR SYMBOL LETTER G}\N{REGIONAL INDICATOR SYMBOL LETTER B}", 'english'], + epo => ['★', 'esperanto'], +); +my @wordcols = pairkeys +my %wordcol = ( + lang => {-label => 'Language', -select => { + map { $_ => "@{$lang{$_}}" } keys %lang + }}, + cat => [{-label => 'Category'}, 'ref'], + ref => {-label => 'Reference'}, + prio => [ + {-label => 'Level', -select => [qw( + essential basic common distinctive rare invisible + )]}, + 'cover', 'grade', + ], + cover => {-label => 'Highlighted', type => 'checkbox'}, + grade => {-label => 'Order', type => 'number'}, + form => 'Title', + alt => 'Synonyms', wptitle => 'Wikipedia', + source => 'Image', + thumb => 'Convert options', ); -my $find = $Request ? {id => $Request} : undef; +my ($find) = map {{id => $_}} $fields{id} || $Request || (); my $row; -if ($ENV{REQUEST_METHOD} eq 'POST') { - $row = {%post{ pairkeys @wordcols }}; +if ($find) { + $row = $db->select(word => '*', $find)->hash + or Abort("Word not found", 404); +} + +if (exists $get{copy}) { + $row = {%{$row}{ qw(prio lang cat) }}; +} +elsif ($ENV{REQUEST_METHOD} eq 'POST') {{ + my $replace = $row; + $row = {%post{keys %wordcol}}; $_ = length ? $_ : undef for values %{$row}; + eval { - my %res = (returning => $Request ? '*' : 'lang, cat'); + my %res = (returning => '*'); my $query = $find ? $db->update(word => $row, $find, \%res) : $db->insert(word => $row, \%res); $row = $query->hash; - } or Alert("Entry could not be saved", $@); -} -elsif ($find) { - $row = $db->select(word => '*', $find)->hash - or Abort("Word not found", 404); + } or do { + Alert("Entry could not be saved", $@); + next; + }; + + my $imgpath = Shiar_Sheet::FormRow::imagepath($row, 'source'); + my $reimage = eval { + ($row->{source} // '') ne ($replace->{source} // '') or return; + # copy changed remote url to local file + unlink $imgpath if -e $imgpath; + my $download = $row->{source} or return 1; + require LWP::UserAgent; + my $ua = LWP::UserAgent->new; + $ua->agent('/'); + my $status = $ua->mirror($download, $imgpath); + $status->is_success + or die "Download from $download failed: ".$status->status_line."\n"; + }; + !$@ or Alert(["Source image not found", $@]); + + $reimage ||= $row->{thumb} ~~ $replace->{thumb}; # different convert + $reimage ||= $row->{cover} ~~ $replace->{cover}; # resize + $reimage++ if $fields{rethumb}; # force refresh + + my $thumbpath = Shiar_Sheet::FormRow::imagepath($row => 'thumb'); + if ($reimage) { + if (-e $imgpath) { + my $xyres = $row->{cover} ? '600x400' : '300x200'; + my @cmds = @{ $row->{thumb} // [] }; + @cmds = ( + 'convert', + -delete => '1--1', -background => 'white', + -gravity => @cmds ? 'northwest' : 'center', + @cmds, + -resize => "$xyres^", -extent => $xyres, + '-strip', -quality => '60%', -interlace => 'plane', + $imgpath => $thumbpath + ); + eval { + require IPC::Run; + my $output; + IPC::Run::run(\@cmds, '<' => \undef, '>&' => \$output) + or die $output || + ($? & 127 ? "signal $?" : "error code ".($? >> 8))."\n"; + } or Alert([ + "Thumbnail image not generated", + "Failed to convert source image.", + ], "@cmds\n$@"); + } + else { + unlink $thumbpath; + } + } +}} +else { + $row->{prio} //= 1; + $row->{$_} = $get{$_} for keys %get; } -my $title = $find ? "entry #$Request" : 'new entry'; +my $title = $row->{id} ? "entry #$row->{id}" : 'new entry'; + +package Shiar_Sheet::FormRow { + sub input { + my ($row, $col, $attr) = @_; + my $val = $row->{$col} // ''; + $val = '{'.join(',', map {s/,/\\,/gr} @{$val}).'}' if ref $val eq 'ARRAY'; + my $html = ''; + $html .= qq( $_="$attr->{$_}") for sort grep {!/^-/} keys %{$attr // {}}; + + if (my $options = $attr->{-select}) { + $options = { map {$_ => $options->[$_]} 0 .. $#{$options} } + if ref $options eq 'ARRAY'; + $options->{$val} //= "unknown ($val)"; # preserve current + return ( + sprintf('', + ); + } + elsif ($attr->{type} eq 'checkbox') { + $html .= ' checked' if $val; + return sprintf( + join('', + '', + ), $col, $html, $attr->{-label} + ); + } + else { + return ( + (map { + sprintf('', $col, $_) + } $attr->{-label} // ()), + sprintf('', + $col, PLP::Functions::EscapeHTML($val), $html + ), + (map { + sprintf '%s', + $col, $_, $row->{form}, $col eq 'source' ? ' hidden' : ''; + } grep { -e } $row->imagepath($col)), + ); + } + } + + sub imagepath { + my ($row, $col) = @_; + return "data/word/org/$row->{id}.jpg" if $col eq 'source'; + return "data/word/eng/$row->{form}.jpg" if $col eq 'thumb'; + return; + } +} +bless $row, 'Shiar_Sheet::FormRow'; :>

Words <:= $title :>

-
-
+
+ + + +
    <: +for my $col (@wordcols) { + my $info = $wordcol{$col} or next; + my ($attr, @span) = ref $info eq 'ARRAY' ? @{$info} : $info; + my $title = ref $attr ? delete $attr->{-label} : $attr; + printf '
  • ', $col, $title; + printf ''; + print $row->input($col => $attr); + print $row->input($_ => delete $wordcol{$_}) for @span; + print ''; + say '

  • '; +} -for my $col (pairs @wordcols) { - my $val = $row->{$col->key} // ''; - $val = '{'.join(',', map {s/,/\\,/gr} @{$val}).'}' if ref $val eq 'ARRAY'; - printf '
    ' - . '
    ', - $col->key, $col->value, $val; - say '
    '; +if ($row->{id}) { + my $children = $db->select(word => '*', {ref => $row->{id}}, 'lang, id'); + printf '
    • ', 'Translations'; + while (my $row = $children->hash) { + printf( + '
    • ' . + ' %s
    • ', + "trans-$row->{lang}", "/writer/$row->{id}", Entity($row->{form}), + @{$lang{ $row->{lang} }}, # flag, name + ); + } + say '
  • '; } :> -
-

+ +

+ + +

+ +<: +if ($row->{id}) { +:> + +<: +} +:> +