3 ### Main output for Trivial Gallery.
5 ### (c) 2021 Mark Wooding
8 ###----- Licensing notice ---------------------------------------------------
10 ### This file is part of Trivial Gallery.
12 ### Trivial Gallery is free software: you can redistribute it and/or modify
13 ### it under the terms of the GNU Affero General Public License as
14 ### published by the Free Software Foundation; either version 3 of the
15 ### License, or (at your option) any later version.
17 ### Trivial Gallery is distributed in the hope that it will be useful, but
18 ### WITHOUT ANY WARRANTY; without even the implied warranty of
19 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 ### Affero General Public License for more details.
22 ### You should have received a copy of the GNU Affero General Public
23 ### License along with Trivial Gallery. If not, see
24 ### <https://www.gnu.org/licenses/>.
31 use Exporter qw{import};
32 use File::Path qw{make_path};
39 sub export (@) { push @EXPORT, @_; }
41 ###--------------------------------------------------------------------------
42 ### Internal utilities.
44 sub read_or_set ($\$@) {
45 my ($me, $ref, @args) = @_;
46 if (@args == 0) { return $$ref; }
47 elsif (@args == 1) { $$ref = $args[0]; return $me; }
48 elsif (@args > 1) { die "too many arguments"; }
51 ###--------------------------------------------------------------------------
54 export qw{join_paths};
60 $e =~ s,([^/])/+$,$1,;
61 if ($e eq "") { next ELT; }
62 elsif ($p eq "" || $e =~ m,^/,) { $p = $e; }
63 else { $p = "$p/$e"; }
68 export qw{split_path};
72 my ($dir, $base, $ext) = $path =~ m,^(?:(.*)/)?(?:([^/]*)\.)?([^./]*)$,;
73 if (defined $base) { $ext = ".$ext"; }
74 else { $base = $ext; $ext = ""; }
75 return ($dir, $base, $ext);
81 $u =~ s:([^0-9a-zA-Z_./~-]):sprintf "%%%02x", ord $1:eg;
88 $u =~ s:\%([0-9a-fA-F]{2}):chr hex $1:eg;
92 ###--------------------------------------------------------------------------
97 package TrivGal::ImageType {
100 return $TYPE{$ext} = bless { ext => $ext }, $cls;
103 my ($me, @args) = @_;
107 my ($me, @args) = @_;
108 return TrivGal::read_or_set $me, $me->{mimetype}, @args;
111 my ($me, @args) = @_;
112 return TrivGal::read_or_set $me, $me->{imlibfmt}, @args;
116 TrivGal::ImageType->new(".jpg")->mimetype("image/jpeg")->imlibfmt("jpeg");
117 TrivGal::ImageType->new(".png")->mimetype("image/png")->imlibfmt("png");
119 ###--------------------------------------------------------------------------
122 export qw{$SCOPE $SUFFIX};
123 our $SCOPE //= $::SCOPE;
124 our $SUFFIX //= $::SUFFIX;
126 export qw{$IMGROOT $CACHE $TMP};
127 our $IMGROOT //= "$ENV{HOME}/publish/$SCOPE-html$SUFFIX/tgal-images";
129 ($ENV{XDG_CACHE_HOME} // "$ENV{HOME}/.cache") .
130 "/tgal/$SCOPE$SUFFIX";
131 our $TMP //= "$CACHE/tmp";
133 export qw{$ROOTURL $IMGURL $CACHEURL $STATICURL $SCRIPTURL};
134 my $user = getpwuid($>)->name;
135 our $ROOTURL //= "/~$user";
136 our $IMGURL //= "$ROOTURL/tgal-images";
137 our $CACHEURL //= "$ROOTURL/tgal-cache";
138 our $STATICURL //= "$ROOTURL/tgal-static";
142 our %SIZE = (thumb => 228, view => 1200);
147 my $m = HTML::Mason::Request->instance;
148 my $r = $m->cgi_request;
150 $m->interp->set_escape(u => sub { my ($r) = @_; $$r = urlencode $$r; });
152 return unless !$initp;
154 $SCRIPTURL //= $r->subprocess_env("SCRIPT_NAME");
158 ###--------------------------------------------------------------------------
161 export qw{clean_temp_files};
162 sub clean_temp_files () {
165 eval { opendir $d, $TMP; };
167 if ($@->isa("autodie::exception") && $@->errno == ENOENT) { return; }
171 FILE: while (my $name = readdir $d) {
172 next FILE unless $name =~ /^t(\d+)\-/;
174 next FILE if kill 0, $pid;
175 my $f = "$TMP/$name";
177 next FILE if $now - $st->mtime() < 300;
183 ###--------------------------------------------------------------------------
188 my ($scale, $path) = @_;
190 my $sz = $SIZE{$scale} or die "unknown scale `$scale'";
191 my $imgpath = "$IMGROOT/$path";
192 my $ist = stat $imgpath or die "no image `$path'";
193 my $thumb = "$CACHE/scaled.$scale/$path";
194 my $thumburl = "$CACHEURL/scaled.$scale/$path";
195 my $tst = stat $thumb;
196 if (defined $tst && $tst->mtime > $ist->mtime) { return $thumburl; }
197 my ($dir, $base, $ext) = split_path $thumb;
198 my $ty = $TYPE{lc $ext} or die "unknown type `$ext'";
200 my $img = Image::Imlib2->load($imgpath);
201 my ($wd, $ht) = ($img->width, $img->height);
202 my $max = $wd > $ht ? $wd : $ht;
203 if ($max <= $sz) { return "$IMGURL/$path"; }
205 my $scaled = $img->create_scaled_image($sc*$wd, $sc*$ht);
207 $scaled->image_set_format($ty->imlibfmt);
208 $scaled->set_quality(90);
209 my $new = "$TMP/t${$}$ext";
217 ###--------------------------------------------------------------------------
218 ### Directory listings.
220 package TrivGal::Item {
222 my ($cls, $name) = @_;
223 return bless { name => $name }, $cls;
226 my ($me, @args) = @_;
227 return TrivGal::read_or_set $me, $me->{name}, @args;
230 my ($me, @args) = @_;
231 return TrivGal::read_or_set $me, $me->{comment}, @args;
241 if (-f "$path/.tgal.index") {
242 open my $f, "<", "$path/.tgal.index";
247 next LINE if /^\s*(\#|$)/;
249 die "no item" unless $item;
250 $comment = defined $comment ? $comment . "\n" . $_ : $_;
252 if ($item && $comment) { $item->comment($comment); }
253 my ($indexp, $name, $c) = /(!\s+)?(\S+)\s*(\S|\S.*\S)?\s*$/;
254 $name = urldecode $name;
256 if ($name =~ m!/$!) {
258 die "can't index a folder" if $indexp;
261 my ($dir, $base, $ext) = TrivGal::split_path $name;
262 die "unknown image type" unless $TYPE{lc $ext};
264 die "two index images" if defined $ix;
268 $item = TrivGal::Item->new($name);
273 if ($item && $comment) { $item->comment($comment); }
280 ENT: for my $e (sort @e) {
281 my ($dir, $base, $ext) = split_path $e;
282 my $dotp = $e =~ /^\./;
283 my $st = stat "$path/$e";
285 if ($dotp || !($st->mode&0004)) { }
286 elsif (-d $st) { $list = \@d; }
287 elsif ($TYPE{lc $ext} && -f $st) { $list = \@f; }
288 $list and push @$list, TrivGal::Item->new($e);
293 return (\@d, \@f, $ix);
302 eval { open $f, "<", "$file"; };
304 if ($@->isa("autodie::exception") && $@->errno == ENOENT)
308 while (sysread $f, $buf, 16384) { $contents .= $buf; }
313 export qw{find_covering_file};
314 sub find_covering_file ($$$) {
315 my ($top, $path, $name) = @_;
317 my $stuff = contents "$top/$path/$name"; return $stuff if defined $stuff;
318 if ($path eq "") { return undef; }
319 if ($path =~ m!^(.*)/[^/]+/?!) { $path = $1; }
324 ###----- That's all, folks --------------------------------------------------