Added a config.php file
[bizou.git] / index.php
1 <?php
2 /*
3     Bizou - a (french) KISS php image gallery
4     Copyright (C) 2010  Marc MAURICE
5
6     This program is free software: you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation, either version 3 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 require 'config.php';
21
22 function getPreview($imgFile, $maxSize = THUMB_SIZE)
23 {
24         # example: data/myalbum/100.mypic.jpg
25         $newImgFile = DATA_DIR."/".dirname($imgFile)."/".$maxSize.".".basename($imgFile);
26         
27         if (! is_file($newImgFile))
28         {
29                 $ext = strtolower(substr($imgFile, -4));
30                 if ($ext == ".jpg")
31                         $img = imagecreatefromjpeg($imgFile);
32                 else
33                         $img = imagecreatefrompng($imgFile);
34
35                 $w = imagesx($img);
36                 $h = imagesy($img);
37                 # don't do anything if the image is already small
38                 if ($w <= $maxSize and $h <= $maxSize) {
39                         imagedestroy($img);
40                         return $imgFile;
41                 }
42
43                 # create the thumbs directory recursively
44                 if (! is_dir(dirname($newImgFile))) mkdir(dirname($newImgFile), 0777, true);
45
46                 if ($w > $h) {
47                         $newW = $maxSize;
48                         $newH = $h/($w/$maxSize);
49                 } else {
50                         $newW = $w/($h/$maxSize);
51                         $newH = $maxSize;
52                 }
53
54                 $newImg = imagecreatetruecolor($newW, $newH);
55
56                 imagecopyresampled($newImg, $img, 0, 0, 0, 0, $newW, $newH, $w, $h);
57
58                 if ($ext == ".jpg")
59                         imagejpeg($newImg, $newImgFile);
60                 else
61                         imagepng($newImg, $newImgFile);
62                 
63                 imagedestroy($img);
64                 imagedestroy($newImg);
65         }
66
67         return dirname($_SERVER["SCRIPT_NAME"])."/".$newImgFile;
68 }
69
70 function getAlbumPreview($dir)
71 {
72         foreach (scandir($dir) as $file) if ($file != '.' and $file != '..') {
73                 $ext = strtolower(substr($file, -4));
74                 if ($ext == ".jpg" or $ext == ".png")
75                         return getPreview("$dir/$file");
76         }
77
78         return '';
79 }
80
81 $scriptUrlPath = $_SERVER["SCRIPT_NAME"];
82
83 // if url == http://localhost/photos/index/toto/titi, path_info == /toto/titi
84 // if url == http://localhost/photos/index, path_info is not set
85 // if url == http://localhost/photos/, path_info is not set
86 // if path_info is not set, we are at top level, so we redirect to /photos/index/
87 if (! isset($_SERVER["PATH_INFO"])) {
88         header("Location: $scriptUrlPath/");
89         exit();
90 }
91
92 $shortPath = $_SERVER["PATH_INFO"];
93 if ($shortPath == '/') $shortPath = '';
94 // extra security check to avoid /photos/index/../.. like urls, maybe useless but..
95 if (strpos($shortPath, '..') !== false) die(".. found in url");
96
97 $folders = array();
98 $imageFiles = array();
99 $otherFiles = array();
100
101 $realDir = IMAGES_DIR.$shortPath;
102
103 if (! is_dir($realDir)) {
104         header("HTTP/1.1 404 Not Found");
105         die("Directory Not Found");
106 }
107
108 foreach (scandir($realDir) as $file) if ($file != '.' and $file != '..')
109 {
110         if (is_dir("$realDir/$file"))
111         {
112                 $folders[] = array( "name" => $file, "link" => "$scriptUrlPath$shortPath/$file", "preview" => getAlbumPreview("$realDir/$file") );
113         }
114         else
115         {
116                 $ext = strtolower(substr($file, -4));
117                 if ($ext == ".jpg" or $ext == ".png") {
118                         if (USE_VIEWER)
119                                 $link = dirname($scriptUrlPath)."/view.php$shortPath/$file";
120                         else
121                                 $link = dirname($scriptUrlPath)."/$realDir/$file";
122
123                         $imageFiles[] = array( "name" => $file, "url" => getPreview("$realDir/$file"), "link" => $link );
124
125                 } else {
126                         $otherFiles[] = array( "name" => $file, "link" => dirname($scriptUrlPath)."/$realDir/$file" );
127                 }
128         }
129 }
130
131 if (dirname($shortPath) !== '')
132         $parentLink = $scriptUrlPath.dirname($shortPath);
133 else
134         $parentLink = "";
135
136 ?>
137 <?php
138 ///// template starts here /////
139 header('Content-Type: text/html; charset=utf-8');
140 header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
141 ?>
142 <html>
143 <head>
144 <style type="text/css">
145 body {
146         padding-top: 2em;
147 }
148 img {
149         border: 0;
150 }
151 a {
152         text-decoration: none;
153 }
154 .square {
155         display: inline-block;
156 }
157 .image {
158         width: <?php echo THUMB_SIZE ?>px;
159         height: <?php echo THUMB_SIZE ?>px;
160         display: table-cell;
161         text-align: center;
162         vertical-align: middle;
163 }
164 .foldername {
165         height: <?php echo THUMB_SIZE ?>px;
166         display: table-cell;
167         vertical-align: middle;
168 }
169 #parentfolder {
170         position: fixed;
171         font-size: 4em;
172         font-weight: bold;
173         top: 0;
174         left: 0;
175 }
176 </style>
177 </head>
178 <body>
179
180 <?php if ($parentLink !== '') { ?>
181         <div id="parentfolder"><a href="<?php echo $parentLink ?>">^</a></div>
182 <?php } ?>
183
184 <?php foreach($folders as $folder) { ?>
185         <div class="folder">
186         <?php if ($folder["preview"] === "") { ?>
187                 <a href="<?php echo $folder["link"] ?>"><?php echo $folder["name"] ?></a>
188         <?php } else { ?>
189                 <div class="square"><div class="image"><a href="<?php echo $folder["link"] ?>"><img src="<?php echo $folder["preview"] ?>" /></a></div></div>
190                 <div class="square"><div class="foldername"><a href="<?php echo $folder["link"] ?>"><?php echo $folder["name"] ?></a></div></div>
191         <?php } ?>
192         </div>
193 <?php } ?>
194
195 <?php foreach ($imageFiles as $file) { ?>
196         <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>
197 <?php } ?>
198
199 <?php foreach ($otherFiles as $file) { ?>
200         <div class="miscfile"><a href="<?php echo $file["link"] ?>"><?php echo $file["name"] ?></a></div>
201 <?php } ?>
202
203 </body>
204 </html>