Bizou now displays a progress page when generating thumbs
[bizou.git] / index.php
index a52392a..846c7ae 100644 (file)
--- a/index.php
+++ b/index.php
 
 require 'config.php';
 
+// global variables, globals should remain contant
+$scriptUrl = $_SERVER["SCRIPT_NAME"];
+$rootUrl = dirname($scriptUrl);
+if (substr($rootUrl, -1) !== '/') $rootUrl.='/';  // add a trailing / to rootUrl
+// $scriptUrl =  "/path/to/bizou/index.php"
+// $rootUrl =  "/path/to/bizou/"
+
 // load plugins
-$plugins = scandir("plugins");
-array_shift($plugins); array_shift($plugins); // remove . and ..
-foreach ($plugins as $p) if (is_file("plugins/$p/functions.php"))
-       require "plugins/$p/functions.php";
+$plugins = array();
+if (is_dir("plugins")) {
+       $plugins = scandir("plugins");
+       array_shift($plugins); array_shift($plugins); // remove . and ..
+       foreach ($plugins as $p) if (is_file("plugins/$p/functions.php"))
+               require "plugins/$p/functions.php";
+}
 
 function plugins_include($phpFile)
 {
@@ -34,10 +44,33 @@ function plugins_include($phpFile)
 if (! function_exists('getImageLink')) {
 function getImageLink($imageSimplePath)
 {
-       return dirname($_SERVER["SCRIPT_NAME"]).'/'.IMAGES_DIR.$imageSimplePath;
+       return $GLOBALS['rootUrl'].IMAGES_DIR.$imageSimplePath;
 }
 }
 
+// functions to display a "progress page" when thumbs are generating
+function beginGenerating ()
+{
+       if (! isset($GLOBALS["generating"])) {
+               echo "<p> <i><b>If you get: \"Fatal error: Maximum execution time exceeded\", refresh this page.</b></i><br/> Please wait while generating thumbnails:<p/>\n";
+               ob_flush(); flush();
+               $GLOBALS["generating"] = true;
+       }
+}
+function displayGenerated($thumbFile)
+{
+       if (isset($GLOBALS["generating"])) {
+               echo basename($thumbFile)."\n";
+               ob_flush(); flush();
+       }
+}
+function endGenerating() {
+       if (isset($GLOBALS["generating"])) {
+               echo "<p>Finished. This page will be refreshed.</p> <script>window.location.reload();</script>\n";
+               exit();
+       }
+}
+
 function getPreview($imgFile, $maxSize = THUMB_SIZE)
 {
        # example: data/myalbum/100.mypic.jpg
@@ -45,6 +78,11 @@ function getPreview($imgFile, $maxSize = THUMB_SIZE)
        
        if (! is_file($newImgFile))
        {
+               beginGenerating();
+
+               # reset script time limit to 20s (wont work in safe mode)
+               set_time_limit(20);
+
                $ext = strtolower(substr($imgFile, -4));
                if ($ext == ".jpg")
                        $img = imagecreatefromjpeg($imgFile);
@@ -59,6 +97,9 @@ function getPreview($imgFile, $maxSize = THUMB_SIZE)
                        return $imgFile;
                }
 
+               # uncomment this if you need group writable files
+               #umask(0002);
+
                # create the thumbs directory recursively
                if (! is_dir(dirname($newImgFile))) mkdir(dirname($newImgFile), 0777, true);
 
@@ -81,9 +122,11 @@ function getPreview($imgFile, $maxSize = THUMB_SIZE)
                
                imagedestroy($img);
                imagedestroy($newImg);
+
+               displayGenerated($newImgFile);
        }
 
-       return dirname($_SERVER["SCRIPT_NAME"])."/".$newImgFile;
+       return $GLOBALS['rootUrl'].$newImgFile;
 }
 
 function getAlbumPreview($dir)
@@ -97,11 +140,6 @@ function getAlbumPreview($dir)
        return '';
 }
 
-$scriptUrl = $_SERVER["SCRIPT_NAME"];
-$rootUrl = dirname($scriptUrl);
-// $scriptUrl =  "/path/to/bizou/index.php"
-// $rootUrl =  "/path/to/bizou"
-
 // if url == http://localhost/photos/index.php/toto/titi, path_info == /toto/titi
 // if url == http://localhost/photos/index.php, path_info is not set
 // if url == http://localhost/photos/, path_info is not set
@@ -143,87 +181,22 @@ foreach (scandir($realDir) as $file) if ($file != '.' and $file != '..')
                if ($ext == ".jpg" or $ext == ".png") {
                        $imageFiles[] = array( "name" => $file, "url" => getPreview("$realDir/$file"), "link" => getImageLink("$simplePath/$file") );
                } else {
-                       $otherFiles[] = array( "name" => $file, "link" => "$rootUrl/$realDir/$file" );
+                       $otherFiles[] = array( "name" => $file, "link" => "$rootUrl$realDir/$file" );
                }
        }
 }
 
+endGenerating();
+
 if (dirname($simplePath) !== '')
        $parentLink = $scriptUrl.dirname($simplePath);
 else
        $parentLink = "";
 
-?>
-<?php
 ///// template starts here /////
 header('Content-Type: text/html; charset=utf-8');
 header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
+
+require 'template.php';
+
 ?>
-<html>
-<head>
-<style type="text/css">
-body {
-       padding-top: 2em;
-}
-img {
-       border: 0;
-}
-a {
-       text-decoration: none;
-}
-.square {
-       display: inline-block;
-}
-.image {
-       width: <?php echo THUMB_SIZE ?>px;
-       height: <?php echo THUMB_SIZE ?>px;
-       display: table-cell;
-       text-align: center;
-       vertical-align: middle;
-}
-.foldername {
-       height: <?php echo THUMB_SIZE ?>px;
-       display: table-cell;
-       vertical-align: middle;
-}
-#parentfolder {
-       position: fixed;
-       font-size: 4em;
-       font-weight: bold;
-       top: 0;
-       left: 0;
-}
-</style>
-<?php foreach ($plugins as $p) if (is_file("plugins/$p/style.css")) { ?>
-       <link rel="stylesheet" type="text/css" href="<?php echo "$rootUrl/plugins/$p/style.css" ?>" />
-<?php } ?>
-</head>
-<body>
-
-<?php if ($parentLink !== '') { ?>
-       <div id="parentfolder"><a href="<?php echo $parentLink ?>">^</a></div>
-<?php } ?>
-
-<?php plugins_include("before_content.php") ?>
-
-<?php foreach($folders as $folder) { ?>
-       <div class="folder">
-       <?php if ($folder["preview"] === "") { ?>
-               <a href="<?php echo $folder["link"] ?>"><?php echo $folder["name"] ?></a>
-       <?php } else { ?>
-               <div class="square"><div class="image"><a href="<?php echo $folder["link"] ?>"><img src="<?php echo $folder["preview"] ?>" /></a></div></div>
-               <div class="square"><div class="foldername"><a href="<?php echo $folder["link"] ?>"><?php echo $folder["name"] ?></a></div></div>
-       <?php } ?>
-       </div>
-<?php } ?>
-
-<?php foreach ($imageFiles as $file) { ?>
-       <div class="square"><div class="image"><a href="<?php echo $file["link"] ?>"><img src="<?php echo $file["url"] ?>" alt="<?php echo $file["name"] ?>" /></a></div></div>
-<?php } ?>
-
-<?php foreach ($otherFiles as $file) { ?>
-       <div class="miscfile"><a href="<?php echo $file["link"] ?>"><?php echo $file["name"] ?></a></div>
-<?php } ?>
-
-</body>
-</html>