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