forked from simonvdfr/Translucide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
434 lines (317 loc) · 14.5 KB
/
index.php
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
<?php
@include_once("config.php");// Variables
include_once("api/function.php");// Fonctions
include_once("api/db.php");// Connexion à la db
// Pour éviter le duplicate avec index.php
if(stristr($_SERVER['REQUEST_URI'], 'index.php')){
header("Status: 301 Moved Permanently");
header("Location: ".str_ireplace("index.php", "", $_SERVER['REQUEST_URI']));
exit;
}
// On ajax une page ?
if(!empty($_SERVER['HTTP_X_REQUESTED_WITH']) and strtolower($_SERVER['HTTP_X_REQUESTED_WITH']) == 'xmlhttprequest')
$ajax = true;
else
$ajax = false;
// Sélectionne la langue
$GLOBALS['lang'] = get_lang();
load_translation('api');// Chargement des traductions du système
if(@$GLOBALS['theme_translation']) load_translation('theme');// Chargement des traductions du theme
/********** CONTENU **********/
// Permalien de la page
$get_url = $connect->real_escape_string(get_url());
// Check si pas admin & horaire de fermeture du site
if(!@$_SESSION['auth']['edit-page'] and isset($GLOBALS['offline']))
{
$offline = explode('-', $GLOBALS['offline']);
// Si l'heure actuelle est dans la tranche de fermeture
if(time() > strtotime($offline[0]) and time() < strtotime($offline[1])) {
$close = true;
$res['state'] = "deactivate";
$res['url'] = $get_url;
}
}
// On récupère les données de la page
if(!@$close)
{
$sel = $connect->query("SELECT * FROM ".$table_content." WHERE url='".$get_url."' AND lang='".$lang."' LIMIT 1");
if($connect->error) {
header($_SERVER['SERVER_PROTOCOL']." 503 Service Unavailable");
exit($connect->error);
}
else $res = $sel->fetch_assoc();// On récupère les données de la page
}
/********** TAGS **********/
// Construction de l'ajout du contenu tag/cat, si filter et la racine de l'url pas dans les filtres autorisés
if(isset($GLOBALS['filter']) and count($GLOBALS['filter']) > 0 and !in_array($get_url, $GLOBALS['filter_auth']))
{
$filter_one = array_keys($GLOBALS['filter'])[0];
// Si tag et pas uniquement home + filtre autorisé
if(isset($GLOBALS['filter'][$filter_one]) and !in_array($filter_one, $GLOBALS['filter_auth']))
{
$tag = encode($GLOBALS['filter'][array_keys($GLOBALS['filter'])[0]]);
// On rapatrie les infos du tag
$sel_tag_info = $connect->query("SELECT * FROM ".$table_meta." WHERE type='tag-info' AND cle='".$tag."' LIMIT 1");
$res_tag_info = $sel_tag_info->fetch_assoc();
// Il n'y a pas d'infos sur le tag
if(!@$res_tag_info['val'])
{
// On rapatrie simplement le nom du tag, pour le fil d'ariane par exemple
$sel_tag = $connect->query("SELECT * FROM ".$table_tag." WHERE zone='".@$res['url']."' AND encode='".$tag."' LIMIT 1");
$res_tag = $sel_tag->fetch_assoc();
// Si tag n'existe pas => page 404
if(!@$res_tag['name']) $res = null;
}
}
}
/********** ACTION après la récupération des données du tag **********/
if(@$GLOBALS['after_get_tag']) include_once($GLOBALS['root'].$GLOBALS['after_get_tag']);
/********** UNE PAGE EXISTE **********/
$robots_data = '';
if($res)
{
// Si on veut que le CMS soit en https dans la config on vérifie le statut d'origine de l'url
if(strpos($GLOBALS['scheme'], 'https') !== false)
{
// Verif si https dans l'url
if(strpos(@$_SERVER['SCRIPT_URI'], 'https') !== false or $_SERVER['REQUEST_SCHEME'] == 'https')
$http = "https://";
else
$http = "http://";
}
else $http = $GLOBALS['scheme'];
// On verifie l'url pour eviter les duplicates : si erreur = redirection
if($http.$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] != make_url($res['url'], array_merge($GLOBALS['filter'], array("domaine" => true))))
{
header($_SERVER['SERVER_PROTOCOL']." 301 Moved Permanently");
header("location: ".make_url($res['url'], array_merge($GLOBALS['filter'], array("domaine" => true))));
exit;
}
$robots_data = @$res['robots'];// paramètre des robots propriétaire à la page courante
if($res['state'] != "active")// Page non activé
{
// Si pas admin on affiche page en construction
if(!@$_SESSION['auth']['edit-'.$res['type']])
{
// On regarde si une template 503 est définie
$sel_503 = $connect->query("SELECT * FROM ".$table_content." WHERE url='503' AND lang='".$lang."' AND state='active' LIMIT 1");
$res_503 = $sel_503->fetch_assoc();
if(isset($res_503['id'])) $res = $res_503;
else {
$res = null;
$res['state'] = 'deactivate';
if(@$close) $res['title'] = $msg = __("Site closing time");
else $res['title'] = $msg = __("Under Construction");
}
header($_SERVER['SERVER_PROTOCOL']." 503 Service Unavailable");
}
$robots = "noindex, follow";
}
else// Si la page est active elle est référençable (on utilise la config ou les param de la page)
{
if(@$GLOBALS['online'] === false) $robots = 'noindex, nofollow';// Offline
elseif(@$res['robots']) $robots = $robots_data;// Online + paramètre déterminé
else $robots = 'index, follow';// Online + pas de paramètre
}
}
else/********** PAS DE PAGE EXISTANTE **********/
{
// On regarde si une template 404 est définie
$sel = $connect->query("SELECT * FROM ".$table_content." WHERE url='404' AND lang='".$lang."' AND state='active' LIMIT 1");
$res = $sel->fetch_assoc();
// Si pas de template
if(!$res) {
$res['title'] = $msg = __("404 error : page not found");
$res['description'] = "";
}
// On force un header 404
header($_SERVER['SERVER_PROTOCOL']." 404 Not Found");
$robots = "noindex, follow";
}
/********** ID DE LA PAGE **********/
if(isset($res['id'])) $GLOBALS['id'] = $res['id']; else $GLOBALS['id'] = null;
/********** LES CONTENUS **********/
if(isset($res['content']) and $res['content'] != '') $GLOBALS['content'] = json_decode($res['content'], true);
else $GLOBALS['content'] = array();
// Si pas de titre/title H1 on met le title de la page/produit
if(!isset($GLOBALS['content']['title'])) $GLOBALS['content']['title'] = $res['title'];
/********** METAS HEAD **********/
// Title de la page
$title = $res['title'];
// SI TAG ajout au meta
if(isset($res_tag_info['val']))// Il y a des infos sur le tag
{
// Récupère les informations des tags et écrase celle du contenu
$GLOBALS['content'] = @array_merge($GLOBALS['content'], json_decode($res_tag_info['val'], true));
// Ecrase les données meta
if(isset($GLOBALS['content']['title'])) $title.= ' - '.$GLOBALS['content']['title'];
if(isset($GLOBALS['content']['description'])) $res['description'] = htmlspecialchars(strip_tags($GLOBALS['content']['description'], ENT_COMPAT));
if(isset($GLOBALS['content']['img'])) $GLOBALS['content']['og-image'] = $GLOBALS['content']['img'];
}
elseif(isset($res_tag['name']))// Si il y a juste le nom du tag
{
$GLOBALS['content']['title'] = $res_tag['name'];
$title.= ' - '.$res_tag['name'];
$res['description'] = $GLOBALS['content']['description'] = "";
}
// Si filtre dans les filtres autorisés on ajoute les filtres à l'URL
if($GLOBALS['filter'])
{
foreach($GLOBALS['filter'] as $cle => $val) {
if(in_array($cle, $GLOBALS['filter_auth']) and $cle != 'page') $title.= ' - '.__($cle).' '.$val;
}
}
// Si filtre page dans l'url on enrichie le title
if(isset($GLOBALS['filter']['page'])) $title.= ' - '.__('Page').' '.(int)$GLOBALS['filter']['page'];
// SI CONTENU
// Si un NOM DE SITE est défini et pas déjà dans le title
if(isset($GLOBALS['sitename']) and substr($title, -strlen($GLOBALS['sitename'])) !== $GLOBALS['sitename'])
$title .= ' - '.$GLOBALS['sitename'];
// Description
$description = (isset($res['description']) ? htmlspecialchars(strip_tags($res['description']), ENT_COMPAT) : "");
// Image pour les réseaux sociaux
if(isset($GLOBALS['content']['og-image'])) $image = $GLOBALS['content']['og-image'];
elseif(isset($GLOBALS['content']['alaune'])) $image = $GLOBALS['content']['alaune'];
elseif(isset($GLOBALS['content']['visuel']) or isset($GLOBALS['content']['visuel-1']))
{
if(isset($GLOBALS['content']['visuel'])) $image = $GLOBALS['content']['visuel'];
else $image = $GLOBALS['content']['visuel-1'];
// Si image plus grande (zoom)
$parse_url = parse_url($image);
if(isset($parse_url['query'])) {
parse_str($parse_url['query'], $get);
if(isset($get['zoom'])) $image = $get['zoom'];
}
}
// Si l'image n'est pas une url mais un fichier local on ajoute le domaine du site
if(isset($image) and !@parse_url($image)['scheme']) $image = $GLOBALS['home'].$image;
// Si pas ajax on charge toute la page
if(!$ajax)
{
/********** RÉCUPÉRATION DES DONNÉES META : NAV | HEADER |FOOTER **********/
$sel_meta = $connect->query("SELECT * FROM ".$tm." WHERE type IN ('nav','header','footer') AND cle='".$lang."' LIMIT 3");
while($res_meta = $sel_meta->fetch_assoc())
{
if(isset($res_meta['val']))
{
// Si menu de navigation
if($res_meta['type'] == 'nav') $GLOBALS['nav'] = json_decode($res_meta['val'], true);
// Si contenu du header ou footer
else $GLOBALS['content'] = @array_merge($GLOBALS['content'], json_decode($res_meta['val'], true));
}
}
// Si pas de nav
if(!isset($GLOBALS['nav'])) $GLOBALS['nav'] = array();
header('Content-type: text/html; charset=UTF-8');
?><!DOCTYPE html>
<html lang="<?=$lang;?>">
<head>
<meta charset="utf-8">
<title><?=strip_tags($title);?></title>
<?php if($description){?><meta name="description" content="<?=$description;?>"><?php }?>
<meta name="robots" content="<?=$robots;?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="<?=$title;?>">
<meta property="og:type" content="website">
<?php if(isset($res['url'])){?>
<meta property="og:url" content="<?=make_url($res['url'], array_merge($GLOBALS['filter'], array("domaine" => true)))?>">
<link rel="canonical" href="<?=make_url($res['url'], array_merge($GLOBALS['filter'], array("domaine" => true)))?>">
<?php }?>
<?php if($description){?><meta property="og:description" content="<?=$description;?>"><?php }?>
<?php if($image){?><meta property="og:image" content="<?=$image;?>"><?php }?>
<meta property="article:published_time" content="<?=date(DATE_ISO8601, strtotime(@$res['date_insert']));?>">
<?php if(@$GLOBALS['facebook_api_id']){?><meta property="fb:app_id" content="<?=$GLOBALS['facebook_api_id'];?>"><?php }?>
<?php if(@$GLOBALS['google_verification']){?><meta name="google-site-verification" content="<?=$GLOBALS['google_verification'];?>" /><?php }?>
<link rel="stylesheet" href="<?=$GLOBALS['path']?>api/assets/css/knacss.min.css?<?=$GLOBALS['cache']?>">
<link rel="stylesheet" href="<?=$GLOBALS['path']?>api/assets/css/custom<?=$GLOBALS['min']?>.css?<?=$GLOBALS['cache']?>">
<link rel="stylesheet" href="<?=$GLOBALS['path']?>theme/<?=$GLOBALS['theme']?>/css/style<?=$GLOBALS['min']?>.css?<?=$GLOBALS['cache']?>">
<?php if(@$GLOBALS['icons']){?><link rel="stylesheet" href="<?=$GLOBALS['icons']?>?<?=$GLOBALS['cache']?>"><?php }
else{?><link rel="stylesheet" href="<?=$GLOBALS['path']?>api/assets/icons/style.css?<?=$GLOBALS['cache']?>"><?php }?>
<?php if(@$GLOBALS['favicon']){?><link rel="shortcut icon" type="image/x-icon" href="<?=$GLOBALS['favicon']?>"><?php }?>
<script src="<?=$GLOBALS['jquery']?>"></script>
<script src="<?=$GLOBALS['path']?>api/assets/js/custom.init<?=$GLOBALS['min']?>.js?<?=$GLOBALS['cache']?>"></script>
<?php if(@$GLOBALS['plausible']) { ?>
<script async defer data-domain="<?=@$GLOBALS['plausible']?>" src="https://plausible.io/js/plausible.js"></script>
<?php }?>
<script>
<?php if(@$GLOBALS['google_analytics']) { ?>
// Si Analytics pas desactivé
if(get_cookie('analytics') != "desactiver")
{
// Google Analytics
google_analytics = '<?=$GLOBALS['google_analytics'];?>';
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', google_analytics, 'auto');
ga('send', 'pageview');
}
<?php }
if(@$GLOBALS['facebook_api_id']) { ?>
// Facebook
(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/fr_FR/sdk.js#xfbml=1&version=v2.7&cookie=true&appId=<?=$GLOBALS['facebook_api_id'];?>";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
<?php }
if(isset($_COOKIE['autoload_edit']) and $_SESSION['auth']['edit-page']){?>
// Si demande l'autoload du mode édition et si admin
$(function(){
edit_launcher();
$("a.btn.fixed.edit").fadeOut();
});
<?php
// Supprime le cookie qui demande de charger automatiquement l'admin
@setcookie("autoload_edit", "", time() - 3600, $GLOBALS['path'], $GLOBALS['domain']);
}?>
// Variables
id = "<?=$id?>";
state = "<?=@$res['state']?>";
title = "<?=addslashes(@$GLOBALS['content']['title']);?>";
permalink = "<?=@$res['url']?>";
type = "<?=@$res['type']?>";
tpl = "<?=@$res['tpl']?>";
tag = "<?=encode(@$tag)?>";
path = "<?=$GLOBALS['path']?>";
theme = "<?=$GLOBALS['theme']?>";
media_dir = "<?=(isset($GLOBALS['media_dir'])?$GLOBALS['media_dir']:'media')?>";
<?=(isset($GLOBALS['lang_alt'])?'lang_alt = "'.addslashes($GLOBALS['lang_alt']).'";':'')?>
<?=(isset($GLOBALS['sitename'])?'sitename = "'.addslashes($GLOBALS['sitename']).'";':'')?>
<?=((!isset($GLOBALS['btn_edit']) or $GLOBALS['btn_edit'] == true)?'btn_edit = true;':'')?>
<?=((!isset($GLOBALS['btn_top']) or $GLOBALS['btn_top'] == true)?'btn_top = true;':'')?>
<?=((!isset($GLOBALS['shortcut']) or $GLOBALS['shortcut'] == true)?'shortcut = true;':'')?>
<?=(@$dev?'dev = true;':'')?>
</script>
</head>
<body<?=($robots_data?' data-robots="'.$robots_data.'"':'').(@$_COOKIE['high-contrast']?' class="hc"':'')?>>
<?php
include_once('theme/'.$GLOBALS['theme'].($GLOBALS['theme']?'/':'').'header.php');
echo'<main id="main" role="main" tabindex="-1" class="content'.(isset($res['tpl'])?' tpl-'.encode($res['tpl']):'').'">';
}
if(isset($res['tpl'])) // On a une page
{
include('theme/'.$GLOBALS['theme'].($GLOBALS['theme']?'/':'').'tpl/'.$res['tpl'].'.php');// On charge la template du thème pour afficher le contenu
}
else // Pas de contenu a chargé
{
echo'<div class="pa-36 text-center">'.$msg.'</div>';
}
// Si pas ajax on charge toute la page
if(!$ajax)
{
echo'</main>';
include_once('theme/'.$GLOBALS['theme'].($GLOBALS['theme']?'/':'').'/footer.php');
?>
<div class="responsive-overlay"></div>
<script>console.log("<?=benchmark()?>")</script>
</body>
</html>
<?php
}
else {?><script>console.log("<?=benchmark()?>")</script><?php }
$connect->close();
?>