bizou/index.php

186 lines
4.7 KiB
PHP
Raw Normal View History

2010-10-07 21:27:44 +02:00
<?php
2010-10-07 22:42:13 +02:00
define('THUMB_SIZE', 100);
define('DATA_DIR', 'data');
define('IMAGES_DIR', 'images');
define('USE_VIEWER', true);
2010-10-07 22:42:13 +02:00
function getPreview($imgFile, $maxSize = THUMB_SIZE)
2010-10-07 21:27:44 +02:00
{
# example: data/myalbum/100.mypic.jpg
$newImgFile = DATA_DIR."/".dirname($imgFile)."/".$maxSize.".".basename($imgFile);
2010-10-07 21:27:44 +02:00
if (! is_file($newImgFile))
{
2010-10-17 17:00:21 +02:00
$ext = strtolower(substr($imgFile, -4));
2010-10-08 00:11:01 +02:00
if ($ext == ".jpg")
$img = imagecreatefromjpeg($imgFile);
else
$img = imagecreatefrompng($imgFile);
2010-10-07 21:27:44 +02:00
$w = imagesx($img);
$h = imagesy($img);
# don't do anything if the image is already small
if ($w <= $maxSize and $h <= $maxSize) {
imagedestroy($img);
return $imgFile;
}
# create the thumbs directory recursively
if (! is_dir(dirname($newImgFile))) mkdir(dirname($newImgFile), 0777, true);
if ($w > $h) {
$newW = $maxSize;
$newH = $h/($w/$maxSize);
} else {
$newW = $w/($h/$maxSize);
$newH = $maxSize;
}
$newImg = imagecreatetruecolor($newW, $newH);
imagecopyresampled($newImg, $img, 0, 0, 0, 0, $newW, $newH, $w, $h);
2010-10-08 00:11:01 +02:00
if ($ext == ".jpg")
imagejpeg($newImg, $newImgFile);
else
imagepng($newImg, $newImgFile);
2010-10-07 21:27:44 +02:00
imagedestroy($img);
imagedestroy($newImg);
}
return dirname($_SERVER["SCRIPT_NAME"])."/".$newImgFile;
}
function getAlbumPreview($dir)
{
foreach (scandir($dir) as $file) if ($file != '.' and $file != '..') {
2010-10-08 00:11:01 +02:00
$ext = strtolower(substr($file, -4));
if ($ext == ".jpg" or $ext == ".png")
2010-10-07 22:42:13 +02:00
return getPreview("$dir/$file");
2010-10-07 21:27:44 +02:00
}
return '';
}
$scriptUrlPath = $_SERVER["SCRIPT_NAME"];
2010-10-07 21:27:44 +02:00
2010-10-07 23:13:32 +02:00
// if url == http://localhost/photos/index/toto/titi, path_info == /toto/titi
// if url == http://localhost/photos/index, path_info is not set
// if url == http://localhost/photos/, path_info is not set
// if path_info is not set, we are at top level, so we redirect to /photos/index/
if (! isset($_SERVER["PATH_INFO"])) {
header("Location: $scriptUrlPath/");
exit();
}
$shortPath = $_SERVER["PATH_INFO"];
if ($shortPath == '/') $shortPath = '';
2010-10-07 23:56:56 +02:00
// extra security check to avoid /photos/index/../.. like urls, maybe useless but..
if (strpos($shortPath, '..') !== false) die(".. found in url");
2010-10-07 23:13:32 +02:00
$folders = array();
2010-10-07 21:27:44 +02:00
$imageFiles = array();
$otherFiles = array();
$realDir = IMAGES_DIR.$shortPath;
2010-10-07 21:27:44 +02:00
foreach (scandir($realDir) as $file) if ($file != '.' and $file != '..')
2010-10-07 21:27:44 +02:00
{
2010-10-07 22:31:50 +02:00
if (is_dir("$realDir/$file"))
2010-10-07 21:27:44 +02:00
{
$folders[] = array( "name" => $file, "link" => "$scriptUrlPath$shortPath/$file", "preview" => getAlbumPreview("$realDir/$file") );
2010-10-07 21:27:44 +02:00
}
else
{
$ext = strtolower(substr($file, -4));
if ($ext == ".jpg" or $ext == ".png") {
if (USE_VIEWER)
$link = dirname($scriptUrlPath)."/view.php$shortPath/$file";
else
$link = dirname($scriptUrlPath)."/$realDir/$file";
$imageFiles[] = array( "name" => $file, "url" => getPreview("$realDir/$file"), "link" => $link );
} else {
$otherFiles[] = array( "name" => $file, "link" => dirname($scriptUrlPath)."/$realDir/$file" );
}
2010-10-07 21:27:44 +02:00
}
}
if (dirname($shortPath) !== '')
$parentLink = $scriptUrlPath.dirname($shortPath);
else
$parentLink = "";
2010-10-07 21:27:44 +02:00
?>
2010-10-07 22:34:57 +02:00
<?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));
?>
<html>
<head>
<style type="text/css">
2010-10-07 23:49:07 +02:00
body {
padding-top: 2em;
}
2010-10-07 22:34:57 +02:00
img {
border: 0;
}
2010-10-07 23:49:07 +02:00
a {
text-decoration: none;
}
2010-10-07 22:34:57 +02:00
.square {
display: inline-block;
}
.image {
2010-10-07 22:42:13 +02:00
width: <?php echo THUMB_SIZE ?>px;
height: <?php echo THUMB_SIZE ?>px;
2010-10-07 22:34:57 +02:00
display: table-cell;
text-align: center;
vertical-align: middle;
}
2010-10-07 23:49:07 +02:00
.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;
}
2010-10-07 22:34:57 +02:00
</style>
</head>
<body>
2010-10-07 21:27:44 +02:00
<?php if ($parentLink !== '') { ?>
2010-10-07 22:31:50 +02:00
<div id="parentfolder"><a href="<?php echo $parentLink ?>">^</a></div>
<?php } ?>
<?php foreach($folders as $folder) { ?>
<div class="folder">
2010-10-07 23:49:07 +02:00
<?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 } ?>
2010-10-07 21:27:44 +02:00
</body>
</html>