forked from andreknieriem/photobooth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
303 lines (269 loc) · 14.5 KB
/
index.php
File metadata and controls
303 lines (269 loc) · 14.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<?php
$my_config = 'my.config.inc.php';
if (file_exists($my_config)) {
require_once('my.config.inc.php');
} else {
require_once('config.inc.php');
}
require_once('folders.php');
require_once('db.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
<title>Photobooth</title>
<!-- Favicon + Android/iPhone Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="resources/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="resources/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="resources/img/favicon-16x16.png">
<link rel="manifest" href="resources/img/site.webmanifest">
<link rel="mask-icon" href="resources/img/safari-pinned-tab.svg" color="#5bbad5">
<?php if($config['bluegray_theme']) { ?>
<meta name="msapplication-TileColor" content="ff4f58">
<meta name="theme-color" content="#669db3">
<?php } else { ?>
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<?php }; ?>
<!-- Fullscreen Mode on old iOS-Devices when starting photobooth from homescreen -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="stylesheet" href="resources/css/normalize.css" />
<link rel="stylesheet" href="resources/css/font-awesome.min.css" />
<link rel="stylesheet" href="resources/css/photoswipe.css">
<link rel="stylesheet" href="resources/css/default-skin/default-skin.css">
<link rel="stylesheet" href="resources/css/style.css" />
<script type="text/javascript">
var isdev = <?php echo ($config['dev']) ? 'true' : 'false'; ?>;
var useVideo = <?php echo ($config['previewFromCam']) ? 'true' : 'false'; ?>;
var imgFolder = <?php echo '"'.$config['folders']['images'].'"'; ?>;
var thumbFolder = <?php echo '"'.$config['folders']['thumbs'].'"'; ?>;
var gallery_newest_first = <?php echo ($config['newest_first']) ? 'true' : 'false'; ?>;
var gallery_scrollbar = <?php echo ($config['scrollbar']) ? 'true' : 'false'; ?>;
var cntdwn_time = <?php echo ($config['cntdwn_time']); ?>;
var cheese_time = <?php echo ($config['cheese_time']); ?>;
var theme = <?php echo $config['bluegray_theme'] ? "'bluegray'" : "'default'"; ?>;
// only take photo when minimal -> given to core.js
var rk_minimal = <?php echo ($config['rk_minimal']) ? 'true' : 'false'; ?>;
</script>
</head>
<body class="deselect">
<div id="wrapper">
<!-- Start Page -->
<div class="stages" id="start">
<?php if($config['show_gallery']){ ?><a class="gallery-button btn" href="#"><i class="fa fa-th"></i> <span data-l10n="gallery"></span></a><?php } ?>
<div class="blurred">
</div>
<div class="startInner">
<?php
if($config['is_wedding']) {
echo '<div class="names"><hr class="small" /><hr><div><h1>'. $config['wedding']['groom'] . ' <i class="fa '. $config['wedding']['symbol'] .' "aria-hidden="true"></i> ' . $config['wedding']['bride'] . '<br>' . $config['start_screen_title'] . '</h1><h2>' . $config['start_screen_subtitle'] . '</h2></div><hr><hr class="small" /></div>';
} else {
echo '<div class="names"><hr class="small" /><hr><div><h1>'. $config['start_screen_title'] . '</h1><h2>' . $config['start_screen_subtitle'] . '</h2></div><hr><hr class="small" /></div>';
};
?>
<?php if($config['use_filter']){ ?><a href="#" class="btn imageFilter"><i class="fa fa-magic"></i> <span data-l10n="selectFilter"></span></a><?php } ?>
<?php if($config['use_collage']){ ?><a href="#" <?php if($config['use_gpio_button']){ ?>accesskey="m"<?php } ?> class="btn takeCollage"><i class="fa fa-th-large"></i> <span data-l10n="takeCollage"></span></a><?php } ?>
<!-- accesskey to take a photo using alt+p (or use an external button)? -->
<a href="#" <?php if($config['use_gpio_button']){ ?>accesskey="p"<?php } ?> class="btn takePic"><i class="fa fa-camera"></i> <span data-l10n="takePhoto"></span></a>
</div>
<?php if($config['show_fork']): ?>
<a target="_blank" href="https://github.com/andreknieriem/photobooth" rel="noopener"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/652c5b9acfaddf3a9c326fa6bde407b87f7be0f4/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6f72616e67655f6666373630302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png"></a>
<?php endif; ?>
</div>
<!-- image Filter Pane -->
<?php if($config['use_filter']){ ?>
<div id="mySidenav" class="dragscroll sidenav">
<a href="#" class="closebtn"><i class="fa fa-times"></i></a>
<div class="activeSidenavBtn" id="imgPlain"><a class="btn btn--small" href="#" >original</a></div>
<div id="imgAntique"> <a class="btn btn--small" href="#">antique</a></div>
<div id="imgAqua"> <a class="btn btn--small" href="#" >aqua</a></div>
<div id="imgBlue"> <a class="btn btn--small" href="#" >blue</a></div>
<div id="imgBlur"> <a class="btn btn--small" href="#" >blur</a></div>
<div id="imgColor"> <a class="btn btn--small" href="#" >colorful</a></div>
<div id="imgCool"> <a class="btn btn--small" href="#" >cool</a></div>
<div id="imgEdge"> <a class="btn btn--small" href="#" >edge</a></div>
<div id="imgEmboss"> <a class="btn btn--small" href="#" >emboss</a></div>
<div id="imgEverglow"> <a class="btn btn--small" href="#" >everglow</a></div>
<div id="imgGrayscale"> <a class="btn btn--small" href="#" >grayscale</a></div>
<div id="imgGreen"> <a class="btn btn--small" href="#" >green</a></div>
<div id="imgMean"> <a class="btn btn--small" href="#" >mean</a></div>
<div id="imgNegate"> <a class="btn btn--small" href="#" >negate</a></div>
<div id="imgPink"> <a class="btn btn--small" href="#" >pink</a></div>
<div id="imgPixelate"> <a class="btn btn--small" href="#" >pixelate</a></div>
<div id="imgRed"> <a class="btn btn--small" href="#" >red</a></div>
<div id="imgRetro"> <a class="btn btn--small" href="#" >retro</a></div>
<div id="imgSelectiveBlur"> <a class="btn btn--small" href="#" >selective blur</a></div>
<div id="imgSepiaLight"> <a class="btn btn--small" href="#" >sepia light</a></div>
<div id="imgSepiaDark"> <a class="btn btn--small" href="#" >sepia dark</a></div>
<div id="imgSmooth"> <a class="btn btn--small" href="#" >smooth</a></div>
<div id="imgSummer"> <a class="btn btn--small" href="#" >summer</a></div>
<div id="imgVintage"> <a class="btn btn--small" href="#" >vintage</a></div>
<div id="imgWashed"> <a class="btn btn--small" href="#" >washed</a></div>
<div id="imgYellow"> <a class="btn btn--small" href="#" >yellow</a></div>
</div>
<?php } ?>
<!-- Loader -->
<div class="stages" id="loader">
<?php
if($config['previewFromCam']) {
echo '<video id="video" autoplay></video>';
}
?>
<div class="loaderInner">
<div class="spinner">
<i class="fa fa-cog fa-spin"></i>
</div>
<div id="counter"></div>
<div class="loading"></div>
</div>
</div>
<!-- Result Page -->
<div class="stages" id="result">
<a href="#" class="btn homebtn"><i class="fa fa-home"></i> <span data-l10n="home"></span></a>
<div class="resultInner hidden">
<?php if($config['show_gallery']): ?>
<a href="#" class="btn gallery-button"><i class="fa fa-th"></i> <span data-l10n="gallery"></span></a>
<?php endif; ?>
<?php if($config['use_qr']): ?>
<a href="#" class="btn qrbtn"><i class="fa fa-qrcode"></i> <span data-l10n="qr"></span></a>
<?php endif; ?>
<?php if($config['use_mail']): ?>
<a href="#" class="btn mailbtn"><i class="fa fa-envelope"></i> <span data-l10n="mail"></span></a>
<?php endif; ?>
<?php if($config['use_print']): ?>
<a href="#" class="btn printbtn"><i class="fa fa-print"></i> <span data-l10n="print"></span></a>
<?php endif; ?>
<a href="#" class="btn newpic"><i class="fa fa-camera"></i> <span data-l10n="newPhoto"></span></a>
<?php if($config['use_collage']): ?>
<a href="#" class="btn newcollage"><i class="fa fa-th-large"></i> <span data-l10n="newCollage"></span></a>
<?php endif; ?>
</div>
<?php if($config['use_qr']){ echo '<div id="qrCode" class="modal"><div class="modal__body"></div></div>';} ?>
</div>
<?php if($config['show_gallery'] && $config['rk_minimal'] == false){ ?>
<!-- Gallery -->
<div id="gallery" class="gallery">
<div class="gallery__inner">
<div class="gallery__header">
<h1><span data-l10n="gallery"></span></h1>
<a href="#" class="gallery__close close_gal"><i class="fa fa-times"></i></a>
</div>
<div class="gallery__body" id="galimages">
<?php
$imagelist = ($config['newest_first'] === true) ? array_reverse($images) : $images;
if (empty($imagelist)) {
// no images in gallery.
echo '<h1 style="text-align:center" data-l10n="gallery_no_image"></h1>';
} else {
foreach($imagelist as $image) {
$date = false;
if ($config['file_format_date'] == true && $config['show_date'] == true) {
$date = DateTime::createFromFormat('Ymd_His', substr($image, 0, strlen($image) - 4));
}
$filename_photo = $config['folders']['images'] . DIRECTORY_SEPARATOR . $image;
$filename_thumb = $config['folders']['thumbs'] . DIRECTORY_SEPARATOR . $image;
$imageinfo = getimagesize($filename_photo);
$imageinfoThumb = getimagesize($filename_thumb);
echo '<a href="' . $filename_photo.'" data-size="'.$imageinfo[0].'x'.$imageinfo[1].'" data-med="' . $filename_thumb.'" data-med-size="'.$imageinfoThumb[0].'x'.$imageinfoThumb[1].'">
<img src="' . $filename_thumb .'" />
<figure>' . ($date == false ? '' : '<i class="fa fa-clock-o"></i> ' . $date->format($config['gallery']['date_format'])) . '</figure>
</a>';
}
}
?>
</div>
</div>
</div>
<?php } ?>
</div>
<!-- Root element of PhotoSwipe. Must have class pswp. -->
<div class="pswp" tabindex="-1" role="dialog" aria-hidden="true">
<!-- Background of PhotoSwipe.
It's a separate element, as animating opacity is faster than rgba(). -->
<div class="pswp__bg"></div>
<!-- Slides wrapper with overflow:hidden. -->
<div class="pswp__scroll-wrap">
<!-- Container that holds slides.
PhotoSwipe keeps only 3 of them in DOM to save memory.
Don't modify these 3 pswp__item elements, data is added later on. -->
<div class="pswp__container">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<!-- Default (PhotoSwipeUI_Default) interface on top of sliding area. Can be changed. -->
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<!-- Controls are self-explanatory. Order can be changed. -->
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close (Esc)"><i class="fa fa-times"></i></button>
<button class="pswp__button pswp__button--share" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<?php if($config['use_mail']){ echo '<button class="gal-mail" title="Per Mail senden"><i class="fa fa-envelope"></i></button>'; } ?>
<?php if($config['use_print']){ echo '<button class="gal-print" title="Drucken"><i class="fa fa-print"></i></button>'; } ?>
<?php if($config['use_qr']){ echo '<button class="gal-qr-code" title="Qr Code öffnen"><i class="fa fa-qrcode"></i></button>'; } ?>
<?php if($config['chroma_keying']){ echo '<button class="gal-print-chroma_keying" title="Print extra"><i class="fa fa-paint-brush" aria-hidden="true"></i></button>'; } ?>
<!-- Preloader demo http://codepen.io/dimsemenov/pen/yyBWoR -->
<!-- element will get class pswp__preloader--active when preloader is running -->
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)">
</button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)">
</button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
<div class="pswp__qr">
</div>
</div>
<div class="send-mail">
<i class="fa fa-times" id="send-mail-close"></i>
<p data-l10n="insertMail"></p>
<form id="send-mail-form" style="margin: 0;">
<input class="mail-form-input" size="35" type="email" name="sendTo">
<input id="mail-form-image" type="hidden" name="image" value="">
<?php if($config['send_all_later']): ?>
<input type="checkbox" id="mail-form-send-link" name="send-link" value="yes">
<label data-l10n="sendAllMail" for="mail-form-send-link"></label>
<?php endif; ?>
<button class="mail-form-input btn" name="submit" type="submit" value="Senden">Senden</button>
</form>
<div id="mail-form-message" style="max-width: 75%"></div>
</div>
<div class="modal" id="print_mesg">
<div class="modal__body"><span data-l10n="printing"></span></div>
</div>
<div id="adminsettings" >
<div style="position:absolute; bottom:0; right:0;"><img src="resources/img/spacer.png" alt="adminsettings" ondblclick="adminsettings()"></div>
</div>
<script type="text/javascript" src="resources/js/adminshortcut.js"></script>
<script type="text/javascript" src="resources/js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="resources/js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="resources/js/TweenLite.min.js"></script>
<script type="text/javascript" src="resources/js/EasePack.min.js"></script>
<script type="text/javascript" src="resources/js/jquery.gsap.min.js"></script>
<script type="text/javascript" src="resources/js/CSSPlugin.min.js"></script>
<script type="text/javascript" src="resources/js/photoswipe.min.js"></script>
<script type="text/javascript" src="resources/js/photoswipe-ui-default.min.js"></script>
<script type="text/javascript" src="resources/js/photoinit.js"></script>
<script type="text/javascript" src="resources/js/theme.js"></script>
<script type="text/javascript" src="resources/js/core.js"></script>
<script type="text/javascript" src="lang/<?php echo $config['language']; ?>.js"></script>
</body>
</html>