Did some vars renaming to clarify
[bizou.git] / plugins / viewer / view.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 $bizouRootFromHere = '../..';
21 require "$bizouRootFromHere/config.php";
22
23 $simpleImagePath = $_SERVER["PATH_INFO"];
24 if ($simpleImagePath == '/') $simpleImagePath = '';
25 // extra security check to avoid /photos/index/../.. like urls, maybe useless but..
26 if (strpos($simpleImagePath, '..') !== false) die(".. found in url");
27
28
29 if (! is_file("$bizouRootFromHere/".IMAGES_DIR.$simpleImagePath)) {
30         header("HTTP/1.1 404 Not Found");
31         die("File Not Found");
32 }
33
34 // get all images in an array
35 $images = array();
36
37 $files = scandir("$bizouRootFromHere/".IMAGES_DIR.dirname($simpleImagePath));
38 foreach ($files as $file) {
39         $ext = strtolower(substr($file, -4));
40         if ($ext == ".jpg" or $ext == ".png")
41                 $images[] = $file;
42 }
43
44 // find the image position
45 $pos = array_search(basename($simpleImagePath), $images);
46 if ($pos === false) die("Image not found");
47
48 // get prev and next images
49 $prevImage = '';
50 $nextImage = '';
51 if ($pos > 0)
52         $prevImage = $images[$pos-1];
53 if ($pos < sizeof($images)-1)
54         $nextImage = $images[$pos+1];
55
56 $scriptUrl = $_SERVER["SCRIPT_NAME"];
57 $bizouRootUrl = dirname(dirname(dirname($scriptUrl)));
58 // scriptUrl = /path/to/bizou/plugins/viewer/view.php
59 // bizouRootUrl = /path/to/bizou
60
61 // template variables
62 $imageUrl = "$bizouRootUrl/".IMAGES_DIR.$simpleImagePath;
63
64 if ($nextImage === '') {
65         $nextImageUrl = '';
66         $nextPageUrl = '';
67 } else {
68         $nextImageUrl = "$bizouRootUrl/".IMAGES_DIR.dirname($simpleImagePath)."/$nextImage";
69         $nextPageUrl = dirname($_SERVER["REQUEST_URI"])."/$nextImage";
70 }
71 if ($prevImage === '') $prevPageUrl = '';
72 else $prevPageUrl = dirname($_SERVER["REQUEST_URI"])."/$prevImage";
73
74 $directoryUrl = "$bizouRootUrl/index.php".dirname($simpleImagePath);
75
76 header('Content-Type: text/html; charset=utf-8');
77 header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time() + 3600));
78 ?>
79 <html>
80 <head>
81 <style type="text/css">
82 html, body {
83 height: 100%;
84 }
85 body {
86 margin: 0;
87 text-align: center;
88 background: black;
89 color: white;
90 }
91 #theimage {
92 max-width: 100%;
93 max-height: 100%;
94 }
95 a {
96         color: white;
97         text-decoration: none;
98 }
99 #next, #previous, #up {
100         position: fixed;
101         font-size: 4em;
102         font-weight: bold;
103 }
104
105 #up {
106         top: 0;
107         left: 0;
108         
109 }
110 #next {
111         top: 50%;
112         right: -0;
113         
114 }
115 #previous {
116         top: 50%;
117         left: 0;
118 }
119 img {
120         border: 0;
121 }
122 </style>
123
124 <?php if ($nextImageUrl !== '') { ?>
125  <?php if (strpos($_SERVER['HTTP_USER_AGENT'], 'Firefox') !== false) { ?>
126 <link rel="prefetch" href="<?php echo $nextImageUrl ?>" />
127 <link rel="prefetch" href="<?php echo $nextPageUrl ?>" />
128
129  <?php } else { ?>
130 <script type="text/javascript">
131 window.onload = function() {
132         var im = new Image();
133         im.src = '<?php echo $nextImageUrl ?>';
134         var req = new XMLHttpRequest();
135         req.open('GET', '<?php echo $nextPageUrl ?>', false);
136         req.send(null);
137 };
138 </script>
139  <?php } ?>
140 <?php } ?>
141
142 </head>
143 <body>
144
145 <a href="<?php echo $imageUrl ?>"><img src="<?php echo $imageUrl ?>" id="theimage" /></a>
146
147 <div id="up">
148 <a href="<?php echo $directoryUrl ?>" title="Back to directory">^</a>
149 </div>
150
151 <?php if ($nextPageUrl !== '') { ?>
152 <div id="next">
153 <a href="<?php echo $nextPageUrl ?>" title="Next image">&gt;</a>
154 </div>
155 <?php } ?>
156
157 <?php if ($prevPageUrl !== '') { ?>
158 <div id="previous">
159 <a href="<?php echo $prevPageUrl ?>" title="Previous image">&lt;</a>
160 </div>
161 <?php } ?>
162
163 </body>
164 </html>