]> git.sesse.net Git - pr0n/blob - perl/Sesse/pr0n/Image.pm
Yet more issues with the -1 width/height transformation -- this time, fix
[pr0n] / perl / Sesse / pr0n / Image.pm
1 package Sesse::pr0n::Image;
2 use strict;
3 use warnings;
4
5 use Sesse::pr0n::Common qw(error dberror);
6 use POSIX;
7
8 sub handler {
9         my $r = shift;
10         my $dbh = Sesse::pr0n::Common::get_dbh();
11
12 #       if ($r->connection->remote_ip() eq '80.212.251.227') {
13 #               die "Har du lest FAQen?";
14 #       }
15
16         # Find the event and file name
17         my ($event,$filename,$xres,$yres);
18         my $infobox = 1;
19         if ($r->uri =~ m#^/([a-zA-Z0-9-]+)/original/(nobox/)?([a-zA-Z0-9._()-]+)$#) {
20                 $event = $1;
21                 $filename = $3;
22         } elsif ($r->uri =~ m#^/([a-zA-Z0-9-]+)/(\d+)x(\d+)/(nobox/)?([a-zA-Z0-9._()-]+)$#) {
23                 $event = $1;
24                 $filename = $5;
25                 $xres = $2;
26                 $yres = $3;
27                 $infobox = 0 if (defined($4));
28         } elsif ($r->uri =~ m#^/([a-zA-Z0-9-]+)/(nobox/)?([a-zA-Z0-9._()-]+)$#) {
29                 $event = $1;
30                 $filename = $3;
31                 $xres = -1;
32                 $yres = -1;
33                 $infobox = 0 if (defined($2));
34         }
35
36         my ($id, $dbwidth, $dbheight);
37         #if ($event eq 'single' && $filename =~ /^(\d+)\.jpeg$/) {
38         #       $id = $1;
39         #} else {
40         
41         # Look it up in the database
42         my $ref = $dbh->selectrow_hashref('SELECT id,width,height FROM images WHERE event=? AND vhost=? AND filename=?',
43                 undef, $event, $r->get_server_name, $filename);
44         error($r, "Could not find $event/$filename", 404, "File not found") unless (defined($ref));
45
46         $id = $ref->{'id'};
47         $dbwidth = $ref->{'width'};
48         $dbheight = $ref->{'height'};
49
50         # Scale if we need to do so
51         my ($fname,$thumbnail) = Sesse::pr0n::Common::ensure_cached($r, $filename, $id, $dbwidth, $dbheight, $infobox, $xres, $yres);
52
53         # Output the image to the user
54         my $mime_type;
55         if ($thumbnail) {
56                 $mime_type = "image/jpeg";
57         } else {
58                 $mime_type = Sesse::pr0n::Common::get_mimetype_from_filename($filename);
59         }
60         $r->content_type($mime_type);
61         
62         my (undef, undef, undef, undef, undef, undef, undef, $size, undef, $mtime) = stat($fname)
63                 or error($r, "stat of $fname: $!");
64                 
65         $r->set_content_length($size);
66         $r->set_last_modified($mtime);
67
68         # If the client can use cache, by all means do so
69         if ((my $rc = $r->meets_conditions) != Apache2::Const::OK) {
70                 return $rc;
71         }
72
73         $r->sendfile($fname);
74
75         return Apache2::Const::OK;
76 }
77
78 1;
79
80