1 # Simple Photo Gallery: Web Interface
2 # (c) 2003--2012 Martin Mares <mj@ucw.cz>
4 package UCW::Gallery::Web;
17 'i' => { 'var' => \$show_img, 'check' => '\d+' },
18 'a' => { 'var' => \$want_archive },
22 print "<p style='color:red'>Bad luck, the script is broken. Sorry.\n<p>$_[0]\n";
23 print "</body></html>\n";
27 my ($self, $key) = @_;
28 return $self->{gal}->get($key);
32 my ($self, $key) = @_;
33 my $val = $self->get($key);
34 if (ref $val eq 'CODE') {
41 # For use by extras hooks
47 # For use by extras hooks: return true if we are showing an image page, false for index page
48 sub showing_image($) {
50 return $show_img ne "";
55 my $title = UCW::CGI::html_escape($self->get('Title'));
56 my $hextras = $self->extras('WebHeadExtras');
57 my $theme_hextras = $self->theme_head_extras;
59 Content-Type: text/html
61 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
63 $hextras$theme_hextras<title>$title</title>
67 $UCW::CGI::ErrorHandler::error_hook = \&error;
69 # WebTopExtras are evaluated separately, since they can override the error hook
70 print $self->extras('WebTopExtras');
75 print $self->extras('WebBotExtras'), "</body></html>\n";
81 if ($show_img < 1 || $show_img > $self->{num_photos}) {
82 UCW::CGI::http_error('404 No such photo');
86 my $meta = $self->{meta};
87 my $id = $meta->{sequence}->[$show_img-1];
88 my $m = $meta->{photo}->{$id} or die;
91 $self->show_links(($show_img > 1 ? ("?i=".($show_img-1)) : ""),
93 ($show_img < $self->{num_photos} ? ("?i=".($show_img+1)) : ""));
95 my $t = UCW::CGI::html_escape($m->{title});
98 print "<h1>$t</h1>\n" if $t ne "";
99 my $img = $self->get('PhotoUrlPrefix') . $self->{gal}->photo_name($m, $id);
100 print "<p class=large><img src='$img' width=$w height=$h alt='$t'>\n";
105 sub show_pre_thumbs($) {
109 sub show_post_thumbs($) {
117 $self->show_links($self->get('BackURL'), $self->get('ParentURL'), $self->get('FwdURL'));
118 print "<h1>", $self->get('Title'), "</h1>\n";
119 my $subtitle = $self->get('SubTitle');
120 print "<h2>$subtitle</h2>\n" if $subtitle ne "";
121 $self->show_pre_thumbs;
123 my $meta = $self->{meta};
124 for my $idx (1..$self->{num_photos}) {
125 my $id = $meta->{sequence}->[$idx-1];
126 my $m = $meta->{photo}->{$id};
128 if ($self->get('WebImageSubpages')) {
129 $click_url = "?i=$idx";
131 $click_url = $self->get('PhotoUrlPrefix') . $self->{gal}->photo_name($m, $id);
133 $self->show_thumb($meta, $id, $click_url);
136 $self->show_post_thumbs;
142 binmode STDOUT, ':utf8';
143 UCW::CGI::parse_args(\%args);
144 $self->{meta} = $self->{gal}->read_meta(File::Spec->catfile($self->get('CacheDir'), 'cache.meta'));
145 $self->{num_photos} = scalar @{$self->{meta}->{sequence}};
148 require UCW::Gallery::Archive;
149 UCW::Gallery::Archive::send_archive($self->{gal}, $self->{meta});
150 } elsif ($show_img ne "") {
158 my ($class, $gal) = @_;
159 my $self = { gal => $gal };
163 # Extras are either strings or functions called with the current gallery object as parameter
168 # Used by the theming logic
169 WebThemeCSS => undef,
171 # 1 if thumbnail link to sub-pages with images, 0 if they link directly to image files
172 WebImageSubpages => 1,
174 # If enabled, calling the CGI with a=zip produces a ZIP archive with all photos.
175 WebAllowArchives => 1,