X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/eccaf81eef4c1528875503aa0cdbea130d755c5a..b28c58864e20c556b65ec60f02c0df6401f73351:/foto/index.php diff --git a/foto/index.php b/foto/index.php index f77b9c1..49e5483 100644 --- a/foto/index.php +++ b/foto/index.php @@ -1,40 +1,59 @@ link; -$rootdir = 'foto' . $Args; +$nav = explode('/', $rootdir); +$nav[0] = "Foto's"; # override of root 'foto' +$title = array_pop($nav); +$Page->title = ($nav ? implode(' ', $nav) . ': ' : '') . $title; + +if ($Page->api) { + $img = "$rootdir/index.jpg"; + if (file_exists($img)) { + # cover image of current album + $Page->image = "/$img"; + } + if (!$Page->path) { + return array_map(function ($dir) { + return new ArchiveArticle($dir . '/index.html'); + }, glob("$rootdir/*", GLOB_ONLYDIR)); #TODO: recurse + } + return; +} -if (!empty($User['admin'])) { - $access = '🔓 Openbaar'; - if (isset($PageAccess)) { - $access = "🔒 Bewoners"; - if ($PageAccess != $Page.$Args) { +if ($User->admin('foto')) { + if ($Page->restricted) { + $access = '🔒 Bewoners'; + if ($Page->restricted != $rootdir) { $access .= sprintf(' vanaf %s', - "/$PageAccess", pathinfo($PageAccess, PATHINFO_FILENAME) + "/{$Page->restricted}", pathinfo($Page->restricted, PATHINFO_FILENAME) ); } } + else { + $access = '🔓 Openbaar'; + } print "\n\n"; } -$nav = explode('/', $Page.$Args); -$title = array_pop($nav); -$rootname = "Foto's"; # override of 'foto' $link = ''; print "

"; foreach ($nav as $i => $linktitle) { - $link .= "/$linktitle"; - printf('%s →'."\n", $link, $i ? $linktitle : $rootname); + $link .= '/' . ($i ? $linktitle : $Page->handler); + printf('%s →'."\n", $link, $linktitle); } -print $Args ? $title : $rootname; +print $title; print "

\n\n"; -print $intro; +if (isset($Page->raw)) { + print $Page->raw; # page intro +} +if (!function_exists('showthumb')) { function showthumb($path) { // assume all album entries are symlinks to archive originals $target = preg_replace('{^(\.\./)*}', '', readlink($path)); - $thumb = 'thumb/200/' . $target; + $thumb = 'thumb/262/' . $target; @list ($order, $size, $title) = explode(':', pathinfo($path, PATHINFO_FILENAME), 3); $imgtag = 'img src="/'.$thumb.'"'; @@ -47,27 +66,28 @@ function showthumb($path) return sprintf('<%s />'."\n", $target, $imgtag); } +} if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { natsort($imgs); print '\n\n"; } @@ -75,7 +95,11 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { if ($imgs = glob("$rootdir/*.jpg")) { print '