From f156f380d4de118e31036e80144154bdcb664ed6 Mon Sep 17 00:00:00 2001 From: Andinus Date: Sat, 11 Jun 2022 13:59:33 +0530 Subject: Display gallery title, fix authentication, show directories - Earlier non-authenticated users could access the images too. - Serve original image if thumbnail doesn't exist. - Show directories in gallery. - Remove lazy loading attribute. --- lib/Crater/Gallery.rakumod | 51 ++++++++++++++++++++++++++++++++-------------- 1 file changed, 36 insertions(+), 15 deletions(-) (limited to 'lib/Crater/Gallery.rakumod') diff --git a/lib/Crater/Gallery.rakumod b/lib/Crater/Gallery.rakumod index 19b0d69..448593f 100644 --- a/lib/Crater/Gallery.rakumod +++ b/lib/Crater/Gallery.rakumod @@ -1,25 +1,46 @@ class Crater::Gallery { has IO $.directory is required; + has Str $!title; + + submethod TWEAK() { + my $title-file = $!directory.add(".crater/title"); + $!title = $title-file.slurp.chomp if $title-file.f; + } + + #| Accessor for $!title. + method title() { $!title } method list() { my @gallery; - for $!directory.dir.sort(*.modified) { - if .IO.d { + my @paths = $!directory.dir; + + with $!title { + push @gallery, %( :type, :text($_) ); + } + + # Add directories on top. + for @paths.grep(*.d) { + push @gallery, %( :type, + :text($_.relative($!directory)) ); + } - } elsif .IO.f { - my Str $ext = .extension.lc; - if $ext eq "jpg"|"png" { - push @gallery, %( - :type, :src($_.relative($!directory)), - :alt($_) - ); - } elsif $ext eq "0" { - push @gallery, %( :type, :text($_.slurp) ); - } elsif $ext eq "txt" { - push @gallery, %( :type, :text($_.slurp) ); - } else { - warn "Unhandled file :$_"; + for @paths.grep(*.f).sort(*.modified) { + my Str $ext = .extension.lc; + # For images get the original if thumbnail doesn't exist, + # otherwise use the thumbnail. + if $ext eq "jpg"|"png" { + my $rel = $_.relative($!directory); + my $alt = $rel; + unless $!directory.add(".crater/thumbnails").add($rel).f { + $rel ~= "?original"; } + push @gallery, %( :type, :src($rel), :$alt ); + } elsif $ext eq "0" { + push @gallery, %( :type, :text($_.slurp.chomp) ); + } elsif $ext eq "txt" { + push @gallery, %( :type, :text($_.slurp.chomp) ); + } else { + note "Unhandled file: $_"; } } return @gallery; -- cgit 1.4.1-2-gfad0