X-Git-Url: http://git.shiar.nl/minimedit.git/blobdiff_plain/78b500b4027c74ccf7c4bf887183918f37307ddd..b28c58864e20c556b65ec60f02c0df6401f73351:/foto/index.php diff --git a/foto/index.php b/foto/index.php index ee37df1..49e5483 100644 --- a/foto/index.php +++ b/foto/index.php @@ -1,42 +1,59 @@ link; -$rootdir = $Page . $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 != $rootdir) { +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('/', $rootdir); -$nav[0] = "Foto's"; # override of root 'foto' -$title = array_pop($nav); -$Place['title'] = implode(' ', $nav) . ': ' . $title; - $link = ''; print "

"; foreach ($nav as $i => $linktitle) { - $link .= '/' . ($i ? $linktitle : $Page); + $link .= '/' . ($i ? $linktitle : $Page->handler); printf('%s →'."\n", $link, $linktitle); } 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.'"'; @@ -49,27 +66,28 @@ function showthumb($path) return sprintf('<%s />'."\n", $target, $imgtag); } +} if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) { natsort($imgs); print '\n\n"; } @@ -79,7 +97,7 @@ if ($imgs = glob("$rootdir/*.jpg")) { foreach ($imgs as $img) { if ($img == "$rootdir/index.jpg") { # cover image of current album - $Place['image'] = "/thumb/640x/$img"; + $Page->image = "/$img"; continue; } if (!is_link($img)) continue; @@ -89,3 +107,5 @@ if ($imgs = glob("$rootdir/*.jpg")) { include 'foto/album.inc.php'; } + +return;