]> git.sesse.net Git - pr0n/blob - perl/Sesse/pr0n/Common.pm
f6cea5b98ab8e9de7721decb63f167707eea8e43
[pr0n] / perl / Sesse / pr0n / Common.pm
1 package Sesse::pr0n::Common;
2 use strict;
3 use warnings;
4
5 use Sesse::pr0n::Overload;
6 use Sesse::pr0n::QscaleProxy;
7 use Sesse::pr0n::Templates;
8
9 use Carp;
10 use Encode;
11 use DBI;
12 use DBD::Pg;
13 use Image::Magick;
14 use IO::String;
15 use POSIX;
16 use MIME::Base64;
17 use MIME::Types;
18 use LWP::Simple;
19 # use Image::Info;
20 use Image::ExifTool;
21 use HTML::Entities;
22 use URI::Escape;
23 use File::Basename;
24 use Crypt::Eksblowfish::Bcrypt;
25 use File::Temp;
26
27 BEGIN {
28         use Exporter ();
29         our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
30
31         use Sesse::pr0n::Config;
32         eval {
33                 require Sesse::pr0n::Config_local;
34         };
35
36         $VERSION     = "v3.20";
37         @ISA         = qw(Exporter);
38         @EXPORT      = qw(&error &dberror);
39         %EXPORT_TAGS = qw();
40         @EXPORT_OK   = qw(&error &dberror);
41
42         our $dbh = DBI->connect("dbi:Pg:dbname=pr0n;host=" . $Sesse::pr0n::Config::db_host,
43                 $Sesse::pr0n::Config::db_username, $Sesse::pr0n::Config::db_password)
44                 or die "Couldn't connect to PostgreSQL database: " . DBI->errstr;
45         our $mimetypes = new MIME::Types;
46         
47         print STDERR "Initializing pr0n $VERSION\n";
48 }
49 END {
50         our $dbh;
51         $dbh->disconnect;
52 }
53
54 our ($dbh, $mimetypes);
55
56 sub error {
57         my ($r,$err,$status,$title) = @_;
58
59         if (!defined($status) || !defined($title)) {
60                 $status = 500;
61                 $title = "Internal server error";
62         }
63
64         my $res = Plack::Response->new($status);
65         my $io = IO::String->new;
66         
67         $r->content_type('text/html; charset=utf-8');
68
69         header($r, $io, $title);
70         $io->print("    <p>Error: $err</p>\n");
71         footer($r, $io);
72
73         log_error($r, $err);
74         log_error($r, "Stack trace follows: " . Carp::longmess());
75
76         $io->setpos(0);
77         $res->body($io);
78         return $res;
79 }
80
81 sub dberror {
82         my ($r,$err) = @_;
83         return error($r, "$err (DB error: " . $dbh->errstr . ")");
84 }
85
86 sub header {
87         my ($r, $io, $title) = @_;
88
89         $r->content_type("text/html; charset=utf-8");
90
91         # Fetch quote if we're itk-bilder.samfundet.no
92         my $quote = "";
93         if (Sesse::pr0n::Common::get_server_name($r) eq 'itk-bilder.samfundet.no') {
94                 $quote = LWP::Simple::get("http://itk.samfundet.no/include/quotes.cli.php");
95                 $quote = "Error: Could not fetch quotes." if (!defined($quote));
96         }
97         Sesse::pr0n::Templates::print_template($r, $io, "header", { title => $title, quotes => $quote });
98 }
99
100 sub footer {
101         my ($r, $io) = @_;
102         Sesse::pr0n::Templates::print_template($r, $io, "footer",
103                 { version => $Sesse::pr0n::Common::VERSION });
104 }
105
106 sub scale_aspect {
107         my ($width, $height, $thumbxres, $thumbyres) = @_;
108
109         unless ($thumbxres >= $width &&
110                 $thumbyres >= $height) {
111                 my $sfh = $width / $thumbxres;
112                 my $sfv = $height / $thumbyres;
113                 if ($sfh > $sfv) {
114                         $width  /= $sfh;
115                         $height /= $sfh;
116                 } else {
117                         $width  /= $sfv;
118                         $height /= $sfv;
119                 }
120                 $width = POSIX::floor($width);
121                 $height = POSIX::floor($height);
122         }
123
124         return ($width, $height);
125 }
126
127 sub get_query_string {
128         my ($param, $defparam) = @_;
129         my $first = 1;
130         my $str = "";
131
132         for my $key (sort keys %$param) {
133                 my $value = $param->{$key};
134                 next unless defined($value);
135                 next if (defined($defparam->{$key}) && $value == $defparam->{$key});
136
137                 $value = pretty_escape($value);
138         
139                 $str .= ($first) ? "?" : ';';
140                 $str .= "$key=$value";
141                 $first = 0;
142         }
143         return $str;
144 }
145
146 # This is not perfect (it can't handle "_ " right, for one), but it will do for now
147 sub weird_space_encode {
148         my $val = shift;
149         if ($val =~ /_/) {
150                 return "_" x (length($val) * 2);
151         } else {
152                 return "_" x (length($val) * 2 - 1);
153         }
154 }
155
156 sub weird_space_unencode {
157         my $val = shift;
158         if (length($val) % 2 == 0) {
159                 return "_" x (length($val) / 2);
160         } else {
161                 return " " x ((length($val) + 1) / 2);
162         }
163 }
164                 
165 sub pretty_escape {
166         my $value = shift;
167
168         $value =~ s/(([_ ])\2*)/weird_space_encode($1)/ge;
169         $value = URI::Escape::uri_escape($value);
170         $value =~ s/%2F/\//g;
171
172         return $value;
173 }
174
175 sub pretty_unescape {
176         my $value = shift;
177
178         # URI unescaping is already done for us
179         $value =~ s/(_+)/weird_space_unencode($1)/ge;
180
181         return $value;
182 }
183
184 sub print_link {
185         my ($io, $title, $baseurl, $param, $defparam, $accesskey) = @_;
186         my $str = "<a href=\"$baseurl" . get_query_string($param, $defparam) . "\"";
187         if (defined($accesskey) && length($accesskey) == 1) {
188                 $str .= " accesskey=\"$accesskey\"";
189         }
190         $str .= ">$title</a>";
191         $io->print($str);
192 }
193
194 sub get_dbh {
195         # Check that we are alive
196         if (!(defined($dbh) && $dbh->ping)) {
197                 # Try to reconnect
198                 print STDERR "Lost contact with PostgreSQL server, trying to reconnect...\n";
199                 unless ($dbh = DBI->connect("dbi:Pg:dbname=pr0n;host=" . $Sesse::pr0n::Config::db_host,
200                         $Sesse::pr0n::Config::db_username, $Sesse::pr0n::Config::db_password)) {
201                         $dbh = undef;
202                         die "Couldn't connect to PostgreSQL database";
203                 }
204         }
205
206         return $dbh;
207 }
208
209 sub get_disk_location {
210         my ($r, $id) = @_;
211         my $dir = POSIX::floor($id / 256);
212         return $Sesse::pr0n::Config::image_base . "images/$dir/$id.jpg";
213 }
214
215 sub get_cache_location {
216         my ($id, $width, $height, $format) = @_;
217         my $dir = POSIX::floor($id / 256);
218
219         return $Sesse::pr0n::Config::image_base . "cache/$dir/$id-$width-$height-nobox.$format";
220 }
221
222 sub get_infobox_cache_location {
223         my ($id, $width, $height, $dpr) = @_;
224         my $dir = POSIX::floor($id / 256);
225
226         if ($dpr == 1) {
227                 return $Sesse::pr0n::Config::image_base . "cache/$dir/$id-$width-$height-box.png";
228         } else {
229                 return $Sesse::pr0n::Config::image_base . "cache/$dir/$id-$width-$height-box\@$dpr.png";
230         }
231 }
232
233 sub ensure_disk_location_exists {
234         my ($r, $id) = @_;
235         my $dir = POSIX::floor($id / 256);
236
237         my $img_dir = $Sesse::pr0n::Config::image_base . "/images/$dir/";
238         if (! -d $img_dir) {
239                 log_info($r, "Need to create new image directory $img_dir");
240                 mkdir($img_dir) or die "Couldn't create new image directory $img_dir";
241         }
242
243         my $cache_dir = $Sesse::pr0n::Config::image_base . "/cache/$dir/";
244         if (! -d $cache_dir) {
245                 log_info($r, "Need to create new cache directory $cache_dir");
246                 mkdir($cache_dir) or die "Couldn't create new image directory $cache_dir";
247         }
248 }
249
250 sub get_mipmap_location {
251         my ($r, $id, $width, $height) = @_;
252         my $dir = POSIX::floor($id / 256);
253
254         return $Sesse::pr0n::Config::image_base . "cache/$dir/$id-mipmap-$width-$height.jpg";
255 }
256
257 sub update_image_info {
258         my ($r, $id, $width, $height) = @_;
259
260         # Also find the date taken if appropriate (from the EXIF tag etc.)
261         my $exiftool = Image::ExifTool->new;
262         $exiftool->ExtractInfo(get_disk_location($r, $id));
263         my $info = $exiftool->GetInfo();
264         my $datetime = undef;
265                         
266         if (defined($info->{'DateTimeOriginal'})) {
267                 # Parse the date and time over to ISO format
268                 if ($info->{'DateTimeOriginal'} =~ /^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)(?:\+\d\d:\d\d)?$/ && $1 > 1990) {
269                         $datetime = "$1-$2-$3 $4:$5:$6";
270                 }
271         }
272
273         {
274                 local $dbh->{AutoCommit} = 0;
275
276                 # EXIF information
277                 $dbh->do('DELETE FROM exif_info WHERE image=?',
278                         undef, $id)
279                         or die "Couldn't delete old EXIF information in SQL: $!";
280
281                 my $q = $dbh->prepare('INSERT INTO exif_info (image,key,value) VALUES (?,?,?)')
282                         or die "Couldn't prepare inserting EXIF information: $!";
283
284                 for my $key (keys %$info) {
285                         next if ref $info->{$key};
286                         $q->execute($id, $key, guess_charset($info->{$key}))
287                                 or die "Couldn't insert EXIF information in database: $!";
288                 }
289
290                 # Model/Lens
291                 my $model = $exiftool->GetValue('Model', 'PrintConv');
292                 my $lens = $exiftool->GetValue('Lens', 'PrintConv');
293                 $lens = $exiftool->GetValue('LensSpec', 'PrintConv') if (!defined($lens));
294
295                 $model =~ s/^\s*//;
296                 $model =~ s/\s*$//;
297                 $model = undef if (length($model) == 0);
298
299                 $lens =~ s/^\s*//;
300                 $lens =~ s/\s*$//;
301                 $lens = undef if (length($lens) == 0);
302                 
303                 # Now update the main table with the information we've got
304                 $dbh->do('UPDATE images SET width=?, height=?, date=?, model=?, lens=? WHERE id=?',
305                          undef, $width, $height, $datetime, $model, $lens, $id)
306                         or die "Couldn't update width/height in SQL: $!";
307                 
308                 # update the last_picture cache as well (this should of course be done
309                 # via a trigger, but this is less complicated :-) )
310                 $dbh->do('UPDATE last_picture_cache SET last_picture=GREATEST(last_picture, ?),last_update=CURRENT_TIMESTAMP WHERE (vhost,event)=(SELECT vhost,event FROM images WHERE id=?)',
311                         undef, $datetime, $id)
312                         or die "Couldn't update last_picture in SQL: $!";
313         }
314 }
315
316 sub check_access {
317         my $r = shift;
318         
319         #return qw(sesse Sesse);
320
321         my $auth = $r->header('authorization');
322         if (!defined($auth)) {
323                 return undef;
324         } 
325         if ($auth =~ /^Basic ([a-zA-Z0-9+\/]+=*)$/) {
326                 return check_basic_auth($r, $1);
327         }       
328         return undef;
329 }
330
331 sub generate_401 {
332         my ($r) = @_;
333         my $res = Plack::Response->new(401);
334         $res->content_type('text/plain; charset=utf-8');
335         $res->status(401);
336         $res->header('WWW-Authenticate' => 'Basic realm="pr0n.sesse.net"');
337
338         $res->body("Need authorization\n");
339         return $res;
340 }
341
342 sub check_basic_auth {
343         my ($r, $auth) = @_;    
344
345         my ($raw_user, $pass) = split /:/, MIME::Base64::decode_base64($auth);
346         my ($user, $takenby) = extract_takenby($raw_user);
347
348         my $ref = $dbh->selectrow_hashref('SELECT cryptpassword FROM users WHERE username=? AND vhost=?',
349                 undef, $user, Sesse::pr0n::Common::get_server_name($r));
350         my $bcrypt_matches = 0;
351         if (!defined($ref) || Crypt::Eksblowfish::Bcrypt::bcrypt($pass, $ref->{'cryptpassword'}) ne $ref->{'cryptpassword'}) {
352                 $r->content_type('text/plain; charset=utf-8');
353                 log_warn($r, "Authentication failed for $user/$takenby");
354                 return undef;
355         }
356         log_info($r, "Authentication succeeded for $user/$takenby");
357
358         return ($user, $takenby);
359 }
360
361 sub get_pseudorandom_bytes {
362         my $num_left = shift;
363         my $bytes = "";
364         open my $randfh, "<", "/dev/urandom"
365                 or die "/dev/urandom: $!";
366         binmode $randfh;
367         while ($num_left > 0) {
368                 my $tmp;
369                 if (sysread($randfh, $tmp, $num_left) == -1) {
370                         die "sysread(/dev/urandom): $!";
371                 }
372                 $bytes .= $tmp;
373                 $num_left -= length($bytes);
374         }
375         close $randfh;
376         return $bytes;
377 }
378
379 sub extract_takenby {
380         my ($user) = shift;
381
382         # WinXP is stupid :-)
383         if ($user =~ /^.*\\(.*)$/) {
384                 $user = $1;
385         }
386
387         my $takenby;
388         if ($user =~ /^([a-zA-Z0-9^_-]+)\@([a-zA-Z0-9^_-]+)$/) {
389                 $user = $1;
390                 $takenby = $2;
391         } else {
392                 ($takenby = $user) =~ s/^([a-zA-Z])/uc($1)/e;
393         }
394
395         return ($user, $takenby);
396 }
397         
398 sub stat_image {
399         my ($r, $event, $filename) = (@_);
400         my $ref = $dbh->selectrow_hashref(
401                 'SELECT id FROM images WHERE event=? AND filename=?',
402                 undef, $event, $filename);
403         if (!defined($ref)) {
404                 return (undef, undef, undef);
405         }
406         return stat_image_from_id($r, $ref->{'id'});
407 }
408
409 sub stat_image_from_id {
410         my ($r, $id) = @_;
411
412         my $fname = get_disk_location($r, $id);
413         my (undef, undef, undef, undef, undef, undef, undef, $size, undef, $mtime) = stat($fname)
414                 or return (undef, undef, undef);
415
416         return ($fname, $size, $mtime);
417 }
418
419 # Takes in an image ID and a set of resolutions, and returns (generates if needed)
420 # the smallest mipmap larger than the largest of them, as well as the original image
421 # dimensions.
422 sub make_mipmap {
423         my ($r, $filename, $id, $dbwidth, $dbheight, @res) = @_;
424         my ($img, $mmimg, $width, $height);
425         
426         my $physical_fname = get_disk_location($r, $id);
427
428         # If we don't know the size, we'll need to read it in anyway
429         if (!defined($dbwidth) || !defined($dbheight)) {
430                 $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight);
431                 $width = $img->Get('columns');
432                 $height = $img->Get('rows');
433         } else {
434                 $width = $dbwidth;
435                 $height = $dbheight;
436         }
437
438         # Generate the list of mipmaps
439         my @mmlist = ();
440         
441         my $mmwidth = $width;
442         my $mmheight = $height;
443
444         while ($mmwidth > 1 || $mmheight > 1) {
445                 my $new_mmwidth = POSIX::floor($mmwidth / 2);           
446                 my $new_mmheight = POSIX::floor($mmheight / 2);         
447
448                 $new_mmwidth = 1 if ($new_mmwidth < 1);
449                 $new_mmheight = 1 if ($new_mmheight < 1);
450
451                 my $large_enough = 1;
452                 for my $i (0..($#res/2)) {
453                         my ($xres, $yres) = ($res[$i*2], $res[$i*2+1]);
454                         if ($xres == -1 || $xres > $new_mmwidth || $yres > $new_mmheight) {
455                                 $large_enough = 0;
456                                 last;
457                         }
458                 }
459                                 
460                 last if (!$large_enough);
461
462                 $mmwidth = $new_mmwidth;
463                 $mmheight = $new_mmheight;
464
465                 push @mmlist, [ $mmwidth, $mmheight ];
466         }
467                 
468         # Ensure that all of them are OK
469         my $last_good_mmlocation;
470         for my $i (0..$#mmlist) {
471                 my $last = ($i == $#mmlist);
472                 my $mmres = $mmlist[$i];
473
474                 my $mmlocation = get_mipmap_location($r, $id, $mmres->[0], $mmres->[1]);
475                 if (! -r $mmlocation or (-M $mmlocation > -M $physical_fname)) {
476                         if (!defined($img)) {
477                                 if (defined($last_good_mmlocation)) {
478                                         $img = Sesse::pr0n::QscaleProxy->new;
479                                         $img->Read($last_good_mmlocation);
480                                 } else {
481                                         $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight);
482                                 }
483                         }
484                         my $cimg;
485                         if ($last) {
486                                 $cimg = $img;
487                         } else {
488                                 $cimg = $img->Clone();
489                         }
490                         log_info($r, "Making mipmap for $id: " . $mmres->[0] . " x " . $mmres->[1]);
491                         $cimg->Resize(width=>$mmres->[0], height=>$mmres->[1], filter=>'Lanczos', 'sampling-factor'=>'1x1');
492                         $cimg->Strip();
493                         my $err = $cimg->write(
494                                 filename => $mmlocation,
495                                 quality => 95,
496                                 'sampling-factor' => '1x1'
497                         );
498                         $img = $cimg;
499                 } else {
500                         $last_good_mmlocation = $mmlocation;
501                 }
502                 if ($last && !defined($img)) {
503                         # OK, read in the smallest one
504                         $img = Sesse::pr0n::QscaleProxy->new;
505                         my $err = $img->Read($mmlocation);
506                 }
507         }
508
509         if (!defined($img)) {
510                 $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight);
511                 $width = $img->Get('columns');
512                 $height = $img->Get('rows');
513         }
514         return ($img, $width, $height);
515 }
516
517 sub read_original_image {
518         my ($r, $filename, $id, $dbwidth, $dbheight) = @_;
519
520         my $physical_fname = get_disk_location($r, $id);
521
522         # Read in the original image
523         my $magick;
524         if ($filename =~ /\.jpeg$/i || $filename =~ /\.jpg$/i) {
525                 $magick = Sesse::pr0n::QscaleProxy->new;
526         } else {
527                 $magick = Image::Magick->new;
528         }
529         my $err;
530
531         # ImageMagick can handle NEF files, but it does it by calling dcraw as a delegate.
532         # The delegate support is rather broken and causes very odd stuff to happen when
533         # more than one thread does this at the same time. Thus, we simply do it ourselves.
534         if ($filename =~ /\.(nef|cr2)$/i) {
535                 # this would suffice if ImageMagick gets to fix their handling
536                 # $physical_fname = "NEF:$physical_fname";
537                 
538                 open DCRAW, "-|", "dcraw", "-w", "-c", $physical_fname
539                         or error("dcraw: $!");
540                 $err = $magick->Read(file => \*DCRAW);
541                 close(DCRAW);
542         } else {
543                 # We always want YCbCr JPEGs. Setting this explicitly here instead of using
544                 # RGB is slightly faster (no colorspace conversion needed) and works equally
545                 # well for our uses, as long as we don't need to draw an information box,
546                 # which trickles several ImageMagick bugs related to colorspace handling.
547                 # (Ideally we'd be able to keep the image subsampled and
548                 # planar, but that would probably be difficult for ImageMagick to expose.)
549                 #if (!$infobox) {
550                 #       $magick->Set(colorspace=>'YCbCr');
551                 #}
552                 $err = $magick->Read($physical_fname);
553         }
554         
555         if ($err) {
556                 log_warn($r, "$physical_fname: $err");
557                 $err =~ /(\d+)/;
558                 if ($1 >= 400) {
559                         undef $magick;
560                         error($r, "$physical_fname: $err");
561                 }
562         }
563
564         # If we use ->[0] unconditionally, text rendering (!) seems to crash
565         my $img;
566         if (ref($magick) !~ /Image::Magick/) {
567                 $img = $magick;
568         } else {
569                 $img = (scalar @$magick > 1) ? $magick->[0] : $magick;
570         }
571
572         return $img;
573 }
574
575 sub ensure_cached {
576         my ($r, $avif_ok, $filename, $id, $dbwidth, $dbheight, $xres, $yres, @otherres) = @_;
577
578         my $fname = get_disk_location($r, $id);
579         unless (defined($xres) && (!defined($dbwidth) || !defined($dbheight) || $xres < $dbwidth || $yres < $dbheight || $xres == -1)) {
580                 return ($fname, undef);
581         }
582
583         # See if we have an up-to-date AVIF to serve.
584         # (We never generate them on-the-fly, since they're so slow.)
585         my $cachename = get_cache_location($id, $xres, $yres, 'avif');
586         if ($avif_ok && -r $cachename and (-M $cachename <= -M $fname)) {
587                 return ($cachename, 'image/avif');
588         }
589
590         $cachename = get_cache_location($id, $xres, $yres, 'jpg');
591         if (! -r $cachename or (-M $cachename > -M $fname)) {
592                 # If we are in overload mode (aka Slashdot mode), refuse to generate
593                 # new thumbnails.
594                 if (Sesse::pr0n::Overload::is_in_overload($r)) {
595                         log_warn($r, "In overload mode, not scaling $id to $xres x $yres");
596                         error($r, 'System is in overload mode, not doing any scaling');
597                 }
598
599                 make_cache($r, $filename, $id, $dbwidth, $dbheight, 'jpg', $xres, $yres, @otherres);
600         }
601
602         return ($cachename, 'image/jpeg');
603 }
604
605 sub make_cache {
606         my ($r, $filename, $id, $dbwidth, $dbheight, $format, $xres, $yres, @otherres) = @_;
607
608         my ($img, $new_dbwidth, $new_dbheight) = make_mipmap($r, $filename, $id, $dbwidth, $dbheight, $xres, $yres, @otherres);
609
610         # Update the SQL database if it doesn't contain the required info
611         if (!defined($dbwidth) && defined($new_dbwidth)) {
612                 log_info($r, "Updating width/height for $id: $new_dbwidth x $new_dbheight");
613                 update_image_info($r, $id, $new_dbwidth, $new_dbheight);
614         }
615
616         my $err;
617         while (defined($xres) && defined($yres)) {
618                 my ($nxres, $nyres) = (shift @otherres, shift @otherres);
619                 my $cachename = get_cache_location($id, $xres, $yres, $format);
620                 
621                 my $cimg;
622                 if (defined($nxres) && defined($nyres)) {
623                         # we have more resolutions to scale, so don't throw
624                         # the image away
625                         $cimg = $img->Clone();
626                 } else {
627                         $cimg = $img;
628                 }
629         
630                 my $width = $img->Get('columns');
631                 my $height = $img->Get('rows');
632                 my ($nwidth, $nheight) = scale_aspect($width, $height, $xres, $yres);
633
634                 my $filter = 'Lanczos';
635                 my $quality = 87;
636                 my $sf = "1x1";
637
638                 if ($xres != -1) {
639                         $cimg->Resize(width=>$nwidth, height=>$nheight, filter=>$filter);
640                 }
641
642                 # Strip EXIF tags etc.
643                 $cimg->Strip();
644
645                 if ($format eq 'jpg') {
646                         my %parms = (
647                                 filename => $cachename,
648                                 quality => $quality
649                         );
650                         if (($nwidth >= 640 && $nheight >= 480) ||
651                             ($nwidth >= 480 && $nheight >= 640)) {
652                                 $parms{'interlace'} = 'Plane';
653                         }
654                         if (defined($sf)) {
655                                 $parms{'sampling-factor'} = $sf;
656                         }
657                         $err = $cimg->write(%parms);
658                 } elsif ($format eq 'avif') {
659                         # ImageMagick doesn't have AVIF support until version 7,
660                         # and Debian hasn't packaged that even in unstable as of 2021.
661                         # So we'll need to do it the manual way. (We don't use /tmp, for security reasons.)
662                         (my $dirname = $cachename) =~ s,/[^/]*$,,;
663                         my ($fh, $raw_filename) = File::Temp::tempfile('tmp.XXXXXXXX', DIR => $dirname, SUFFIX => '.ycbcr');
664                         # Write a Y4M header, so that we get the chroma range correct.
665                         printf $fh "YUV4MPEG2 W%d H%d F25:1 Ip A1:1 C444 XYSCSS=444 XCOLORRANGE=FULL\nFRAME\n", $nwidth, $nheight;
666                         my %parms = (
667                                 file => $fh,
668                                 filename => $raw_filename,
669                                 interlace => 'Plane'
670                         );
671                         $cimg->write(%parms);
672                         close($fh);
673                         my $ivf_filename;
674                         ($fh, $ivf_filename) = File::Temp::tempfile('tmp.XXXXXXXX', DIR => $dirname, SUFFIX => '.ivf');
675                         close($fh);
676                         system('aomenc', '--quiet', '--cpu-used=0', '--bit-depth=10', '--end-usage=q', '--cq-level=13', '--target-bitrate=0', '--good', '--aq-mode=1', '--matrix-coefficients=bt601', '-o', $ivf_filename, $raw_filename);
677                         unlink($raw_filename);
678                         system('MP4Box', '-quiet', '-add-image', "$ivf_filename:primary", '-ab', 'avif', '-ab', 'miaf', '-new', $cachename);
679                         unlink($ivf_filename);
680                 } else {
681                         die "Unknown format $format";
682                 }
683
684                 undef $cimg;
685
686                 ($xres, $yres) = ($nxres, $nyres);
687
688                 log_info($r, "New cache: $nwidth x $nheight ($format) for $id");
689         }
690         
691         undef $img;
692         if ($err) {
693                 log_warn($r, "$filename: $err");
694                 $err =~ /(\d+)/;
695                 if ($1 >= 400) {
696                         #@$magick = ();
697                         error($r, "$filename: $err");
698                 }
699         }
700 }
701
702 sub ensure_infobox_cached {
703         my ($r, $filename, $id, $dbwidth, $dbheight, $dpr, $xres, $yres) = @_;
704
705         my ($new_dbwidth, $new_dbheight);
706
707         my $fname = get_disk_location($r, $id);
708         my $cachename = get_infobox_cache_location($id, $xres, $yres, $dpr);
709         my $err;
710         if (! -r $cachename or (-M $cachename > -M $fname)) {
711                 # If we are in overload mode (aka Slashdot mode), refuse to generate
712                 # new thumbnails.
713                 if (Sesse::pr0n::Overload::is_in_overload($r)) {
714                         log_warn($r, "In overload mode, not scaling $id to $xres x $yres");
715                         error($r, 'System is in overload mode, not doing any scaling');
716                 }
717
718                 # We need the exact width so we can make one in the right size.
719                 my ($width, $height);
720
721                 # This is slow, but should fortunately almost never happen, so don't bother
722                 # special-casing it.
723                 if (!defined($dbwidth) || !defined($dbheight)) {
724                         my $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight, 0);
725                         $new_dbwidth = $width = $img->Get('columns');
726                         $new_dbheight = $height = $img->Get('rows');
727                 } else {
728                         $width = $dbwidth;
729                         $height = $dbheight;
730                 }
731                 my $img = Image::Magick->new;
732
733                 if (defined($xres) && defined($yres)) {
734                         ($width, $height) = scale_aspect($width, $height, $xres, $yres);
735                 }
736                 $height = 24 * $dpr;
737                 $img->Set(size=>($width . "x" . $height));
738                 $img->Read('xc:white');
739
740                 my $info = Image::ExifTool::ImageInfo($fname);
741                 if (make_infobox($img, $info, $r, $dpr)) {
742                         $img->Quantize(colors=>16, dither=>'False');
743
744                         # Since the image is grayscale, ImageMagick overrides us and writes this
745                         # as grayscale anyway, but at least we get rid of the alpha channel this
746                         # way.
747                         $img->Set(type=>'Palette');
748                 } else {
749                         # Not enough room for the text, make a tiny dummy transparent infobox
750                         @$img = ();
751                         $img->Set(size=>"1x1");
752                         $img->Read('null:');
753
754                         $width = 1;
755                         $height = 1;
756                 }
757
758                 $err = $img->write(filename => $cachename, quality => 90, depth => 8);
759                 log_info($r, "New infobox cache: $width x $height for $id.jpg");
760         }
761
762         return ($cachename, 'image/png');
763 }
764
765 sub get_mimetype_from_filename {
766         my $filename = shift;
767         my MIME::Type $type = $mimetypes->mimeTypeOf($filename);
768         $type = "image/jpeg" if (!defined($type));
769         return $type;
770 }
771
772 sub make_infobox {
773         my ($img, $info, $r, $dpr) = @_;
774
775         # The infobox is of the form
776         # "Time - date - focal length, shutter time, aperture, sensitivity, exposure bias - flash",
777         # possibly with some parts omitted -- the middle part is known as the "classic
778         # fields"; note the comma separation. Every field has an associated "bold flag"
779         # in the second part.
780         
781         my $manual_shutter = (defined($info->{'ExposureProgram'}) &&
782                 $info->{'ExposureProgram'} =~ /shutter\b.*\bpriority/i);
783         my $manual_aperture = (defined($info->{'ExposureProgram'}) &&
784                 $info->{'ExposureProgram'} =~ /aperture\b.*\bpriority/i);
785         if (defined($info->{'ExposureProgram'}) && $info->{'ExposureProgram'} =~ /manual/i) {
786                 $manual_shutter = 1;
787                 $manual_aperture = 1;
788         }
789
790         my @classic_fields = ();
791         if (defined($info->{'FocalLength'}) && $info->{'FocalLength'} =~ /^(\d+)(?:\.\d+)?\s*(?:mm)?$/) {
792                 push @classic_fields, [ $1 . "mm", 0 ];
793         } elsif (defined($info->{'FocalLength'}) && $info->{'FocalLength'} =~ /^(\d+)\/(\d+)$/) {
794                 push @classic_fields, [ (sprintf "%.1fmm", ($1/$2)), 0 ];
795         }
796
797         if (defined($info->{'ExposureTime'}) && $info->{'ExposureTime'} =~ /^(\d+)\/(\d+)$/) {
798                 my ($a, $b) = ($1, $2);
799                 my $gcd = gcd($a, $b);
800                 push @classic_fields, [ $a/$gcd . "/" . $b/$gcd . "s", $manual_shutter ];
801         } elsif (defined($info->{'ExposureTime'}) && $info->{'ExposureTime'} =~ /^(\d+(?:\.\d+)?)$/) {
802                 push @classic_fields, [ $1 . "s", $manual_shutter ];
803         }
804
805         if (defined($info->{'FNumber'}) && $info->{'FNumber'} =~ /^(\d+)\/(\d+)$/) {
806                 my $f = $1/$2;
807                 if ($f >= 10) {
808                         push @classic_fields, [ (sprintf "f/%.0f", $f), $manual_aperture ];
809                 } else {
810                         push @classic_fields, [ (sprintf "f/%.1f", $f), $manual_aperture ];
811                 }
812         } elsif (defined($info->{'FNumber'}) && $info->{'FNumber'} =~ /^(\d+)\.(\d+)$/) {
813                 my $f = $info->{'FNumber'};
814                 if ($f >= 10) {
815                         push @classic_fields, [ (sprintf "f/%.0f", $f), $manual_aperture ];
816                 } else {
817                         push @classic_fields, [ (sprintf "f/%.1f", $f), $manual_aperture ];
818                 }
819         }
820
821 #       Apache2::ServerUtil->server->log_error(join(':', keys %$info));
822
823         my $iso = undef;
824         if (defined($info->{'NikonD1-ISOSetting'})) {
825                 $iso = $info->{'NikonD1-ISOSetting'};
826         } elsif (defined($info->{'ISO'})) {
827                 $iso = $info->{'ISO'};
828         } elsif (defined($info->{'ISOSetting'})) {
829                 $iso = $info->{'ISOSetting'};
830         }
831         if (defined($iso) && $iso =~ /(\d+)/) {
832                 push @classic_fields, [ $1 . " ISO", 0 ];
833         }
834
835         if (defined($info->{'ExposureBiasValue'}) && $info->{'ExposureBiasValue'} ne "0") {
836                 push @classic_fields, [ $info->{'ExposureBiasValue'} . " EV", 0 ];
837         } elsif (defined($info->{'ExposureCompensation'}) && $info->{'ExposureCompensation'} ne "0") {
838                 push @classic_fields, [ $info->{'ExposureCompensation'} . " EV", 0 ];
839         }
840
841         # Now piece together the rest
842         my @parts = ();
843         
844         if (defined($info->{'DateTimeOriginal'}) &&
845             $info->{'DateTimeOriginal'} =~ /^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)$/
846             && $1 >= 1990) {
847                 push @parts, [ "$1-$2-$3 $4:$5", 0 ];
848         }
849
850         if (defined($info->{'Model'})) {
851                 my $model = $info->{'Model'}; 
852                 $model =~ s/^\s+//;
853                 $model =~ s/\s+$//;
854
855                 push @parts, [ "\x{00A0}\x{2013}\x{00A0}", 0 ] if (scalar @parts > 0);
856                 push @parts, [ $model, 0 ];
857         }
858         
859         # classic fields
860         if (scalar @classic_fields > 0) {
861                 push @parts, [ "\x{00A0}\x{2013}\x{00A0}", 0 ] if (scalar @parts > 0);
862
863                 my $first_elem = 1;
864                 for my $field (@classic_fields) {
865                         push @parts, [ ', ', 0 ] if (!$first_elem);
866                         $first_elem = 0;
867                         push @parts, $field;
868                 }
869         }
870
871         if (defined($info->{'Flash'})) {
872                 if ($info->{'Flash'} =~ /did not fire/i ||
873                     $info->{'Flash'} =~ /no flash/i ||
874                     $info->{'Flash'} =~ /not fired/i ||
875                     $info->{'Flash'} =~ /Off/)  {
876                         push @parts, [ "\x{00A0}\x{2013}\x{00A0}", 0 ] if (scalar @parts > 0);
877                         push @parts, [ "No flash", 0 ];
878                 } elsif ($info->{'Flash'} =~ /fired/i ||
879                          $info->{'Flash'} =~ /On/) {
880                         push @parts, [ "\x{00A0}\x{2013}\x{00A0}", 0 ] if (scalar @parts > 0);
881                         push @parts, [ "Flash", 0 ];
882                 } else {
883                         push @parts, [ "\x{00A0}\x{2013}\x{00A0}", 0 ] if (scalar @parts > 0);
884                         push @parts, [ $info->{'Flash'}, 0 ];
885                 }
886         }
887
888         return 0 if (scalar @parts == 0);
889
890         # Find the required width
891         my $th = 0;
892         my $tw = 0;
893
894         for my $part (@parts) {
895                 my $font;
896                 if ($part->[1]) {
897                         $font = '/usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf';
898                 } else {
899                         $font = '/usr/share/fonts/truetype/msttcorefonts/Arial.ttf';
900                 }
901
902                 my (undef, undef, $h, undef, $w) = ($img->QueryFontMetrics(text=>$part->[0], font=>$font, pointsize=>12*$dpr));
903
904                 $tw += $w;
905                 $th = $h if ($h > $th);
906         }
907
908         return 0 if ($tw > $img->Get('columns'));
909
910         my $x = 0;
911         my $y = $img->Get('rows') - 24*$dpr;
912
913         # Hit exact DCT blocks
914         $y -= ($y % 8);
915
916         my $points = sprintf "%u,%u %u,%u", $x, $y, ($img->Get('columns') - 1), ($img->Get('rows') - 1);
917         my $lpoints = sprintf "%u,%u %u,%u", $x, $y, ($img->Get('columns') - 1), $y;
918         $img->Draw(primitive=>'rectangle', stroke=>'white', fill=>'white', points=>$points);
919         $img->Draw(primitive=>'line', stroke=>'black', strokewidth=>$dpr, points=>$lpoints);
920
921         # Start writing out the text
922         $x = ($img->Get('columns') - $tw) / 2;
923
924         my $room = ($img->Get('rows') - $dpr - $y - $th);
925         $y = ($img->Get('rows') - $dpr) - $room/2;
926         
927         for my $part (@parts) {
928                 my $font;
929                 if ($part->[1]) {
930                         $font = '/usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf';
931                 } else {
932                         $font = '/usr/share/fonts/truetype/msttcorefonts/Arial.ttf';
933                 }
934                 $img->Annotate(text=>$part->[0], font=>$font, pointsize=>12*$dpr, x=>int($x), y=>int($y));
935                 $x += ($img->QueryFontMetrics(text=>$part->[0], font=>$font, pointsize=>12*$dpr))[4];
936         }
937
938         return 1;
939 }
940
941 sub gcd {
942         my ($a, $b) = @_;
943         return $a if ($b == 0);
944         return gcd($b, $a % $b);
945 }
946
947 sub add_new_event {
948         my ($r, $res, $dbh, $id, $date, $desc) = @_;
949         my @errors = ();
950
951         if (!defined($id) || $id =~ /^\s*$/ || $id !~ /^([a-zA-Z0-9-]+)$/) {
952                 push @errors, "Manglende eller ugyldig ID.";
953         }
954         if (!defined($date) || $date =~ /^\s*$/ || $date =~ /[<>&]/ || length($date) > 100) {
955                 push @errors, "Manglende eller ugyldig dato.";
956         }
957         if (!defined($desc) || $desc =~ /^\s*$/ || $desc =~ /[<>&]/ || length($desc) > 100) {
958                 push @errors, "Manglende eller ugyldig beskrivelse.";
959         }
960         
961         if (scalar @errors > 0) {
962                 return @errors;
963         }
964                 
965         my $vhost = Sesse::pr0n::Common::get_server_name($r);
966         $dbh->do("INSERT INTO events (event,date,name,vhost) VALUES (?,?,?,?)",
967                 undef, $id, $date, $desc, $vhost)
968                 or return ("Kunne ikke sette inn ny hendelse" . $dbh->errstr);
969         $dbh->do("INSERT INTO last_picture_cache (vhost,event,last_picture) VALUES (?,?,NULL)",
970                 undef, $vhost, $id)
971                 or return ("Kunne ikke sette inn ny cache-rad" . $dbh->errstr);
972         purge_cache($r, $res, "/");
973
974         return ();
975 }
976
977 sub guess_charset {
978         my $text = shift;
979         my $decoded;
980
981         eval {
982                 $decoded = Encode::decode("utf-8", $text, Encode::FB_CROAK);
983         };
984         if ($@) {
985                 $decoded = Encode::decode("iso8859-1", $text);
986         }
987
988         return $decoded;
989 }
990
991 # Depending on your front-end cache, you might want to get creative somehow here.
992 # This example assumes you have a front-end cache and it can translate an X-Pr0n-Purge
993 # regex tacked onto a request into something useful. The elements given in
994 # should not be regexes, though, as e.g. Squid will not be able to handle that.
995 sub purge_cache {
996         my ($r, $res, @elements) = @_;
997         return if (scalar @elements == 0);
998
999         my @pe = ();
1000         for my $elem (@elements) {
1001                 log_info($r, "Purging $elem");
1002                 (my $e = $elem) =~ s/[.+*|()]/\\$&/g;
1003                 push @pe, $e;
1004         }
1005
1006         my $regex = "^";
1007         if (scalar @pe == 1) {
1008                 $regex .= $pe[0];
1009         } else {
1010                 $regex .= "(" . join('|', @pe) . ")";
1011         }
1012         $regex .= "(\\?.*)?\$";
1013         $res->header('X-Pr0n-Purge' => $regex);
1014 }
1015                                 
1016 # Find a list of all cache URLs for a given image, given what we have on disk.
1017 sub get_all_cache_urls {
1018         my ($r, $dbh, $id) = @_;
1019         my $dir = POSIX::floor($id / 256);
1020         my @ret = ();
1021
1022         my $q = $dbh->prepare('SELECT event, filename FROM images WHERE id=?')
1023                 or die "Couldn't prepare: " . $dbh->errstr;
1024         $q->execute($id)
1025                 or die "Couldn't find event and filename: " . $dbh->errstr;
1026         my $ref = $q->fetchrow_hashref; 
1027         my $event = $ref->{'event'};
1028         my $filename = $ref->{'filename'};
1029         $q->finish;
1030
1031         my $base = $Sesse::pr0n::Config::image_base . "cache/$dir";
1032         for my $file (<$base/$id-*>) {
1033                 my $fname = File::Basename::basename($file);
1034                 if ($fname =~ /^$id-mipmap-.*\.jpg$/) {
1035                         # Mipmaps don't have an URL, ignore
1036                 } elsif ($fname =~ /^$id--1--1\.jpg$/) {
1037                         push @ret, "/$event/$filename";
1038                 } elsif ($fname =~ /^$id-(\d+)-(\d+)\.jpg$/) {
1039                         push @ret, "/$event/$1x$2/$filename";
1040                 } elsif ($fname =~ /^$id-(\d+)-(\d+)-nobox\.jpg$/) {
1041                         push @ret, "/$event/$1x$2/nobox/$filename";
1042                 } elsif ($fname =~ /^$id--1--1-box\.png$/) {
1043                         push @ret, "/$event/box/$filename";
1044                 } elsif ($fname =~ /^$id-(\d+)-(\d+)-box\.png$/) {
1045                         push @ret, "/$event/$1x$2/box/$filename";
1046                 } else {
1047                         log_warn($r, "Couldn't find a purging URL for $fname");
1048                 }
1049         }
1050
1051         return @ret;
1052 }
1053
1054 sub set_last_modified {
1055         my ($res, $mtime) = @_;
1056
1057         my $str = POSIX::strftime("%a, %d %b %Y %H:%M:%S GMT", gmtime($mtime));
1058         $res->header('Last-Modified' => $str);
1059 }
1060
1061 sub get_server_name {
1062         my $r = shift;
1063         my $host = $r->env->{'HTTP_HOST'};
1064         $host =~ s/:.*//;
1065         return $host;
1066 }
1067
1068 sub log_info {
1069         my ($r, $msg) = @_;
1070         if (defined($r->{'logger'})) {
1071                 $r->logger->({ level => 'info', message => $msg });
1072         } else {
1073                 print STDERR "[INFO] $msg\n";
1074         }
1075 }
1076
1077 sub log_warn {
1078         my ($r, $msg) = @_;
1079         if (defined($r->{'logger'})) {
1080                 $r->logger->({ level => 'warn', message => $msg });
1081         } else {
1082                 print STDERR "[WARN] $msg\n";
1083         }
1084 }
1085
1086 sub log_error {
1087         my ($r, $msg) = @_;
1088         if (defined($r->{'logger'})) {
1089                 $r->logger->({ level => 'error', message => $msg });
1090         } else {
1091                 print STDERR "[ERROR] $msg\n";
1092         }
1093 }
1094
1095 1;
1096
1097