forked from PhotoboothProject/photobooth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlivechroma.php
More file actions
173 lines (148 loc) · 8.53 KB
/
livechroma.php
File metadata and controls
173 lines (148 loc) · 8.53 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
<?php
session_start();
require_once 'lib/config.php';
// Login / Authentication check
if (
!$config['login']['enabled'] ||
(!$config['protect']['localhost_index'] && $_SERVER['REMOTE_ADDR'] === $_SERVER['SERVER_ADDR']) ||
((isset($_SESSION['auth']) && $_SESSION['auth'] === true) || !$config['protect']['index'])
) {
require_once 'lib/db.php';
if ($config['database']['enabled']) {
$images = getImagesFromDB();
} else {
$images = getImagesFromDirectory($config['foldersAbs']['images']);
}
$imagelist = $config['gallery']['newest_first'] === true ? array_reverse($images) : $images;
$btnClass = 'btn btn--' . $config['ui']['button'] . ' livechroma-btn';
$btnShape = 'shape--' . $config['ui']['button'];
$uiShape = 'shape--' . $config['ui']['style'];
$GALLERY_FOOTER = false;
} else {
header('location: ' . $config['protect']['index_redirect']);
exit();
}
?>
<!doctype html>
<html>
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
<meta name="msapplication-TileColor" content="<?= $config['colors']['primary'] ?>">
<meta name="theme-color" content="<?= $config['colors']['primary'] ?>">
<!-- 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">
<!-- 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="node_modules/normalize.css/normalize.css"/>
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.css"/>
<link rel="stylesheet" href="node_modules/material-icons/iconfont/material-icons.css">
<link rel="stylesheet" href="node_modules/material-icons/css/material-icons.css">
<link rel="stylesheet" href="node_modules/photoswipe/dist/photoswipe.css"/>
<link rel="stylesheet" href="resources/css/<?php echo $config['ui']['style']; ?>_live_chromakeying.css?v=<?php echo $config['photobooth']['version']; ?>"/>
<?php if (is_file("private/overrides.css")): ?>
<link rel="stylesheet" href="private/overrides.css?v=<?php echo $config['photobooth']['version']; ?>"/>
<?php endif; ?>
</head>
<body>
<div id="blocker"></div>
<div id="aperture"></div>
<div class="chromawrapper">
<div class="rotarygroup" id="start">
<div class="top-bar">
<?php if (!$config['live_keying']['enabled']): ?>
<a href="index.php" class="<?php echo $btnClass; ?> livechroma-close-btn rotaryfocus"><i class="<?php echo $config['icons']['close']; ?>"></i></a>
<?php endif; ?>
<?php if ($config['gallery']['enabled']): ?>
<a href="#" class="<?php echo $btnClass ?> livechroma-gallery-btn rotaryfocus"><i class="<?php echo $config['icons']['gallery']; ?>"></i>
<span data-i18n="gallery"></span></a>
<?php endif; ?>
</div>
<div class="canvasWrapper <?php echo $uiShape; ?> noborder initial">
<canvas class="<?php echo $uiShape; ?> noborder" id="mainCanvas"></canvas>
</div>
<div class="chromaNote <?php echo $uiShape ?>">
<span data-i18n="chromaInfoBefore"></span>
</div>
<div class="stages" id="loader">
<div class="loaderInner">
<div class="spinner">
<i class="<?php echo $config['icons']['spinner']; ?>"></i>
</div>
<div id="ipcam--view" class="<?php echo $config['preview']['style']; ?>"></div>
<video id="video--view"
class="<?php echo $config['preview']['flip']; ?> <?php echo $config['preview']['style']; ?>"
autoplay playsinline></video>
<div id="counter">
<canvas id="video--sensor"></canvas>
</div>
<div class="cheese"></div>
<div class="loading"></div>
</div>
</div>
<!-- Result Page -->
<div class="stages" id="result"></div>
<div class="backgrounds <?php echo $uiShape ?>">
<?php
$dir = $config['keying']['background_path'] . DIRECTORY_SEPARATOR;
$cdir = scandir($dir);
foreach ($cdir as $key => $value) {
if (!in_array($value, array(".", "..")) && !is_dir($dir . $value)) {
echo '<img src="' . $dir . $value . '" class="' . $uiShape . ' backgroundPreview rotaryfocus" onclick="setBackgroundImage(this.src)">';
}
}
?>
</div>
<div class="chroma-control-bar">
<a href="#" class="<?php echo $btnClass; ?> takeChroma livechroma rotaryfocus"><i class="<?php echo $config['icons']['take_picture']; ?>"></i>
<span data-i18n="takePhoto"></span></a>
<?php if ($config['picture']['allow_delete']): ?>
<a href="#" class="<?php echo $btnClass; ?> deletebtn livechroma"><i class="<?php echo $config['icons']['delete']; ?>"></i> <span
data-i18n="delete"></span></a>
<?php endif; ?>
<a href="#" class="<?php echo $btnClass; ?> reloadPage livechroma rotaryfocus"><i class="<?php echo $config['icons']['refresh']; ?>"></i>
<span data-i18n="reload"></span></a>
</div>
</div>
<div class="rotarygroup">
<div id="wrapper">
<?php include('template/gallery.template.php'); ?>
</div>
<?php include('template/send-mail.template.php'); ?>
<div class="modal" id="print_mesg">
<div class="modal__body"><span data-i18n="printing"></span></div>
</div>
<div class="modal" id="modal_mesg"></div>
<script src="node_modules/whatwg-fetch/dist/fetch.umd.js"></script>
<script type="text/javascript" src="api/config.php?v=<?php echo $config['photobooth']['version']; ?>"></script>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="node_modules/photoswipe/dist/umd/photoswipe.umd.min.js"></script>
<script type="text/javascript" src="node_modules/photoswipe/dist/umd/photoswipe-lightbox.umd.min.js"></script>
<script type="text/javascript" src="resources/js/tools.js?v=<?php echo $config['photobooth']['version']; ?>"></script>
<script type="text/javascript" src="resources/js/photoswipe.js?v=<?php echo $config['photobooth']['version']; ?>"></script>
<script type="text/javascript" src="resources/js/preview.js?v=<?php echo $config['photobooth']['version']; ?>"></script>
<script type="text/javascript" src="resources/js/core.js?v=<?php echo $config['photobooth']['version']; ?>"></script>
<?php if ($config['keying']['variant'] === 'marvinj'): ?>
<script type="text/javascript" src="node_modules/marvinj/marvinj/release/marvinj-1.0.js"></script>
<?php else: ?>
<script type="text/javascript" src="vendor/Seriously/seriously.js"></script>
<script type="text/javascript" src="vendor/Seriously/effects/seriously.chroma.js"></script>
<?php endif; ?>
<script type="text/javascript" src="resources/js/livechroma.js?v=<?php echo $config['photobooth']['version']; ?>"></script>
<script type="text/javascript" src="resources/js/remotebuzzer_client.js?v=<?php echo $config['photobooth']['version']; ?>"></script>
<script type="text/javascript" src="resources/js/theme.js?v=<?php echo $config['photobooth']['version']; ?>"></script>
<script src="node_modules/@andreasremdt/simple-translator/dist/umd/translator.min.js"></script>
<script type="text/javascript" src="resources/js/i18n.js?v=<?php echo $config['photobooth']['version']; ?>"></script>
<?php require_once('lib/services_start.php'); ?>
<script type="text/javascript">
onLiveChromaKeyingView = true;
</script>
</div>
</div>
</body>
</html>