foto: fix admin indication of unrestricted access
[minimedit.git] / foto / index.php
index f77b9c18414e1553e698e8a63e7ffd28b9b67423..89f5d060a74a6a878156ffa68019f8ce92594c9f 100644 (file)
@@ -1,13 +1,11 @@
 <?php
-$intro = ob_get_clean();
+$rootdir = $Page . $Args;
 
-$rootdir = 'foto' . $Args;
-
-if (!empty($User['admin'])) {
+if ($User and $User->admin('foto')) {
        $access = '🔓 Openbaar';
-       if (isset($PageAccess)) {
+       if (!empty($PageAccess)) {
                $access = "🔒 Bewoners";
-               if ($PageAccess != $Page.$Args) {
+               if ($PageAccess != $rootdir) {
                        $access .= sprintf(' vanaf <a href="%s">%s</a>',
                                "/$PageAccess", pathinfo($PageAccess, PATHINFO_FILENAME)
                        );
@@ -16,25 +14,29 @@ if (!empty($User['admin'])) {
        print "<aside>$access</aside>\n\n";
 }
 
-$nav = explode('/', $Page.$Args);
+$nav = explode('/', $rootdir);
+$nav[0] = "Foto's"; # override of root 'foto'
 $title = array_pop($nav);
-$rootname = "Foto's"; # override of 'foto'
+$Article->title = implode(' ', $nav) . ': ' . $title;
+
 $link = '';
 print "<h2>";
 foreach ($nav as $i => $linktitle) {
-       $link .= "/$linktitle";
-       printf('<a href="%s">%s</a> â†’'."\n", $link, $i ? $linktitle : $rootname);
+       $link .= '/' . ($i ? $linktitle : $Page);
+       printf('<a href="%s">%s</a> â†’'."\n", $link, $linktitle);
 }
-print $Args ? $title : $rootname;
+print $title;
 print "</h2>\n\n";
 
-print $intro;
+if (isset($Article->raw)) {
+       print $Article->raw;  # page intro
+}
 
 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.'"';
@@ -75,7 +77,11 @@ if ($imgs = glob("$rootdir/*", GLOB_ONLYDIR)) {
 if ($imgs = glob("$rootdir/*.jpg")) {
        print '<ul class="gallery album">'."\n";
        foreach ($imgs as $img) {
-               if ($img == "$rootdir/index.jpg") continue;
+               if ($img == "$rootdir/index.jpg") {
+                       # cover image of current album
+                       $Article->image = "/$img";
+                       continue;
+               }
                if (!is_link($img)) continue;
                print '<li>'.showthumb($img);
        }
@@ -83,3 +89,5 @@ if ($imgs = glob("$rootdir/*.jpg")) {
 
        include 'foto/album.inc.php';
 }
+
+return;