X-Git-Url: https://git.sesse.net/?p=pr0n;a=blobdiff_plain;f=perl%2Fupdate-image-cache.pl;h=3857ae22db4918d3124a1d9e64c5e55a7d4b23fe;hp=a159e3747454f939fc9361f69c2d46692aa5ceb5;hb=5e125fda482f5887459721b76ef24cf82aa4202b;hpb=4992c11ab93bf6f13eda229ff538b78c6bee1441 diff --git a/perl/update-image-cache.pl b/perl/update-image-cache.pl index a159e37..3857ae2 100755 --- a/perl/update-image-cache.pl +++ b/perl/update-image-cache.pl @@ -101,7 +101,6 @@ while (my $ref = $q->fetchrow_hashref) { if (!$regen_mipmaps) { @files = grep { !/mipmap/ } @files; } - my @bothres = (); my @boxres = (); my @noboxres = (); my $any_old = 0; @@ -110,9 +109,7 @@ while (my $ref = $q->fetchrow_hashref) { if ($mtime < $threshold) { $any_old = 1; } - if ($c =~ /$id-(\d+)-(\d+)\.jpg/ || $c =~ /$id-(-1)-(-1)\.jpg/) { - push @bothres, [$1, $2]; - } elsif ($c =~ /$id-(\d+)-(\d+)-nobox\.jpg/ || $c =~ /$id-(-1)-(-1)-nobox\.jpg/) { + if ($c =~ /$id-(\d+)-(\d+)-nobox\.jpg/ || $c =~ /$id-(-1)-(-1)-nobox\.jpg/) { push @noboxres, [$1, $2]; } elsif ($c =~ /$id-(\d+)-(\d+)-box\.png/ || $c =~ /$id-(-1)-(-1)-box\.png/) { push @boxres, [$1, $2]; @@ -120,14 +117,11 @@ while (my $ref = $q->fetchrow_hashref) { } next unless $any_old; unlink (@files); - if (scalar @bothres > 0) { - Sesse::pr0n::Common::ensure_cached($r, $ref->{'filename'}, $id, $ref->{'width'}, $ref->{'height'}, 'both', sort_res(@bothres)); - } if (scalar @noboxres > 0) { - Sesse::pr0n::Common::ensure_cached($r, $ref->{'filename'}, $id, $ref->{'width'}, $ref->{'height'}, 'nobox', sort_res(@noboxres)); + Sesse::pr0n::Common::ensure_cached($r, $ref->{'filename'}, $id, $ref->{'width'}, $ref->{'height'}, sort_res(@noboxres)); } if (scalar @boxres > 0) { - Sesse::pr0n::Common::ensure_cached($r, $ref->{'filename'}, $id, $ref->{'width'}, $ref->{'height'}, 'box', sort_res(@boxres)); + Sesse::pr0n::Common::ensure_infobox_cached($r, $ref->{'filename'}, $id, $ref->{'width'}, $ref->{'height'}, 1, sort_res(@boxres)); } my @newfiles = glob("../cache/$dir/$id-*.jpg");