]> git.sesse.net Git - pr0n/blobdiff - perl/Sesse/pr0n/Image.pm
Many more fixes from the infobox cleanup fallout.
[pr0n] / perl / Sesse / pr0n / Image.pm
index 4f6360a6605f001b1e3a5ace4fc8494490c0f785..4a7160381d03100391486bd9150ad2fe919eb2a3 100644 (file)
@@ -13,29 +13,26 @@ sub handler {
 #              die "Har du lest FAQen?";
 #      }
 
-       # Find the event and file name
+       # Find the event and file name (nobox/ is for compatibility with legacy URLs).
        my ($event,$filename,$xres,$yres,$dpr);
-       my $infobox = 'both';
+       my $infobox = 0;
        if ($r->path_info =~ m#^/([a-zA-Z0-9-]+)/original/((?:no)?box/)?([a-zA-Z0-9._()-]+)$#) {
                $event = $1;
                $filename = $3;
-               $infobox = 'nobox' if (defined($2) && $2 eq 'nobox/');
-               $infobox = 'box' if (defined($2) && $2 eq 'box/');
+               $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 = $6;
                $xres = $2;
                $yres = $3;
                $dpr = $4;
-               $infobox = 'nobox' if (defined($5) && $5 eq 'nobox/');
-               $infobox = 'box' if (defined($5) && $5 eq 'box/');
+               $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 = 'nobox' if (defined($2) && $2 eq 'nobox/');
-               $infobox = 'box' if (defined($2) && $2 eq 'box/');
+               $infobox = 1 if (defined($2) && $2 eq 'box/');
        }
        $dpr //= 1;
 
@@ -54,7 +51,12 @@ sub handler {
        $dbheight = $ref->{'height'};
 
        # Scale if we need to do so
-       my ($fname, $mime_type) = Sesse::pr0n::Common::ensure_cached($r, $filename, $id, $dbwidth, $dbheight, $infobox, $dpr, $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 $res = Plack::Response->new(200);