]> git.sesse.net Git - pr0n/blob - perl/Sesse/pr0n/Common.pm
Remove some unneeded parameters from check_401.
[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::SHA1;
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.70";
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 => Encode::decode_utf8($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 get_mipmap_location {
235         my ($r, $id, $width, $height) = @_;
236         my $dir = POSIX::floor($id / 256);
237
238         return get_base($r) . "cache/$dir/$id-mipmap-$width-$height.jpg";
239 }
240
241 sub update_image_info {
242         my ($r, $id, $width, $height) = @_;
243
244         # Also find the date taken if appropriate (from the EXIF tag etc.)
245         my $exiftool = Image::ExifTool->new;
246         $exiftool->ExtractInfo(get_disk_location($r, $id));
247         my $info = $exiftool->GetInfo();
248         my $datetime = undef;
249                         
250         if (defined($info->{'DateTimeOriginal'})) {
251                 # Parse the date and time over to ISO format
252                 if ($info->{'DateTimeOriginal'} =~ /^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)(?:\+\d\d:\d\d)?$/ && $1 > 1990) {
253                         $datetime = "$1-$2-$3 $4:$5:$6";
254                 }
255         }
256
257         {
258                 local $dbh->{AutoCommit} = 0;
259
260                 # EXIF information
261                 $dbh->do('DELETE FROM exif_info WHERE image=?',
262                         undef, $id)
263                         or die "Couldn't delete old EXIF information in SQL: $!";
264
265                 my $q = $dbh->prepare('INSERT INTO exif_info (image,key,value) VALUES (?,?,?)')
266                         or die "Couldn't prepare inserting EXIF information: $!";
267
268                 for my $key (keys %$info) {
269                         next if ref $info->{$key};
270                         $q->execute($id, $key, guess_charset($info->{$key}))
271                                 or die "Couldn't insert EXIF information in database: $!";
272                 }
273
274                 # Model/Lens
275                 my $model = $exiftool->GetValue('Model', 'PrintConv');
276                 my $lens = $exiftool->GetValue('Lens', 'PrintConv');
277                 $lens = $exiftool->GetValue('LensSpec', 'PrintConv') if (!defined($lens));
278
279                 $model =~ s/^\s*//;
280                 $model =~ s/\s*$//;
281                 $model = undef if (length($model) == 0);
282
283                 $lens =~ s/^\s*//;
284                 $lens =~ s/\s*$//;
285                 $lens = undef if (length($lens) == 0);
286                 
287                 # Now update the main table with the information we've got
288                 $dbh->do('UPDATE images SET width=?, height=?, date=?, model=?, lens=? WHERE id=?',
289                          undef, $width, $height, $datetime, $model, $lens, $id)
290                         or die "Couldn't update width/height in SQL: $!";
291                 
292                 # Tags
293                 my @tags = $exiftool->GetValue('Keywords', 'ValueConv');
294                 $dbh->do('DELETE FROM tags WHERE image=?',
295                         undef, $id)
296                         or die "Couldn't delete old tag information in SQL: $!";
297
298                 $q = $dbh->prepare('INSERT INTO tags (image,tag) VALUES (?,?)')
299                         or die "Couldn't prepare inserting tag information: $!";
300
301
302                 for my $tag (@tags) {
303                         $q->execute($id, guess_charset($tag))
304                                 or die "Couldn't insert tag information in database: $!";
305                 }
306
307                 # update the last_picture cache as well (this should of course be done
308                 # via a trigger, but this is less complicated :-) )
309                 $dbh->do('UPDATE last_picture_cache SET last_picture=GREATEST(last_picture, ?) WHERE (vhost,event)=(SELECT vhost,event FROM images WHERE id=?)',
310                         undef, $datetime, $id)
311                         or die "Couldn't update last_picture in SQL: $!";
312         }
313 }
314
315 sub check_access {
316         my $r = shift;
317         
318         #return qw(sesse Sesse);
319
320         my $auth = $r->headers_in->{'authorization'};
321         if (!defined($auth)) {
322                 output_401($r);
323                 return undef;
324         } 
325         $r->log->warn("Auth: $auth");
326         if ($auth =~ /^Basic ([a-zA-Z0-9+\/]+=*)$/) {
327                 return check_basic_auth($r, $1);
328         }       
329         if ($auth =~ /^Digest (.*)$/) {
330                 return check_digest_auth($r, $1);
331         }
332         output_401($r);
333         return undef;
334 }
335
336 sub output_401 {
337         my ($r, %options) = @_;
338         $r->content_type('text/plain; charset=utf-8');
339         $r->status(401);
340         $r->headers_out->{'www-authenticate'} = 'Basic realm="pr0n.sesse.net"';
341
342         if ($options{'DigestAuth'} // 1) {
343                 # We make our nonce similar to the scheme of RFC2069 section 2.1.1,
344                 # with some changes: We don't care about client IP (these have a nasty
345                 # tendency to change from request to request when load-balancing
346                 # proxies etc. are being used), and we use HMAC instead of simple
347                 # hashing simply because that's a better signing method.
348                 #
349                 # NOTE: For some weird reason, Digest::HMAC_SHA1 doesn't like taking
350                 # the output from time directly (it gives a different response), so we
351                 # forcefully stringify the argument.
352                 my $ts = time;
353                 my $nonce = Digest::HMAC_SHA1->hmac_sha1_hex($ts . "", $Sesse::pr0n::Config::db_password);
354                 my $stale_nonce_text = "";
355                 $stale_nonce_text = ", stale=\"true\"" if ($options{'StaleNonce'} // 0);
356
357                 $r->headers_out->{'www-authenticate'} =
358                         "Digest realm=\"pr0n.sesse.net\", " .
359                         "nonce=\"$nonce\", " .
360                         "opaque=\"$ts\", " .
361                         "qop=\"auth\"" . $stale_nonce_text;  # FIXME: support auth-int
362         }
363
364         $r->print("Need authorization\n");
365 }
366
367 sub check_basic_auth {
368         my ($r, $auth) = @_;    
369
370         my ($raw_user, $pass) = split /:/, MIME::Base64::decode_base64($auth);
371         my ($user, $takenby) = extract_takenby($raw_user);
372         
373         my $oldpass = $pass;
374         $pass = Digest::SHA1::sha1_base64($pass);
375         my $ref = $dbh->selectrow_hashref('SELECT count(*) AS auth FROM users WHERE username=? AND sha1password=? AND vhost=?',
376                 undef, $user, $pass, $r->get_server_name);
377         if ($ref->{'auth'} != 1) {
378                 $r->content_type('text/plain; charset=utf-8');
379                 $r->log->warn("Authentication failed for $user/$takenby");
380                 output_401($r);
381                 return undef;
382         }
383
384         $r->log->info("Authentication succeeded for $user/$takenby");
385
386         return ($user, $takenby);
387 }
388
389 sub check_digest_auth {
390         my ($r, $auth) = @_;    
391
392         # We're a bit more liberal than RFC2069 in the parsing here, allowing
393         # quoted strings everywhere.
394         my %auth = ();
395         while ($auth =~ s/^ ([a-zA-Z]+)                # key
396                          =                 
397                          (                            
398                            [^",]*                     # either something that doesn't contain comma or quotes
399                          |
400                            " ( [^"\\] | \\ . ) * "    # or a full quoted string
401                          )
402                          (?: (?: , \s* ) + | $ )      # delimiter(s), or end of string
403                         //x) {
404                 my ($key, $value) = ($1, $2);
405                 if ($value =~ /^"(.*)"$/) {
406                         $value = $1;
407                         $value =~ s/\\(.)/$1/g;
408                 }
409                 $auth{$key} = $value;
410         }
411         unless (exists($auth{'username'}) &&
412                 exists($auth{'uri'}) &&
413                 exists($auth{'nonce'}) &&
414                 exists($auth{'opaque'}) &&
415                 exists($auth{'response'})) {
416                 output_401($r);
417                 return undef;
418         }
419         if ($r->uri ne $auth{'uri'}) {  
420                 output_401($r);
421                 return undef;
422         }
423         
424         # Verify that the opaque data does indeed look like a timestamp, and that the nonce
425         # is indeed a signed version of it.
426         if ($auth{'opaque'} !~ /^\d+$/) {
427                 output_401($r);
428                 return undef;
429         }
430         my $compare_nonce = Digest::HMAC_SHA1->hmac_sha1_hex($auth{'opaque'}, $Sesse::pr0n::Config::db_password);
431         if ($auth{'nonce'} ne $compare_nonce) {
432                 output_401($r);
433                 return undef;
434         }
435
436         # Now look up the user's HA1 from the database, and calculate HA2.      
437         my ($user, $takenby) = extract_takenby($auth{'username'});
438         my $ref = $dbh->selectrow_hashref('SELECT digest_ha1_hex FROM users WHERE username=? AND vhost=?',
439                 undef, $user, $r->get_server_name);
440         if (!defined($ref)) {
441                 output_401($r);
442                 return undef;
443         }
444         if (!defined($ref->{'digest_ha1_hex'}) || $ref->{'digest_ha1_hex'} !~ /^[0-9a-f]{32}$/) {
445                 # A user that exists but has empty HA1 is a user that's not
446                 # ready for digest auth, so we hack it and resend 401,
447                 # only this time without digest auth.
448                 output_401($r, DigestAuth => 0);
449                 return undef;
450         }
451         my $ha1 = $ref->{'digest_ha1_hex'};
452         my $ha2 = Digest::MD5::md5_hex($r->method . ':' . $auth{'uri'});
453         my $response;
454         if (exists($auth{'qop'}) && $auth{'qop'} eq 'auth') {
455                 unless (exists($auth{'nc'}) && exists($auth{'cnonce'})) {
456                         output_401($r);
457                         return undef;
458                 }       
459
460                 $response = $ha1;
461                 $response .= ':' . $auth{'nonce'};
462                 $response .= ':' . $auth{'nc'};
463                 $response .= ':' . $auth{'cnonce'};
464                 $response .= ':' . $auth{'qop'};
465                 $response .= ':' . $ha2;
466         } else {
467                 $response = $ha1;
468                 $response .= ':' . $auth{'nonce'};
469                 $response .= ':' . $ha2;
470         }
471         if ($auth{'response'} ne Digest::MD5::md5_hex($response)) {     
472                 output_401($r);
473                 return undef;
474         }
475
476         # OK, everything is good, and there's only one thing we need to check: That the nonce
477         # isn't too old. If it is, but everything else is ok, we tell the browser that and it
478         # will re-encrypt with the new nonce.
479         my $timediff = time - $auth{'opaque'};
480         if ($timediff < 0 || $timediff > 300) {
481                 output_401($r, StaleNonce => 1);
482                 return undef;
483         }
484
485         return ($user, $takenby);
486 }
487
488 sub extract_takenby {
489         my ($user) = shift;
490
491         # WinXP is stupid :-)
492         if ($user =~ /^.*\\(.*)$/) {
493                 $user = $1;
494         }
495
496         my $takenby;
497         if ($user =~ /^([a-zA-Z0-9^_-]+)\@([a-zA-Z0-9^_-]+)$/) {
498                 $user = $1;
499                 $takenby = $2;
500         } else {
501                 ($takenby = $user) =~ s/^([a-zA-Z])/uc($1)/e;
502         }
503
504         return ($user, $takenby);
505 }
506         
507 sub stat_image {
508         my ($r, $event, $filename) = (@_);
509         my $ref = $dbh->selectrow_hashref(
510                 'SELECT id FROM images WHERE event=? AND filename=?',
511                 undef, $event, $filename);
512         if (!defined($ref)) {
513                 return (undef, undef, undef);
514         }
515         return stat_image_from_id($r, $ref->{'id'});
516 }
517
518 sub stat_image_from_id {
519         my ($r, $id) = @_;
520
521         my $fname = get_disk_location($r, $id);
522         my (undef, undef, undef, undef, undef, undef, undef, $size, undef, $mtime) = stat($fname)
523                 or return (undef, undef, undef);
524
525         return ($fname, $size, $mtime);
526 }
527
528 # Takes in an image ID and a set of resolutions, and returns (generates if needed)
529 # the smallest mipmap larger than the largest of them.
530 sub make_mipmap {
531         my ($r, $filename, $id, $dbwidth, $dbheight, $can_use_qscale, @res) = @_;
532         my ($img, $mmimg, $width, $height);
533         
534         my $physical_fname = get_disk_location($r, $id);
535
536         # If we don't know the size, we'll need to read it in anyway
537         if (!defined($dbwidth) || !defined($dbheight)) {
538                 $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight, $can_use_qscale);
539                 $width = $img->Get('columns');
540                 $height = $img->Get('rows');
541         } else {
542                 $width = $dbwidth;
543                 $height = $dbheight;
544         }
545
546         # Generate the list of mipmaps
547         my @mmlist = ();
548         
549         my $mmwidth = $width;
550         my $mmheight = $height;
551
552         while ($mmwidth > 1 || $mmheight > 1) {
553                 my $new_mmwidth = POSIX::floor($mmwidth / 2);           
554                 my $new_mmheight = POSIX::floor($mmheight / 2);         
555
556                 $new_mmwidth = 1 if ($new_mmwidth < 1);
557                 $new_mmheight = 1 if ($new_mmheight < 1);
558
559                 my $large_enough = 1;
560                 for my $i (0..($#res/2)) {
561                         my ($xres, $yres) = ($res[$i*2], $res[$i*2+1]);
562                         if ($xres == -1 || $xres > $new_mmwidth || $yres > $new_mmheight) {
563                                 $large_enough = 0;
564                                 last;
565                         }
566                 }
567                                 
568                 last if (!$large_enough);
569
570                 $mmwidth = $new_mmwidth;
571                 $mmheight = $new_mmheight;
572
573                 push @mmlist, [ $mmwidth, $mmheight ];
574         }
575                 
576         # Ensure that all of them are OK
577         my $last_good_mmlocation;
578         for my $i (0..$#mmlist) {
579                 my $last = ($i == $#mmlist);
580                 my $mmres = $mmlist[$i];
581
582                 my $mmlocation = get_mipmap_location($r, $id, $mmres->[0], $mmres->[1]);
583                 if (! -r $mmlocation or (-M $mmlocation > -M $physical_fname)) {
584                         if (!defined($img)) {
585                                 if (defined($last_good_mmlocation)) {
586                                         if ($can_use_qscale) {
587                                                 $img = Sesse::pr0n::QscaleProxy->new;
588                                         } else {
589                                                 $img = Image::Magick->new;
590                                         }
591                                         $img->Read($last_good_mmlocation);
592                                 } else {
593                                         $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight, $can_use_qscale);
594                                 }
595                         }
596                         my $cimg;
597                         if ($last) {
598                                 $cimg = $img;
599                         } else {
600                                 $cimg = $img->Clone();
601                         }
602                         $r->log->info("Making mipmap for $id: " . $mmres->[0] . " x " . $mmres->[1]);
603                         $cimg->Resize(width=>$mmres->[0], height=>$mmres->[1], filter=>'Lanczos', 'sampling-factor'=>'1x1');
604                         $cimg->Strip();
605                         my $err = $cimg->write(
606                                 filename => $mmlocation,
607                                 quality => 95,
608                                 'sampling-factor' => '1x1'
609                         );
610                         $img = $cimg;
611                 } else {
612                         $last_good_mmlocation = $mmlocation;
613                 }
614                 if ($last && !defined($img)) {
615                         # OK, read in the smallest one
616                         if ($can_use_qscale) {
617                                 $img = Sesse::pr0n::QscaleProxy->new;
618                         } else {
619                                 $img = Image::Magick->new;
620                         }
621                         my $err = $img->Read($mmlocation);
622                 }
623         }
624
625         if (!defined($img)) {
626                 $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight, $can_use_qscale);
627         }
628         return $img;
629 }
630
631 sub read_original_image {
632         my ($r, $filename, $id, $dbwidth, $dbheight, $can_use_qscale) = @_;
633
634         my $physical_fname = get_disk_location($r, $id);
635
636         # Read in the original image
637         my $magick;
638         if ($can_use_qscale && ($filename =~ /\.jpeg$/i || $filename =~ /\.jpg$/i)) {
639                 $magick = Sesse::pr0n::QscaleProxy->new;
640         } else {
641                 $magick = Image::Magick->new;
642         }
643         my $err;
644
645         # ImageMagick can handle NEF files, but it does it by calling dcraw as a delegate.
646         # The delegate support is rather broken and causes very odd stuff to happen when
647         # more than one thread does this at the same time. Thus, we simply do it ourselves.
648         if ($filename =~ /\.(nef|cr2)$/i) {
649                 # this would suffice if ImageMagick gets to fix their handling
650                 # $physical_fname = "NEF:$physical_fname";
651                 
652                 open DCRAW, "-|", "dcraw", "-w", "-c", $physical_fname
653                         or error("dcraw: $!");
654                 $err = $magick->Read(file => \*DCRAW);
655                 close(DCRAW);
656         } else {
657                 # We always want YCbCr JPEGs. Setting this explicitly here instead of using
658                 # RGB is slightly faster (no colorspace conversion needed) and works equally
659                 # well for our uses, as long as we don't need to draw an information box,
660                 # which trickles several ImageMagick bugs related to colorspace handling.
661                 # (Ideally we'd be able to keep the image subsampled and
662                 # planar, but that would probably be difficult for ImageMagick to expose.)
663                 #if (!$infobox) {
664                 #       $magick->Set(colorspace=>'YCbCr');
665                 #}
666                 $err = $magick->Read($physical_fname);
667         }
668         
669         if ($err) {
670                 $r->log->warn("$physical_fname: $err");
671                 $err =~ /(\d+)/;
672                 if ($1 >= 400) {
673                         undef $magick;
674                         error($r, "$physical_fname: $err");
675                 }
676         }
677
678         # If we use ->[0] unconditionally, text rendering (!) seems to crash
679         my $img;
680         if (ref($magick)) {
681                 $img = $magick;
682         } else {
683                 $img = (scalar @$magick > 1) ? $magick->[0] : $magick;
684         }
685
686         my $width = $img->Get('columns');
687         my $height = $img->Get('rows');
688
689         # Update the SQL database if it doesn't contain the required info
690         if (!defined($dbwidth) || !defined($dbheight)) {
691                 $r->log->info("Updating width/height for $id: $width x $height");
692                 update_image_info($r, $id, $width, $height);
693         }
694
695         return $img;
696 }
697
698 sub ensure_cached {
699         my ($r, $filename, $id, $dbwidth, $dbheight, $infobox, $xres, $yres, @otherres) = @_;
700
701         my $fname = get_disk_location($r, $id);
702         if ($infobox ne 'box') {
703                 unless (defined($xres) && (!defined($dbwidth) || !defined($dbheight) || $xres < $dbheight || $yres < $dbwidth || $xres == -1)) {
704                         return ($fname, undef);
705                 }
706         }
707
708         my $cachename = get_cache_location($r, $id, $xres, $yres, $infobox);
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                         $r->log->warn("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                 # If we're being asked for just the box, make a new image with just the box.
719                 # We don't care about @otherres since each of these images are
720                 # already pretty cheap to generate, but we need the exact width so we can make
721                 # one in the right size.
722                 if ($infobox eq 'box') {
723                         my ($img, $width, $height);
724
725                         # This is slow, but should fortunately almost never happen, so don't bother
726                         # special-casing it.
727                         if (!defined($dbwidth) || !defined($dbheight)) {
728                                 $img = read_original_image($r, $filename, $id, $dbwidth, $dbheight, 0);
729                                 $width = $img->Get('columns');
730                                 $height = $img->Get('rows');
731                                 @$img = ();
732                         } else {
733                                 $img = Image::Magick->new;
734                                 $width = $dbwidth;
735                                 $height = $dbheight;
736                         }
737                         
738                         if (defined($xres) && defined($yres)) {
739                                 ($width, $height) = scale_aspect($width, $height, $xres, $yres);
740                         }
741                         $height = 24;
742                         $img->Set(size=>($width . "x" . $height));
743                         $img->Read('xc:white');
744                                 
745                         my $info = Image::ExifTool::ImageInfo($fname);
746                         if (make_infobox($img, $info, $r)) {
747                                 $img->Quantize(colors=>16, dither=>'False');
748
749                                 # Since the image is grayscale, ImageMagick overrides us and writes this
750                                 # as grayscale anyway, but at least we get rid of the alpha channel this
751                                 # way.
752                                 $img->Set(type=>'Palette');
753                         } else {
754                                 # Not enough room for the text, make a tiny dummy transparent infobox
755                                 @$img = ();
756                                 $img->Set(size=>"1x1");
757                                 $img->Read('null:');
758
759                                 $width = 1;
760                                 $height = 1;
761                         }
762                                 
763                         $err = $img->write(filename => $cachename, quality => 90, depth => 8);
764                         $r->log->info("New infobox cache: $width x $height for $id.jpg");
765                         
766                         return ($cachename, 'image/png');
767                 }
768
769                 my $can_use_qscale = 0;
770                 if ($infobox eq 'nobox') {
771                         $can_use_qscale = 1;
772                 }
773
774                 my $img = make_mipmap($r, $filename, $id, $dbwidth, $dbheight, $can_use_qscale, $xres, $yres, @otherres);
775
776                 while (defined($xres) && defined($yres)) {
777                         my ($nxres, $nyres) = (shift @otherres, shift @otherres);
778                         my $cachename = get_cache_location($r, $id, $xres, $yres, $infobox);
779                         
780                         my $cimg;
781                         if (defined($nxres) && defined($nyres)) {
782                                 # we have more resolutions to scale, so don't throw
783                                 # the image away
784                                 $cimg = $img->Clone();
785                         } else {
786                                 $cimg = $img;
787                         }
788                 
789                         my $width = $img->Get('columns');
790                         my $height = $img->Get('rows');
791                         my ($nwidth, $nheight) = scale_aspect($width, $height, $xres, $yres);
792
793                         # Use lanczos (sharper) for heavy scaling, mitchell (faster) otherwise
794                         my $filter = 'Mitchell';
795                         my $quality = 90;
796                         my $sf = undef;
797
798                         if ($width / $nwidth > 8.0 || $height / $nheight > 8.0) {
799                                 $filter = 'Lanczos';
800                                 $quality = 85;
801                                 $sf = "1x1";
802                         }
803
804                         if ($xres != -1) {
805                                 $cimg->Resize(width=>$nwidth, height=>$nheight, filter=>$filter, 'sampling-factor'=>$sf);
806                         }
807
808                         if (($nwidth >= 800 || $nheight >= 600 || $xres == -1) && $infobox ne 'nobox') {
809                                 my $info = Image::ExifTool::ImageInfo($fname);
810                                 make_infobox($cimg, $info, $r);
811                         }
812
813                         # Strip EXIF tags etc.
814                         $cimg->Strip();
815
816                         {
817                                 my %parms = (
818                                         filename => $cachename,
819                                         quality => $quality
820                                 );
821                                 if (($nwidth >= 640 && $nheight >= 480) ||
822                                     ($nwidth >= 480 && $nheight >= 640)) {
823                                         $parms{'interlace'} = 'Plane';
824                                 }
825                                 if (defined($sf)) {
826                                         $parms{'sampling-factor'} = $sf;
827                                 }
828                                 $err = $cimg->write(%parms);
829                         }
830
831                         undef $cimg;
832
833                         ($xres, $yres) = ($nxres, $nyres);
834
835                         $r->log->info("New cache: $nwidth x $nheight for $id.jpg");
836                 }
837                 
838                 undef $img;
839                 if ($err) {
840                         $r->log->warn("$fname: $err");
841                         $err =~ /(\d+)/;
842                         if ($1 >= 400) {
843                                 #@$magick = ();
844                                 error($r, "$fname: $err");
845                         }
846                 }
847         }
848         return ($cachename, 'image/jpeg');
849 }
850
851 sub get_mimetype_from_filename {
852         my $filename = shift;
853         my MIME::Type $type = $mimetypes->mimeTypeOf($filename);
854         $type = "image/jpeg" if (!defined($type));
855         return $type;
856 }
857
858 sub make_infobox {
859         my ($img, $info, $r) = @_;
860
861         # The infobox is of the form
862         # "Time - date - focal length, shutter time, aperture, sensitivity, exposure bias - flash",
863         # possibly with some parts omitted -- the middle part is known as the "classic
864         # fields"; note the comma separation. Every field has an associated "bold flag"
865         # in the second part.
866         
867         my $shutter_priority = (defined($info->{'ExposureProgram'}) &&
868                 $info->{'ExposureProgram'} =~ /shutter\b.*\bpriority/i);
869         my $aperture_priority = (defined($info->{'ExposureProgram'}) &&
870                 $info->{'ExposureProgram'} =~ /aperture\b.*\bpriority/i);
871
872         my @classic_fields = ();
873         if (defined($info->{'FocalLength'}) && $info->{'FocalLength'} =~ /^(\d+)(?:\.\d+)?\s*(?:mm)?$/) {
874                 push @classic_fields, [ $1 . "mm", 0 ];
875         } elsif (defined($info->{'FocalLength'}) && $info->{'FocalLength'} =~ /^(\d+)\/(\d+)$/) {
876                 push @classic_fields, [ (sprintf "%.1fmm", ($1/$2)), 0 ];
877         }
878
879         if (defined($info->{'ExposureTime'}) && $info->{'ExposureTime'} =~ /^(\d+)\/(\d+)$/) {
880                 my ($a, $b) = ($1, $2);
881                 my $gcd = gcd($a, $b);
882                 push @classic_fields, [ $a/$gcd . "/" . $b/$gcd . "s", $shutter_priority ];
883         } elsif (defined($info->{'ExposureTime'}) && $info->{'ExposureTime'} =~ /^(\d+(?:\.\d+))$/) {
884                 push @classic_fields, [ $1 . "s", $shutter_priority ];
885         }
886
887         if (defined($info->{'FNumber'}) && $info->{'FNumber'} =~ /^(\d+)\/(\d+)$/) {
888                 my $f = $1/$2;
889                 if ($f >= 10) {
890                         push @classic_fields, [ (sprintf "f/%.0f", $f), $aperture_priority ];
891                 } else {
892                         push @classic_fields, [ (sprintf "f/%.1f", $f), $aperture_priority ];
893                 }
894         } elsif (defined($info->{'FNumber'}) && $info->{'FNumber'} =~ /^(\d+)\.(\d+)$/) {
895                 my $f = $info->{'FNumber'};
896                 if ($f >= 10) {
897                         push @classic_fields, [ (sprintf "f/%.0f", $f), $aperture_priority ];
898                 } else {
899                         push @classic_fields, [ (sprintf "f/%.1f", $f), $aperture_priority ];
900                 }
901         }
902
903 #       Apache2::ServerUtil->server->log_error(join(':', keys %$info));
904
905         my $iso = undef;
906         if (defined($info->{'NikonD1-ISOSetting'})) {
907                 $iso = $info->{'NikonD1-ISOSetting'};
908         } elsif (defined($info->{'ISO'})) {
909                 $iso = $info->{'ISO'};
910         } elsif (defined($info->{'ISOSetting'})) {
911                 $iso = $info->{'ISOSetting'};
912         }
913         if (defined($iso) && $iso =~ /(\d+)/) {
914                 push @classic_fields, [ $1 . " ISO", 0 ];
915         }
916
917         if (defined($info->{'ExposureBiasValue'}) && $info->{'ExposureBiasValue'} ne "0") {
918                 push @classic_fields, [ $info->{'ExposureBiasValue'} . " EV", 0 ];
919         } elsif (defined($info->{'ExposureCompensation'}) && $info->{'ExposureCompensation'} != 0) {
920                 push @classic_fields, [ $info->{'ExposureCompensation'} . " EV", 0 ];
921         }
922
923         # Now piece together the rest
924         my @parts = ();
925         
926         if (defined($info->{'DateTimeOriginal'}) &&
927             $info->{'DateTimeOriginal'} =~ /^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)$/
928             && $1 >= 1990) {
929                 push @parts, [ "$1-$2-$3 $4:$5", 0 ];
930         }
931
932         if (defined($info->{'Model'})) {
933                 my $model = $info->{'Model'}; 
934                 $model =~ s/^\s+//;
935                 $model =~ s/\s+$//;
936
937                 push @parts, [ ' - ', 0 ] if (scalar @parts > 0);
938                 push @parts, [ $model, 0 ];
939         }
940         
941         # classic fields
942         if (scalar @classic_fields > 0) {
943                 push @parts, [ ' - ', 0 ] if (scalar @parts > 0);
944
945                 my $first_elem = 1;
946                 for my $field (@classic_fields) {
947                         push @parts, [ ', ', 0 ] if (!$first_elem);
948                         $first_elem = 0;
949                         push @parts, $field;
950                 }
951         }
952
953         if (defined($info->{'Flash'})) {
954                 if ($info->{'Flash'} =~ /did not fire/i ||
955                     $info->{'Flash'} =~ /no flash/i ||
956                     $info->{'Flash'} =~ /not fired/i ||
957                     $info->{'Flash'} =~ /Off/)  {
958                         push @parts, [ ' - ', 0 ] if (scalar @parts > 0);
959                         push @parts, [ "No flash", 0 ];
960                 } elsif ($info->{'Flash'} =~ /fired/i ||
961                          $info->{'Flash'} =~ /On/) {
962                         push @parts, [ ' - ', 0 ] if (scalar @parts > 0);
963                         push @parts, [ "Flash", 0 ];
964                 } else {
965                         push @parts, [ ' - ', 0 ] if (scalar @parts > 0);
966                         push @parts, [ $info->{'Flash'}, 0 ];
967                 }
968         }
969
970         return 0 if (scalar @parts == 0);
971
972         # Find the required width
973         my $th = 0;
974         my $tw = 0;
975
976         for my $part (@parts) {
977                 my $font;
978                 if ($part->[1]) {
979                         $font = '/usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf';
980                 } else {
981                         $font = '/usr/share/fonts/truetype/msttcorefonts/Arial.ttf';
982                 }
983
984                 my (undef, undef, $h, undef, $w) = ($img->QueryFontMetrics(text=>$part->[0], font=>$font, pointsize=>12));
985
986                 $tw += $w;
987                 $th = $h if ($h > $th);
988         }
989
990         return 0 if ($tw > $img->Get('columns'));
991
992         my $x = 0;
993         my $y = $img->Get('rows') - 24;
994
995         # Hit exact DCT blocks
996         $y -= ($y % 8);
997
998         my $points = sprintf "%u,%u %u,%u", $x, $y, ($img->Get('columns') - 1), ($img->Get('rows') - 1);
999         my $lpoints = sprintf "%u,%u %u,%u", $x, $y, ($img->Get('columns') - 1), $y;
1000         $img->Draw(primitive=>'rectangle', stroke=>'white', fill=>'white', points=>$points);
1001         $img->Draw(primitive=>'line', stroke=>'black', points=>$lpoints);
1002
1003         # Start writing out the text
1004         $x = ($img->Get('columns') - $tw) / 2;
1005
1006         my $room = ($img->Get('rows') - 1 - $y - $th);
1007         $y = ($img->Get('rows') - 1) - $room/2;
1008         
1009         for my $part (@parts) {
1010                 my $font;
1011                 if ($part->[1]) {
1012                         $font = '/usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf';
1013                 } else {
1014                         $font = '/usr/share/fonts/truetype/msttcorefonts/Arial.ttf';
1015                 }
1016                 $img->Annotate(text=>$part->[0], font=>$font, pointsize=>12, x=>int($x), y=>int($y));
1017                 $x += ($img->QueryFontMetrics(text=>$part->[0], font=>$font, pointsize=>12))[4];
1018         }
1019
1020         return 1;
1021 }
1022
1023 sub gcd {
1024         my ($a, $b) = @_;
1025         return $a if ($b == 0);
1026         return gcd($b, $a % $b);
1027 }
1028
1029 sub add_new_event {
1030         my ($r, $dbh, $id, $date, $desc) = @_;
1031         my @errors = ();
1032
1033         if (!defined($id) || $id =~ /^\s*$/ || $id !~ /^([a-zA-Z0-9-]+)$/) {
1034                 push @errors, "Manglende eller ugyldig ID.";
1035         }
1036         if (!defined($date) || $date =~ /^\s*$/ || $date =~ /[<>&]/ || length($date) > 100) {
1037                 push @errors, "Manglende eller ugyldig dato.";
1038         }
1039         if (!defined($desc) || $desc =~ /^\s*$/ || $desc =~ /[<>&]/ || length($desc) > 100) {
1040                 push @errors, "Manglende eller ugyldig beskrivelse.";
1041         }
1042         
1043         if (scalar @errors > 0) {
1044                 return @errors;
1045         }
1046                 
1047         my $vhost = $r->get_server_name;
1048         $dbh->do("INSERT INTO events (event,date,name,vhost) VALUES (?,?,?,?)",
1049                 undef, $id, $date, $desc, $vhost)
1050                 or return ("Kunne ikke sette inn ny hendelse" . $dbh->errstr);
1051         $dbh->do("INSERT INTO last_picture_cache (vhost,event,last_picture) VALUES (?,?,NULL)",
1052                 undef, $vhost, $id)
1053                 or return ("Kunne ikke sette inn ny cache-rad" . $dbh->errstr);
1054         purge_cache($r, "/");
1055
1056         return ();
1057 }
1058
1059 sub guess_charset {
1060         my $text = shift;
1061         my $decoded;
1062
1063         eval {
1064                 $decoded = Encode::decode("utf-8", $text, Encode::FB_CROAK);
1065         };
1066         if ($@) {
1067                 $decoded = Encode::decode("iso8859-1", $text);
1068         }
1069
1070         return $decoded;
1071 }
1072
1073 # Depending on your front-end cache, you might want to get creative somehow here.
1074 # This example assumes you have a front-end cache and it can translate an X-Pr0n-Purge
1075 # regex tacked onto a request into something useful. The elements given in
1076 # should not be regexes, though, as e.g. Squid will not be able to handle that.
1077 sub purge_cache {
1078         my ($r, @elements) = @_;
1079         return if (scalar @elements == 0);
1080
1081         my @pe = ();
1082         for my $elem (@elements) {
1083                 $r->log->info("Purging $elem");
1084                 (my $e = $elem) =~ s/[.+*|()]/\\$&/g;
1085                 push @pe, $e;
1086         }
1087
1088         my $regex = "^";
1089         if (scalar @pe == 1) {
1090                 $regex .= $pe[0];
1091         } else {
1092                 $regex .= "(" . join('|', @pe) . ")";
1093         }
1094         $regex .= "(\\?.*)?\$";
1095         $r->headers_out->{'X-Pr0n-Purge'} = $regex;
1096
1097         $r->log->info($r->headers_out->{'X-Pr0n-Purge'});
1098 }
1099                                 
1100 # Find a list of all cache URLs for a given image, given what we have on disk.
1101 sub get_all_cache_urls {
1102         my ($r, $dbh, $id) = @_;
1103         my $dir = POSIX::floor($id / 256);
1104         my @ret = ();
1105
1106         my $q = $dbh->prepare('SELECT event, filename FROM images WHERE id=?')
1107                 or die "Couldn't prepare: " . $dbh->errstr;
1108         $q->execute($id)
1109                 or die "Couldn't find event and filename: " . $dbh->errstr;
1110         my $ref = $q->fetchrow_hashref; 
1111         my $event = $ref->{'event'};
1112         my $filename = $ref->{'filename'};
1113         $q->finish;
1114
1115         my $base = get_base($r) . "cache/$dir";
1116         for my $file (<$base/$id-*>) {
1117                 my $fname = File::Basename::basename($file);
1118                 if ($fname =~ /^$id-mipmap-.*\.jpg$/) {
1119                         # Mipmaps don't have an URL, ignore
1120                 } elsif ($fname =~ /^$id--1--1\.jpg$/) {
1121                         push @ret, "/$event/$filename";
1122                 } elsif ($fname =~ /^$id-(\d+)-(\d+)\.jpg$/) {
1123                         push @ret, "/$event/$1x$2/$filename";
1124                 } elsif ($fname =~ /^$id-(\d+)-(\d+)-nobox\.jpg$/) {
1125                         push @ret, "/$event/$1x$2/nobox/$filename";
1126                 } elsif ($fname =~ /^$id-(\d+)-(\d+)-box\.png$/) {
1127                         push @ret, "/$event/$1x$2/box/$filename";
1128                 } else {
1129                         $r->log->warning("Couldn't find a purging URL for $fname");
1130                 }
1131         }
1132
1133         return @ret;
1134 }
1135
1136 1;
1137
1138