-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
install.php
463 lines (426 loc) · 13.5 KB
/
install.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
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
<?php
const PLX_ROOT = './';
const PLX_CORE = PLX_ROOT .'core/';
const HTACCESS_CONTENT = <<< EOT
Options -Indexes
<Files *>
Order allow,deny
Deny from all
</Files>
EOT;
const HTACCESS_PLUGINS_CONTENT = <<< EOT
Options -Indexes
<Files "*.php">
Order Allow,Deny
Deny from all
</Files>
EOT;
const HTACCESS_MEDIAS_CONTENT = <<< EOT
Options -Indexes
EOT;
include PLX_CORE.'lib/config.php';
# On démarre la session
plx_session_start();
# Chargement des langues
if(!empty($_POST)){
$lang = $_POST['default_lang'];
} elseif(!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
$lang = substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
} else {
$lang = DEFAULT_LANG;
}
if(!array_key_exists($lang, plxUtils::getLangs())) {
$lang = DEFAULT_LANG;
}
loadLang(PLX_CORE.'lang/'.$lang.'/install.php');
loadLang(PLX_CORE.'lang/'.$lang.'/core.php');
# On vérifie la version minimale de PHP
if(version_compare(PHP_VERSION, PHP_VERSION_MIN, '<')){
header('Content-Type: text/plain; charset=UTF-8');
echo L_WRONG_PHP_VERSION;
exit;
}
# On vérifie que PluXml n'est pas déjà installé
if(file_exists(path('XMLFILE_PARAMETERS'))) {
header('Content-Type: text/plain; charset=UTF-8');
echo L_ERR_PLUXML_ALREADY_INSTALLED;
exit;
}
# Control du token du formulaire
plxToken::validateFormToken($_POST);
# Echappement des caractères
if($_SERVER['REQUEST_METHOD'] == 'POST') {
$_POST = plxUtils::unSlash($_POST);
}
# Initialisation du timezone
$timezone = 'Europe/Paris';
if(isset($_POST['timezone'])) $timezone=$_POST['timezone'];
if(!array_key_exists($timezone, plxTimezones::timezones())) {
$timezone = date_default_timezone_get();
}
# Configuration de base
$config = DEFAULT_CONFIG;
$config['description'] = plxUtils::strRevCheck(L_SITE_DESCRIPTION);
$config['timezone'] = $timezone;
$config['clef'] = plxUtils::charAleatoire(15);
$config['default_lang'] = $lang;
$config['version'] = PLX_VERSION;
# Vérification de l'existence des dossiers
foreach(array(
'medias',
'racine_articles',
'racine_commentaires',
'racine_statiques',
'racine_plugins',
) as $folder) {
$target = PLX_ROOT . $config[$folder];
if(!is_dir($target)) {
@mkdir($target, 0755, true);
}
if(is_writable($target)) {
switch($folder) {
case 'racine_plugins':
file_put_contents($target . '.htaccess', HTACCESS_PLUGINS_CONTENT);
break;
case 'medias':
file_put_contents($target . '.htaccess', HTACCESS_MEDIAS_CONTENT);
break;
default:
file_put_contents($target . '.htaccess', HTACCESS_CONTENT);
}
}
}
# Vérification d'autres dossiers
foreach(array(
PLX_ROOT . PLX_CONFIG_PATH,
PLX_ROOT.PLX_CONFIG_PATH.'plugins',
PLX_ROOT.'data/templates',
) as $target) {
if(!is_dir($target)) {
@mkdir($target, 0755, true);
}
}
const CDATA_EXCLUDE = array(
'timezone',
'style',
'clef',
'tri',
'tri_coms',
'medias',
'racine_articles',
'racine_commentaires',
'racine_statiques',
'racine_themes',
'racine_plugins',
'hometemplate',
'version',
'default_lang',
'email_method',
'smtp_security',
);
function install($content, $config) {
if(!is_writable(PLX_ROOT . PLX_CONFIG_PATH)) {
return;
}
# gestion du timezone
date_default_timezone_set($config['timezone']);
# Création du fichier de configuration
ob_start();
?>
<document>
<?php
foreach($config as $k=>$v) {
?>
<parametre name="<?= $k ?>"><?= plxUtils::strCheck($v, !is_numeric($v) and !in_array($k, CDATA_EXCLUDE)) ?></parametre>
<?php
}
?>
</document>
<?php
plxUtils::write(XML_HEADER . ob_get_clean(), path('XMLFILE_PARAMETERS'));
# Création du fichier des utilisateurs
ob_start();
$salt = plxUtils::charAleatoire(10);
?>
<document>
<user number="001" active="1" profil="0" delete="0">
<login><![CDATA[<?= trim($content['login']) ?>]]></login>
<name><![CDATA[<?= $content['name'] ?>]]></name>
<infos><![CDATA[]]></infos>
<password><![CDATA[<?= sha1($salt . md5(trim($content['password1']))) ?>]]></password>
<salt><![CDATA[<?= $salt ?>]]></salt>
<email><![CDATA[<?= trim($content['email']) ?>]]></email>
<lang><![CDATA[<?= $config['default_lang'] ?>]]></lang>
<password_token></password_token>
<password_token_expiry></password_token_expiry>
<last_connexion></last_connexion>
<connected_on></connected_on>
</user>
</document>
<?php
plxUtils::write(XML_HEADER . ob_get_clean(), path('XMLFILE_USERS'));
# Création du fichier des categories
ob_start();
?>
<document>
<?php
if($content['data']>0) {
?>
<categorie number="001" active="1" homepage="1" tri="<?= $config['tri'] ?>" bypage="<?= $config['bypage'] ?>" menu="oui" url="<?= L_DEFAULT_CATEGORY_URL ?>" template="categorie.php">
<name><![CDATA[<?= plxUtils::strRevCheck(L_DEFAULT_CATEGORY_TITLE) ?>]]></name>
<description></description>
<meta_description></meta_description>
<meta_keywords></meta_keywords>
<title_htmltag></title_htmltag>
<thumbnail></thumbnail>
<thumbnail_title></thumbnail_title>
<thumbnail_alt></thumbnail_alt>
</categorie>
<?php
}
?>
</document>
<?php
plxUtils::write(XML_HEADER . ob_get_clean(), path('XMLFILE_CATEGORIES'));
# Création du fichier des pages statiques
ob_start();
?>
<document>
<?php
if($content['data'] > 0) {
$now = date('YmdHi');
?>
<statique number="001" active="1" menu="oui" url="<?= L_DEFAULT_STATIC_URL ?>" template="static.php">
<group></group>
<name><![CDATA[<?= plxUtils::strRevCheck(L_DEFAULT_STATIC_TITLE) ?>]]></name>
<meta_description></meta_description>
<meta_keywords></meta_keywords>
<title_htmltag></title_htmltag>
<date_creation><?= $now ?></date_creation>
<date_update><?= $now ?></date_update>
</statique>
<?php
}
?>
</document>
<?php
plxUtils::write(XML_HEADER . ob_get_clean(), path('XMLFILE_STATICS'));
if($content['data'] > 0) {
plxUtils::write(file_get_contents(PLX_CORE.'/templates/install-page.txt'),PLX_ROOT.$config['racine_statiques'].'001.'.L_DEFAULT_STATIC_URL.'.php');
}
if($content['data'] > 0){
# Création du premier article
$html = explode('-----', file_get_contents(PLX_CORE.'/templates/install-article.txt'));
ob_start();
?>
<document>
<title><![CDATA[<?= plxUtils::strRevCheck(L_DEFAULT_ARTICLE_TITLE) ?>]]></title>
<allow_com>1</allow_com>
<template>article.php</template>
<chapo><![CDATA[<?= $html[0] ?>]]></chapo>
<content><![CDATA[<?= $html[1] ?>]]></content>
<tags><![CDATA[PluXml]]></tags>
<meta_description></meta_description>
<meta_keywords><![CDATA[pluxml,cms,xml]]></meta_keywords>
<title_htmltag></title_htmltag>
<date_creation><?= $now ?></date_creation>
<date_update><?= $now ?></date_update>
<thumbnail>core/admin/theme/images/pluxml.png</thumbnail>
<thumbnail_alt><![CDATA[PluXml logo]]></thumbnail_alt>
<thumbnail_title><![CDATA[PluXml]]></thumbnail_title>
</document>
<?php
plxUtils::write(XML_HEADER . ob_get_clean(), PLX_ROOT.$config['racine_articles'].'0001.001.001.'.date('YmdHi').'.'.L_DEFAULT_ARTICLE_URL.'.xml');
}
# Création du fichier des tags servant de cache
ob_start();
?>
<document>
<?php
if($content['data'] > 0) {
?>
<article number="0001" date="<?= $now ?>" active="1"><![CDATA[PluXml]]></article>
<?php
}
?>
</document>
<?php
plxUtils::write(XML_HEADER . ob_get_clean(), path('XMLFILE_TAGS'));
# Création du fichier des plugins
ob_start();
?>
<document>
</document>
<?php
plxUtils::write(XML_HEADER . ob_get_clean(), path('XMLFILE_PLUGINS'));
if($content['data']>0) {
# Création du premier commentaire
ob_start();
?>
<comment>
<author><![CDATA[pluxml]]></author>
<type>normal</type>
<ip>127.0.0.1</ip>
<mail><![CDATA[[email protected]]]></mail>
<site><![CDATA[<?= PLX_URL_REPO ?>]]></site>
<content><![CDATA[<?= plxUtils::strRevCheck(L_DEFAULT_COMMENT_CONTENT) ?>]]></content>
</comment>
<?php
plxUtils::write(XML_HEADER . ob_get_clean(), PLX_ROOT . $config['racine_commentaires'] . '0001.' . date('U') . '-1.xml');
}
} # end of function install($content, $config)
$msg='';
if(!empty($_POST['install'])) {
if(empty(trim($_POST['name']))) $msg = L_ERR_MISSING_USER;
elseif(empty(trim($_POST['login']))) $msg = L_ERR_MISSING_LOGIN;
elseif(empty(trim($_POST['password1']))) $msg = L_ERR_MISSING_PASSWORD;
elseif(trim($_POST['password1']) != $_POST['password2']) $msg = L_ERR_CONFIRM_PASSWORD;
elseif(empty(filter_input(INPUT_POST, 'email', FILTER_VALIDATE_EMAIL))) $msg = L_ERR_MISSING_EMAIL;
else {
install($_POST, $config);
header('Location: '.plxUtils::getRacine());
exit;
}
$name=$_POST['name'];
$login=$_POST['login'];
$email=$_POST['email'];
$data=$_POST['data'];
}
else {
$name='';
$login='';
$email='';
$data='1';
}
plxUtils::cleanHeaders();
?>
<!DOCTYPE html>
<head>
<meta charset="<?= strtolower(PLX_CHARSET) ?>" />
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">
<title><?= L_PLUXML_INSTALLATION.' '.L_VERSION.' '.PLX_VERSION ?></title>
<link rel="stylesheet" type="text/css" href="<?= PLX_CORE ?>admin/theme/plucss.css" media="screen" />
<link rel="stylesheet" type="text/css" href="<?= PLX_CORE ?>admin/theme/theme.css" media="screen" />
</head>
<body>
<main class="main grid">
<aside class="aside col sml-12 med-3 lrg-2">
</aside>
<section class="section col sml-12 med-9 med-offset-3 lrg-10 lrg-offset-2" style="margin-top: 0">
<header>
<h1><?= L_PLUXML_VERSION.' '.PLX_VERSION ?> - <?= L_INSTALL_TITLE ?></h1>
</header>
<?php if(!empty(trim($msg))) { ?>
<div class="alert red">
<?= $msg ?>
</div>
<?php } ?>
<?php
if(
is_writable(PLX_ROOT . PLX_CONFIG_PATH) and
is_writable(PLX_ROOT . PLX_ROOT.dirname($config['racine_articles'])) and
is_writable(PLX_ROOT . PLX_ROOT.$config['racine_plugins']) and
is_writable(PLX_ROOT . PLX_ROOT.$config['racine_themes']) and
function_exists('xml_parser_create')
) {
?>
<form method="post">
<fieldset>
<?= plxToken::getTokenPostMethod() ?>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_default_lang"><?= L_SELECT_LANG ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printSelect('default_lang', plxUtils::getLangs(), $lang) ?>
<input type="submit" name="select_lang" value="<?= L_INPUT_CHANGE ?>" />
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_default_lang"><?= L_INSTALL_DATA ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printSelect('data', array('1' => L_YES, '0' => L_NO), $data) ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_name"><?= L_USERNAME ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('name', $name, 'text', '20-48',false,'','','autofocus', true) ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_login"><?= L_LOGIN ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('login', $login, 'text', '20-48', '', '', '', '', true) ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_password1"><?= L_PASSWORD ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('password1', '', 'password', '20-48', false, '', '', '', true) ?>
<span data-lang="<?= passwordDict() ?>"></span>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_password2"><?= L_CONFIRM_PASSWORD ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('password2', '', 'password', '20-48', false, '', '', 'autocomplete="off" data-mismatch="' . addslashes(L_ERR_CONFIRM_PASSWORD) . '"', true) ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_email"><?= L_EMAIL ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('email', $email, 'email', '20-48', '', '', '', '', true) ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_timezone"><?= L_TIMEZONE ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printSelect('timezone', plxTimezones::timezones(), $timezone); ?>
</div>
</div>
<input class="blue" type="submit" name="install" value="<?= L_INPUT_INSTALL ?>" />
</fieldset>
</form>
<?php
}
?>
<ul class="unstyled-list">
<li><strong><?= L_PLUXML_VERSION; ?> <?= PLX_VERSION ?> (<?= L_INFO_CHARSET ?> <?= PLX_CHARSET ?>)</strong></li>
<li><?= L_INFO_PHP_VERSION.' : '.phpversion() ?></li>
<?php if (!empty($_SERVER['SERVER_SOFTWARE'])) { ?>
<li><?= $_SERVER['SERVER_SOFTWARE']; ?><?= !empty(PHP_SAPI) ? ' - ' . PHP_SAPI : '' ?></li>
<?php } ?>
<?php plxUtils::testWrite(PLX_ROOT.'config.php') ?>
<?php plxUtils::testWrite(PLX_ROOT.PLX_CONFIG_PATH) ?>
<?php plxUtils::testWrite(PLX_ROOT.PLX_CONFIG_PATH.'plugins/') ?>
<?php plxUtils::testWrite(PLX_ROOT.$config['racine_articles']) ?>
<?php plxUtils::testWrite(PLX_ROOT.$config['racine_commentaires']) ?>
<?php plxUtils::testWrite(PLX_ROOT.$config['racine_statiques']) ?>
<?php plxUtils::testWrite(PLX_ROOT.$config['medias']) ?>
<?php plxUtils::testWrite(PLX_ROOT.$config['racine_plugins']) ?>
<?php plxUtils::testWrite(PLX_ROOT.$config['racine_themes']) ?>
<?php plxUtils::testModReWrite() ?>
<?php plxUtils::testLibGD() ?>
<?php plxUtils::testLibXml() ?>
<?php plxUtils::testMail() ?>
</ul>
</section>
</main>
<script src="<?= PLX_CORE ?>admin/js/visual.js"></script>
</body>
</html>