]> git.sesse.net Git - pr0n/blob - perl/Sesse/pr0n/Image.pm
23b7d1b60c93fc12d63afb6f120581f0f6f9c1bc
[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         #}
51                 
52         $dbwidth = -1 unless defined($dbwidth);
53         $dbheight = -1 unless defined($dbheight);
54
55         # Scale if we need to do so
56         my ($fname,$thumbnail) = Sesse::pr0n::Common::ensure_cached($r, $filename, $id, $dbwidth, $dbheight, $infobox, $xres, $yres);
57
58         # Output the image to the user
59         my $mime_type;
60         if ($thumbnail) {
61                 $mime_type = "image/jpeg";
62         } else {
63                 $mime_type = Sesse::pr0n::Common::get_mimetype_from_filename($filename);
64         }
65         $r->content_type($mime_type);
66         
67         my (undef, undef, undef, undef, undef, undef, undef, $size, undef, $mtime) = stat($fname)
68                 or error($r, "stat of $fname: $!");
69                 
70         $r->set_content_length($size);
71         $r->set_last_modified($mtime);
72
73         # If the client can use cache, by all means do so
74         if ((my $rc = $r->meets_conditions) != Apache2::Const::OK) {
75                 return $rc;
76         }
77
78         $r->sendfile($fname);
79
80         return Apache2::Const::OK;
81 }
82
83 1;
84
85