]> git.sesse.net Git - pr0n/blobdiff - perl/Sesse/pr0n/Image.pm
Add a concept where an image can be a rendering of another, which means it is not...
[pr0n] / perl / Sesse / pr0n / Image.pm
index d1743b41d5c456428e4ce78cf0a19e803f0ff065..f12a15891792ed1ba0e195e815c4c157df2d1b29 100644 (file)
@@ -13,77 +13,80 @@ sub handler {
 #              die "Har du lest FAQen?";
 #      }
 
-       # Find the event and file name
-       my ($event,$filename,$xres,$yres);
-       my $infobox = 1;
-       if ($r->uri =~ m#^/([a-zA-Z0-9-]+)/original/(nobox/)?([a-zA-Z0-9._-]+)$#) {
+       # Find the event and file name (nobox/ is for compatibility with legacy URLs).
+       my ($event,$filename,$xres,$yres,$dpr);
+       my $infobox = 0;
+       if ($r->path_info =~ m#^/([a-zA-Z0-9-]+)/original/((?:no)?box/)?([a-zA-Z0-9._()-]+)$#) {
                $event = $1;
                $filename = $3;
-       } elsif ($r->uri =~ m#^/([a-zA-Z0-9-]+)/(\d+)x(\d+)/(nobox/)?([a-zA-Z0-9._-]+)$#) {
+               $infobox = 1 if (defined($2) && $2 eq 'box/');
+       } elsif ($r->path_info =~ m#^/([a-zA-Z0-9-]+)/(\d+)x(\d+)(?:\@(\d+(?:\.\d+)?))?/((?:no)?box/)?([a-zA-Z0-9._()-]+)$#) {
                $event = $1;
-               $filename = $5;
+               $filename = $6;
                $xres = $2;
                $yres = $3;
-               $infobox = 0 if (defined($4));
-       } elsif ($r->uri =~ m#^/([a-zA-Z0-9-]+)/(nobox/)?([a-zA-Z0-9._-]+)$#) {
+               $dpr = $4;
+               $infobox = 1 if (defined($5) && $5 eq 'box/');
+       } elsif ($r->path_info =~ m#^/([a-zA-Z0-9-]+)/((?:no)?box/)?([a-zA-Z0-9._()-]+)$#) {
                $event = $1;
                $filename = $3;
                $xres = -1;
                $yres = -1;
-               $infobox = 0 if (defined($2));
+               $infobox = 1 if (defined($2) && $2 eq 'box/');
        }
+       $dpr //= 1;
 
        my ($id, $dbwidth, $dbheight);
-       if ($event eq 'single' && $filename =~ /^(\d+)\.jpeg$/) {
-               $id = $1;
-       } else {
-               # Alas, we obviously need to do this :-)
-               # my $evq = $dbh->prepare('SELECT count(*) AS numev FROM events WHERE id=? AND vhost=?')
-               # or die "prepare(): $!";
-               # my $ref = $dbh->selectrow_hashref($evq, undef, $event, $r->get_server_name)
-               #       or dberror($r, "Could not look up $event");
-               # $ref->{'numev'} == 1
-               #       or error($r, "Could not find $event", 404, "File not found");
+       #if ($event eq 'single' && $filename =~ /^(\d+)\.jpeg$/) {
+       #       $id = $1;
+       #} else {
        
-               # Look it up in the database
-               my $ref = $dbh->selectrow_hashref('SELECT id,width,height FROM images WHERE event=? AND vhost=? AND filename=?',
-                       undef, $event, $r->get_server_name, $filename);
-               error($r, "Could not find $event/$filename", 404, "File not found") unless (defined($ref));
+       # Look it up in the database
+       my $ref = $dbh->selectrow_hashref('SELECT id,render_id,width,height FROM images WHERE event=? AND vhost=? AND filename=?',
+               undef, $event, Sesse::pr0n::Common::get_server_name($r), $filename);
+       return error($r, "Could not find $event/$filename", 404, "File not found") unless (defined($ref));
 
-               $id = $ref->{'id'};
-               $dbwidth = $ref->{'width'};
-               $dbheight = $ref->{'height'};
+       if (defined($xres) && defined($yres) && defined($ref->{'render_id'}) && !$infobox) {
+               # We have a render, we're not asked for the original, and we do not have infobox.
+               $ref = $dbh->selectrow_hashref('SELECT id,filename,width,height FROM images WHERE id=?', 
+                       undef, $ref->{'render_id'});
+               return error($r, "Could not find render of $event/$filename", 404, "File not found") unless (defined($ref));
+               $filename = $ref->{'filename'};
        }
-               
-       $dbwidth = -1 unless defined($dbwidth);
-       $dbheight = -1 unless defined($dbheight);
+
+       $id = $ref->{'id'};
+       $dbwidth = $ref->{'width'};
+       $dbheight = $ref->{'height'};
 
        # Scale if we need to do so
-       my ($fname,$thumbnail) = Sesse::pr0n::Common::ensure_cached($r, $filename, $id, $dbwidth, $dbheight, $infobox, $xres, $yres);
+       my ($fname, $mime_type);
+       if ($infobox) {
+               ($fname, $mime_type) = Sesse::pr0n::Common::ensure_infobox_cached($r, $filename, $id, $dbwidth, $dbheight, $dpr, $xres, $yres);
+       } else {
+               ($fname, $mime_type) = Sesse::pr0n::Common::ensure_cached($r, $filename, $id, $dbwidth, $dbheight, $xres, $yres);
+       }
 
        # Output the image to the user
-       my $mime_type;
-       if ($thumbnail) {
-               $mime_type = "image/jpeg";
-       } else {
+       my $res = Plack::Response->new(200);
+
+       if (!defined($mime_type)) {
                $mime_type = Sesse::pr0n::Common::get_mimetype_from_filename($filename);
        }
-       $r->content_type($mime_type);
+       $res->content_type($mime_type);
        
        my (undef, undef, undef, undef, undef, undef, undef, $size, undef, $mtime) = stat($fname)
-                or error($r, "stat of $fname: $!");
+                or return error($r, "stat of $fname: $!");
                
-       $r->set_content_length($size);
-       $r->set_last_modified($mtime);
-
-       # If the client can use cache, by all means do so
-       if ((my $rc = $r->meets_conditions) != Apache2::Const::OK) {
-               return $rc;
-       }
+       $res->content_length($size);
+       Sesse::pr0n::Common::set_last_modified($res, $mtime);
 
-       $r->sendfile($fname);
+       # # If the client can use cache, by all means do so
+       #if ((my $rc = $r->meets_conditions) != Apache2::Const::OK) {
+       #       return $rc;
+       #}
 
-       return Apache2::Const::OK;
+       $res->content(IO::File::WithPath->new($fname));
+       return $res;
 }
 
 1;