]> git.sesse.net Git - pr0n/blob - perl/Sesse/pr0n/Common.pm
Improve flash/no flash detection.
[pr0n] / perl / Sesse / pr0n / Common.pm
1 package Sesse::pr0n::Common;
2 use strict;
3 use warnings;
4
5 use Sesse::pr0n::Templates;
6 use Sesse::pr0n::Overload;
7
8 use Apache2::RequestRec (); # for $r->content_type
9 use Apache2::RequestIO ();  # for $r->print
10 use Apache2::Const -compile => ':common';
11 use Apache2::Log;
12 use ModPerl::Util;
13
14 use DBI;
15 use DBD::Pg;
16 use Image::Magick;
17 use POSIX;
18 use Digest::SHA1;
19 use MIME::Base64;
20 use MIME::Types;
21 use LWP::Simple;
22 # use Image::Info;
23 use Image::ExifTool;
24
25 BEGIN {
26         use Exporter ();
27         our ($VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS);
28
29         use Sesse::pr0n::Config;
30         eval {
31                 require Sesse::pr0n::Config_local;
32         };
33
34         $VERSION     = "v2.05";
35         @ISA         = qw(Exporter);
36         @EXPORT      = qw(&error &dberror);
37         %EXPORT_TAGS = qw();
38         @EXPORT_OK   = qw(&error &dberror);
39
40         our $dbh = DBI->connect("dbi:Pg:dbname=pr0n;host=" . $Sesse::pr0n::Config::db_host,
41                 $Sesse::pr0n::Config::db_username, $Sesse::pr0n::Config::db_password)
42                 or die "Couldn't connect to PostgreSQL database: " . DBI->errstr;
43         our $mimetypes = new MIME::Types;
44         
45         Apache2::ServerUtil->server->log_error("Initializing pr0n $VERSION");
46 }
47 END {
48         our $dbh;
49         $dbh->disconnect;
50 }
51
52 our ($dbh, $mimetypes);
53
54 sub error {
55         my ($r,$err,$status,$title) = @_;
56
57         if (!defined($status) || !defined($title)) {
58                 $status = 500;
59                 $title = "Internal server error";
60         }
61         
62         $r->content_type('text/html; charset=utf-8');
63         $r->status($status);
64
65         header($r, $title);
66         $r->print("    <p>Error: $err</p>\n");
67         footer($r);
68
69         $r->log->error($err);
70
71         ModPerl::Util::exit();
72 }
73
74 sub dberror {
75         my ($r,$err) = @_;
76         error($r, "$err (DB error: " . $dbh->errstr . ")");
77 }
78
79 sub header {
80         my ($r,$title) = @_;
81
82         $r->content_type("text/html; charset=utf-8");
83
84         # Fetch quote if we're itk-bilder.samfundet.no
85         my $quote = "";
86         if ($r->get_server_name eq 'itk-bilder.samfundet.no') {
87                 $quote = LWP::Simple::get("http://itk.samfundet.no/include/quotes.cli.php");
88                 $quote = "Error: Could not fetch quotes." if (!defined($quote));
89         }
90         Sesse::pr0n::Templates::print_template($r, "header", { title => $title, quotes => $quote });
91 }
92
93 sub footer {
94         my ($r) = @_;
95         Sesse::pr0n::Templates::print_template($r, "footer",
96                 { version => $Sesse::pr0n::Common::VERSION });
97 }
98
99 sub scale_aspect {
100         my ($width, $height, $thumbxres, $thumbyres) = @_;
101
102         unless ($thumbxres >= $width &&
103                 $thumbyres >= $height) {
104                 my $sfh = $width / $thumbxres;
105                 my $sfv = $height / $thumbyres;
106                 if ($sfh > $sfv) {
107                         $width  /= $sfh;
108                         $height /= $sfh;
109                 } else {
110                         $width  /= $sfv;
111                         $height /= $sfv;
112                 }
113                 $width = POSIX::floor($width);
114                 $height = POSIX::floor($height);
115         }
116
117         return ($width, $height);
118 }
119
120 sub print_link {
121         my ($r, $title, $baseurl, $param, $defparam) = @_;
122         my $str = "<a href=\"$baseurl";
123         my $first = 1;
124
125         while (my ($key, $value) = each %$param) {
126                 next unless defined($value);
127                 next if (defined($defparam->{$key}) && $value == $defparam->{$key});
128         
129                 $str .= ($first) ? "?" : '&amp;';
130                 $str .= "$key=$value";
131                 $first = 0;
132         }
133         
134         $str .= "\">$title</a>";
135         $r->print($str);
136 }
137
138 sub get_dbh {
139         # Check that we are alive
140         if (!(defined($dbh) && $dbh->ping)) {
141                 # Try to reconnect
142                 Apache2::ServerUtil->server->log_error("Lost contact with PostgreSQL server, trying to reconnect...");
143                 unless ($dbh = DBI->connect("dbi:Pg:dbname=pr0n;host=" . $Sesse::pr0n::Config::db_host,
144                         $Sesse::pr0n::Config::db_user, $Sesse::pr0n::Config::db_password)) {
145                         $dbh = undef;
146                         die "Couldn't connect to PostgreSQL database";
147                 }
148         }
149
150         return $dbh;
151 }
152
153 sub get_base {
154         my $r = shift;
155         return $r->dir_config('ImageBase');
156 }
157
158 sub get_disk_location {
159         my ($r, $id) = @_;
160         my $dir = POSIX::floor($id / 256);
161         return get_base($r) . "images/$dir/$id.jpg";
162 }
163
164 sub get_cache_location {
165         my ($r, $id, $width, $height, $infobox) = @_;
166         my $dir = POSIX::floor($id / 256);
167
168         if ($infobox) {
169                 return get_base($r) . "cache/$dir/$id-$width-$height.jpg";
170         } else {
171                 return get_base($r) . "cache/$dir/$id-$width-$height-nobox.jpg";
172         }
173 }
174
175 sub update_width_height {
176         my ($r, $id, $width, $height) = @_;
177
178         # Also find the date taken if appropriate (from the EXIF tag etc.)
179         my $info = Image::ExifTool::ImageInfo(get_disk_location($r, $id));
180         my $datetime = undef;
181
182         if (defined($info->{'DateTimeOriginal'})) {
183                 # Parse the date and time over to ISO format
184                 if ($info->{'DateTimeOriginal'} =~ /^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)$/ && $1 > 1990) {
185                         $datetime = "$1-$2-$3 $4:$5:$6";
186                 }
187         }
188
189         $dbh->do('UPDATE images SET width=?, height=?, date=? WHERE id=?',
190                  undef, $width, $height, $datetime, $id)
191                 or die "Couldn't update width/height in SQL: $!";
192
193         # update the last_picture cache as well (this should of course be done
194         # via a trigger, but this is less complicated :-) )
195         $dbh->do('UPDATE last_picture_cache SET last_picture=GREATEST(last_picture, ?) FROM images WHERE event=events.id) WHERE id=(SELECT event FROM images WHERE id=?)',
196                 undef, $datetime, $id)
197                 or die "Couldn't update last_picture in SQL: $!";
198 }
199
200 sub check_access {
201         my $r = shift;
202
203         my $auth = $r->headers_in->{'authorization'};
204         if (!defined($auth) || $auth !~ m#^Basic ([a-zA-Z0-9+/]+=*)$#) {
205                 $r->content_type('text/plain; charset=utf-8');
206                 $r->status(401);
207                 $r->headers_out->{'www-authenticate'} = 'Basic realm="pr0n.sesse.net"';
208                 $r->print("Need authorization\n");
209                 return undef;
210         }
211         
212         #return qw(sesse Sesse);
213
214         my ($user, $pass) = split /:/, MIME::Base64::decode_base64($1);
215         # WinXP is stupid :-)
216         if ($user =~ /^.*\\(.*)$/) {
217                 $user = $1;
218         }
219
220         my $takenby;
221         if ($user =~ /^([a-zA-Z0-9^_-]+)\@([a-zA-Z0-9^_-]+)$/) {
222                 $user = $1;
223                 $takenby = $2;
224         } else {
225                 ($takenby = $user) =~ s/^([a-zA-Z])/uc($1)/e;
226         }
227         
228         my $oldpass = $pass;
229         $pass = Digest::SHA1::sha1_base64($pass);
230         my $ref = $dbh->selectrow_hashref('SELECT count(*) AS auth FROM users WHERE username=? AND sha1password=? AND vhost=?',
231                 undef, $user, $pass, $r->get_server_name);
232         if ($ref->{'auth'} != 1) {
233                 $r->content_type('text/plain; charset=utf-8');
234                 warn "No user exists, only $auth";
235                 $r->status(401);
236                 $r->headers_out->{'www-authenticate'} = 'Basic realm="pr0n.sesse.net"';
237                 $r->print("Authorization failed");
238                 $r->log->warn("Authentication failed for $user/$takenby");
239                 return undef;
240         }
241
242         $r->log->info("Authentication succeeded for $user/$takenby");
243
244         return ($user, $takenby);
245 }
246         
247 sub stat_image {
248         my ($r, $event, $filename) = (@_);
249         my $ref = $dbh->selectrow_hashref(
250                 'SELECT id FROM images WHERE event=? AND filename=?',
251                 undef, $event, $filename);
252         if (!defined($ref)) {
253                 return (undef, undef, undef);
254         }
255         return stat_image_from_id($r, $ref->{'id'});
256 }
257
258 sub stat_image_from_id {
259         my ($r, $id) = @_;
260
261         my $fname = get_disk_location($r, $id);
262         my (undef, undef, undef, undef, undef, undef, undef, $size, undef, $mtime) = stat($fname)
263                 or return (undef, undef, undef);
264
265         return ($fname, $size, $mtime);
266 }
267
268 sub ensure_cached {
269         my ($r, $filename, $id, $dbwidth, $dbheight, $infobox, $xres, $yres, @otherres) = @_;
270
271         my $fname = get_disk_location($r, $id);
272         unless (defined($xres) && ($xres < $dbheight || $yres < $dbwidth || $dbwidth == -1 || $dbheight == -1 || $xres == -1)) {
273                 return ($fname, 0);
274         }
275
276         my $cachename = get_cache_location($r, $id, $xres, $yres, $infobox);
277         if (! -r $cachename or (-M $cachename > -M $fname)) {
278                 # If we are in overload mode (aka Slashdot mode), refuse to generate
279                 # new thumbnails.
280                 if (Sesse::pr0n::Overload::is_in_overload($r)) {
281                         $r->log->warn("In overload mode, not scaling $id to $xres x $yres");
282                         error($r, 'System is in overload mode, not doing any scaling');
283                 }
284         
285                 # Need to generate the cache; read in the image
286                 my $magick = new Image::Magick;
287                 my $info = Image::ExifTool::ImageInfo($fname);
288
289                 # NEF files aren't autodetected
290                 $fname = "NEF:$fname" if ($filename =~ /\.nef$/i);
291                 $r->log->warn("Generating $fname for $filename");
292                 
293                 my $err = $magick->Read($fname);
294                 if ($err) {
295                         $r->log->warn("$fname: $err");
296                         $err =~ /(\d+)/;
297                         if ($1 >= 400) {
298                                 undef $magick;
299                                 error($r, "$fname: $err");
300                         }
301                 }
302
303                 # If we use ->[0] unconditionally, text rendering (!) seems to crash
304                 my $img = (scalar @$magick > 1) ? $magick->[0] : $magick;
305
306                 my $width = $img->Get('columns');
307                 my $height = $img->Get('rows');
308
309                 # Update the SQL database if it doesn't contain the required info
310                 if ($dbwidth == -1 || $dbheight == -1) {
311                         $r->log->info("Updating width/height for $id: $width x $height");
312                         update_width_height($r, $id, $width, $height);
313                 }
314                         
315                 # We always want RGB JPEGs
316                 if ($img->Get('Colorspace') eq "CMYK") {
317                         $img->Set(colorspace=>'RGB');
318                 }
319
320                 while (defined($xres) && defined($yres)) {
321                         my ($nxres, $nyres) = (shift @otherres, shift @otherres);
322                         my $cachename = get_cache_location($r, $id, $xres, $yres, $infobox);
323                         
324                         my $cimg;
325                         if (defined($nxres) && defined($nyres)) {
326                                 # we have more resolutions to scale, so don't throw
327                                 # the image away
328                                 $cimg = $img->Clone();
329                         } else {
330                                 $cimg = $img;
331                         }
332                 
333                         my ($nwidth, $nheight) = scale_aspect($width, $height, $xres, $yres);
334
335                         # Use lanczos (sharper) for heavy scaling, mitchell (faster) otherwise
336                         my $filter = 'Mitchell';
337                         my $quality = 90;
338
339                         if ($width / $nwidth > 8.0 || $height / $nheight > 8.0) {
340                                 $filter = 'Lanczos';
341                                 $quality = 80;
342                         }
343
344                         if ($xres != -1) {
345                                 $cimg->Resize(width=>$nwidth, height=>$nheight, filter=>$filter);
346                         }
347
348                         if (($nwidth >= 800 || $nheight >= 600 || $xres == -1) && $infobox == 1) {
349                                 make_infobox($cimg, $info, $r);
350                         }
351
352                         # Strip EXIF tags etc.
353                         $cimg->Strip();
354
355                         $err = $cimg->write(filename=>$cachename, quality=>$quality);
356
357                         undef $cimg;
358
359                         ($xres, $yres) = ($nxres, $nyres);
360
361                         $r->log->info("New cache: $nwidth x $nheight for $id.jpg");
362                 }
363                 
364                 undef $magick;
365                 undef $img;
366                 if ($err) {
367                         $r->log->warn("$fname: $err");
368                         $err =~ /(\d+)/;
369                         if ($1 >= 400) {
370                                 @$magick = ();
371                                 error($r, "$fname: $err");
372                         }
373                 }
374         }
375         return ($cachename, 1);
376 }
377
378 sub get_mimetype_from_filename {
379         my $filename = shift;
380         my MIME::Type $type = $mimetypes->mimeTypeOf($filename);
381         $type = "image/jpeg" if (!defined($type));
382         return $type;
383 }
384
385 sub make_infobox {
386         my ($img, $info, $r) = @_;
387         
388         my @lines = ();
389         my @classic_fields = ();
390         
391         if (defined($info->{'DateTimeOriginal'}) &&
392             $info->{'DateTimeOriginal'} =~ /^(\d{4}):(\d\d):(\d\d) (\d\d):(\d\d):(\d\d)$/
393             && $1 >= 1990) {
394                 push @lines, "$1-$2-$3 $4:$5";
395         }
396
397         push @lines, $info->{'Model'} if (defined($info->{'Model'}));
398         
399         # classic fields
400         if (defined($info->{'FocalLength'}) && $info->{'FocalLength'} =~ /^(\d+)(?:\.\d+)?(?:mm)?$/) {
401                 push @classic_fields, ($1 . "mm");
402         } elsif (defined($info->{'FocalLength'}) && $info->{'FocalLength'} =~ /^(\d+)\/(\d+)$/) {
403                 push @classic_fields, (sprintf "%.1fmm", ($1/$2));
404         }
405         if (defined($info->{'ExposureTime'}) && $info->{'ExposureTime'} =~ /^(\d+)\/(\d+)$/) {
406                 my ($a, $b) = ($1, $2);
407                 my $gcd = gcd($a, $b);
408                 push @classic_fields, ($a/$gcd . "/" . $b/$gcd . "s");
409         }
410         if (defined($info->{'FNumber'}) && $info->{'FNumber'} =~ /^(\d+)\/(\d+)$/) {
411                 my $f = $1/$2;
412                 if ($f >= 10) {
413                         push @classic_fields, (sprintf "f/%.0f", $f);
414                 } else {
415                         push @classic_fields, (sprintf "f/%.1f", $f);
416                 }
417         } elsif (defined($info->{'FNumber'}) && $info->{'FNumber'} =~ /^(\d+)\.(\d+)$/) {
418                 my $f = $info->{'FNumber'};
419                 if ($f >= 10) {
420                         push @classic_fields, (sprintf "f/%.0f", $f);
421                 } else {
422                         push @classic_fields, (sprintf "f/%.1f", $f);
423                 }
424         }
425
426 #       Apache2::ServerUtil->server->log_error(join(':', keys %$info));
427
428         if (defined($info->{'NikonD1-ISOSetting'})) {
429                 push @classic_fields, $info->{'NikonD1-ISOSetting'}->[1] . " ISO";
430         } elsif (defined($info->{'ISOSetting'})) {
431                 push @classic_fields, $info->{'ISOSetting'} . " ISO";
432         }
433
434         push @classic_fields, $info->{'ExposureBiasValue'} . " EV" if (defined($info->{'ExposureBiasValue'}) && $info->{'ExposureBiasValue'} != 0);
435         
436         if (scalar @classic_fields > 0) {
437                 push @lines, join(', ', @classic_fields);
438         }
439
440         if (defined($info->{'Flash'})) {
441                 if ($info->{'Flash'} =~ /did not fire/i ||
442                     $info->{'Flash'} =~ /no flash/i ||
443                     $info->{'Flash'} =~ /not fired/i)  {
444                         push @lines, "No flash";
445                 } elsif ($info->{'Flash'} =~ /fired/i) {
446                         push @lines, "Flash";
447                 } else {
448                         push @lines, $info->{'Flash'};
449                 }
450         }
451
452         return if (scalar @lines == 0);
453
454         # OK, this sucks. Let's make something better :-)
455         @lines = ( join(" - ", @lines) );
456
457         # Find the required width
458         my $th = 14 * (scalar @lines) + 6;
459         my $tw = 1;
460
461         for my $line (@lines) {
462                 my $this_w = ($img->QueryFontMetrics(text=>$line, font=>'/usr/share/fonts/truetype/msttcorefonts/Arial.ttf', pointsize=>12))[4];
463                 $tw = $this_w if ($this_w >= $tw);
464         }
465
466         $tw += 6;
467
468         # Round up so we hit exact DCT blocks
469         $tw += 8 - ($tw % 8) unless ($tw % 8 == 0);
470         $th += 8 - ($th % 8) unless ($th % 8 == 0);
471         
472         return if ($tw > $img->Get('columns'));
473
474 #       my $x = $img->Get('columns') - 8 - $tw;
475 #       my $y = $img->Get('rows') - 8 - $th;
476         my $x = 0;
477         my $y = $img->Get('rows') - $th;
478         $tw = $img->Get('columns');
479
480         $x -= $x % 8;
481         $y -= $y % 8;
482
483         my $points = sprintf "%u,%u %u,%u", $x, $y, ($x+$tw-1), ($img->Get('rows') - 1);
484         my $lpoints = sprintf "%u,%u %u,%u", $x, $y, ($x+$tw-1), $y;
485 #       $img->Draw(primitive=>'rectangle', stroke=>'black', fill=>'white', points=>$points);
486         $img->Draw(primitive=>'rectangle', stroke=>'white', fill=>'white', points=>$points);
487         $img->Draw(primitive=>'line', stroke=>'black', points=>$lpoints);
488
489         my $i = -(scalar @lines - 1)/2.0;
490         my $xc = $x + $tw / 2 - $img->Get('columns')/2;
491         my $yc = ($y + $img->Get('rows'))/2 - $img->Get('rows')/2;
492         #my $yc = ($y + $img->Get('rows'))/4;
493         my $yi = $th / (scalar @lines);
494         
495         $lpoints = sprintf "%u,%u %u,%u", $x, $yc + $img->Get('rows')/2, ($x+$tw-1), $yc+$img->Get('rows')/2;
496
497         for my $line (@lines) {
498                 $img->Annotate(text=>$line, font=>'/usr/share/fonts/truetype/msttcorefonts/Arial.ttf', pointsize=>12, gravity=>'Center',
499                 # $img->Annotate(text=>$line, font=>'Helvetica', pointsize=>12, gravity=>'Center',
500                         x=>int($xc), y=>int($yc + $i * $yi));
501         
502                 $i = $i + 1;
503         }
504 }
505
506 sub gcd {
507         my ($a, $b) = @_;
508         return $a if ($b == 0);
509         return gcd($b, $a % $b);
510 }
511
512 1;
513
514