forked from pluxml/PluXml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.php
362 lines (314 loc) · 12.7 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
<?php
# ------------------ BEGIN LICENSE BLOCK ------------------
#
# This file is part of PluXml : http://www.pluxml.org
#
# Copyright (c) 2010-2015 Stephane Ferrari and contributors
# Copyright (c) 2008-2009 Florent MONTHEL and contributors
# Copyright (c) 2006-2008 Anthony GUERIN
# Licensed under the GPL license.
# See http://www.gnu.org/licenses/gpl.html
#
# ------------------- END LICENSE BLOCK -------------------
define('PLX_ROOT', './');
define('PLX_CORE', PLX_ROOT.'core/');
include(PLX_ROOT.'config.php');
include(PLX_CORE.'lib/config.php');
# On démarre la session
session_start();
# On inclut les librairies nécessaires
include(PLX_CORE.'lib/class.plx.timezones.php');
include(PLX_CORE.'lib/class.plx.date.php');
include(PLX_CORE.'lib/class.plx.glob.php');
include(PLX_CORE.'lib/class.plx.utils.php');
include(PLX_CORE.'lib/class.plx.token.php');
# Chargement des langues
$lang = DEFAULT_LANG;
if(isset($_POST['default_lang'])) $lang=$_POST['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 que PHP 5 ou superieur soit installé
if(version_compare(PHP_VERSION, '5.0.0', '<')){
header('Content-Type: text/plain charset=UTF-8');
echo utf8_decode(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 utf8_decode(L_ERR_PLUXML_ALREADY_INSTALLED);
exit;
}
# Control du token du formulaire
plxToken::validateFormToken($_POST);
# Vérification de l'existence des dossiers médias
if(!is_dir(PLX_ROOT.'data/medias')) {
@mkdir(PLX_ROOT.'data/medias',0755,true);
}
# Vérification de l'existence du dossier data/configuration/plugins
if(!is_dir(PLX_ROOT.PLX_CONFIG_PATH.'plugins')) {
@mkdir(PLX_ROOT.PLX_CONFIG_PATH.'plugins',0755,true);
}
# 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
$f = file(PLX_ROOT.'version');
$version = $f['0'];
$config = array('title'=>'PluXml',
'description'=>plxUtils::strRevCheck(L_SITE_DESCRIPTION),
'meta_description'=>'',
'meta_keywords'=>'',
'timezone'=>$timezone,
'allow_com'=>1,
'mod_com'=>0,
'mod_art'=>0,
'capcha'=>1,
'style'=>'defaut',
'clef'=>plxUtils::charAleatoire(15),
'bypage'=>5,
'bypage_archives'=>5,
'bypage_admin'=>10,
'bypage_admin_coms'=>10,
'bypage_feed'=>8,
'tri'=>'desc',
'tri_coms'=>'asc',
'images_l'=>800,
'images_h'=>600,
'miniatures_l'=>200,
'miniatures_h'=>100,
'thumbs'=>1,
'medias'=>'data/medias/',
'racine_articles'=>'data/articles/',
'racine_commentaires'=>'data/commentaires/',
'racine_statiques'=>'data/statiques/',
'racine_themes'=>'themes/',
'racine_plugins'=>'plugins/',
'homestatic'=>'',
'hometemplate'=>'home.php',
'urlrewriting'=>0,
'gzip'=>0,
'feed_chapo'=>0,
'feed_footer'=>'',
'version'=>$version,
'default_lang'=>$lang,
'userfolders'=>0,
'display_empty_cat'=>0,
'custom_admincss_file'=>''
);
function install($content, $config) {
# gestion du timezone
date_default_timezone_set($config['timezone']);
# Création du fichier de configuration
$xml = '<?xml version="1.0" encoding="'.PLX_CHARSET.'"?>'."\n";
$xml .= '<document>'."\n";
foreach($config as $k=>$v) {
if(is_numeric($v))
$xml .= "\t<parametre name=\"$k\">".$v."</parametre>\n";
else
$xml .= "\t<parametre name=\"$k\"><![CDATA[".plxUtils::cdataCheck($v)."]]></parametre>\n";
}
$xml .= '</document>';
plxUtils::write($xml,path('XMLFILE_PARAMETERS'));
# Création du fichier des utilisateurs
$salt = plxUtils::charAleatoire(10);
$xml = '<?xml version="1.0" encoding="'.PLX_CHARSET.'"?>'."\n";
$xml .= "<document>\n";
$xml .= "\t".'<user number="001" active="1" profil="0" delete="0">'."\n";
$xml .= "\t\t".'<login><![CDATA['.trim($content['login']).']]></login>'."\n";
$xml .= "\t\t".'<name><![CDATA['.trim($content['name']).']]></name>'."\n";
$xml .= "\t\t".'<infos><![CDATA[]]></infos>'."\n";
$xml .= "\t\t".'<password><![CDATA['.sha1($salt.md5(trim($content['pwd']))).']]></password>'."\n";
$xml .= "\t\t".'<salt><![CDATA['.$salt.']]></salt>'."\n";
$xml .= "\t\t".'<email><![CDATA[]]></email>'."\n";
$xml .= "\t\t".'<lang><![CDATA['.$config['default_lang'].']]></lang>'."\n";
$xml .= "\t</user>\n";
$xml .= "</document>";
plxUtils::write($xml,path('XMLFILE_USERS'));
# Création du fichier des categories
$xml = '<?xml version="1.0" encoding="'.PLX_CHARSET.'"?>'."\n";
$xml .= '<document>'."\n";
$xml .= "\t".'<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><![CDATA[]]></description><meta_description><![CDATA[]]></meta_description><meta_keywords><![CDATA[]]></meta_keywords><title_htmltag><![CDATA[]]></title_htmltag></categorie>'."\n";
$xml .= '</document>';
plxUtils::write($xml,path('XMLFILE_CATEGORIES'));
# Création du fichier des pages statiques
$xml = '<?xml version="1.0" encoding="'.PLX_CHARSET.'"?>'."\n";
$xml .= '<document>'."\n";
$xml .= "\t".'<statique number="001" active="1" menu="oui" url="'.L_DEFAULT_STATIC_URL.'" template="static.php"><group><![CDATA[]]></group><name><![CDATA['.plxUtils::strRevCheck(L_DEFAULT_STATIC_TITLE).']]></name><meta_description><![CDATA[]]></meta_description><meta_keywords><![CDATA[]]></meta_keywords><title_htmltag><![CDATA[]]></title_htmltag></statique>'."\n";
$xml .= '</document>';
plxUtils::write($xml,path('XMLFILE_STATICS'));
plxUtils::write(file_get_contents(PLX_CORE.'/lib/html.static.txt'),PLX_ROOT.$config['racine_statiques'].'001.'.L_DEFAULT_STATIC_URL.'.php');
# Création du premier article
$html = explode('-----', file_get_contents(PLX_CORE.'/lib/html.article.txt'));
$xml = '<?xml version="1.0" encoding="'.PLX_CHARSET.'"?>'."\n";
$xml .= '<document>
<title><![CDATA['.plxUtils::strRevCheck(L_DEFAULT_ARTICLE_TITLE).']]></title>
<allow_com>1</allow_com>
<template><![CDATA[article.php]]></template>
<chapo>
<![CDATA['.$html[0].']]>
</chapo>
<content>
<![CDATA['.$html[1].']]>
</content>
<tags>
<![CDATA[PluXml]]>
</tags>
<meta_description>
<![CDATA[]]>
</meta_description>
<meta_keywords>
<![CDATA[]]>
</meta_keywords>
<title_htmltag>
<![CDATA[]]>
</title_htmltag>
</document>';
plxUtils::write($xml,PLX_ROOT.$config['racine_articles'].'0001.001.001.'.date('YmdHi').'.'.L_DEFAULT_ARTICLE_URL.'.xml');
# Création du fichier des tags servant de cache
$xml = '<?xml version="1.0" encoding="'.PLX_CHARSET.'"?>'."\n";
$xml .= '<document>'."\n";
$xml .= "\t".'<article number="0001" date="'.date('YmdHi').'" active="1"><![CDATA[PluXml]]></article>'."\n";
$xml .= '</document>';
plxUtils::write($xml,path('XMLFILE_TAGS'));
# Création du fichier des plugins
$xml = '<?xml version="1.0" encoding="'.PLX_CHARSET.'"?>'."\n";
$xml .= '<document>'."\n";
$xml .= '</document>';
plxUtils::write($xml,path('XMLFILE_PLUGINS'));
# Création du premier commentaire
$xml = '<?xml version="1.0" encoding="'.PLX_CHARSET.'"?>'."\n";
$xml .= '<comment>
<author><![CDATA[pluxml]]></author>
<type>normal</type>
<ip>127.0.0.1</ip>
<mail><![CDATA[[email protected]]]></mail>
<site><![CDATA[http://www.pluxml.org]]></site>
<content><![CDATA['.plxUtils::strRevCheck(L_DEFAULT_COMMENT_CONTENT).']]></content>
</comment>';
plxUtils::write($xml,PLX_ROOT.$config['racine_commentaires'].'0001.'.date('U').'-1.xml');
}
$msg='';
if(!empty($_POST['install'])) {
if(trim($_POST['name']=='')) $msg = L_ERR_MISSING_USER;
elseif(trim($_POST['login']=='')) $msg = L_ERR_MISSING_LOGIN;
elseif(trim($_POST['pwd']=='')) $msg = L_ERR_MISSING_PASSWORD;
elseif($_POST['pwd']!=$_POST['pwd2']) $msg = L_ERR_PASSWORD_CONFIRMATION;
else {
install($_POST, $config);
header('Location: '.plxUtils::getRacine());
exit;
}
$name=$_POST['name'];
$login=$_POST['login'];
}
else {
$name='';
$login='';
}
plxUtils::cleanHeaders();
?>
<!DOCTYPE html>
<head>
<meta charset="<?php echo strtolower(PLX_CHARSET) ?>" />
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">
<title><?php echo L_PLUXML_INSTALLATION.' '.L_VERSION.' '.$version ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo PLX_CORE ?>admin/theme/plucss.css" media="screen" />
<link rel="stylesheet" type="text/css" href="<?php echo PLX_CORE ?>admin/theme/theme.css" media="screen" />
</head>
<body onload="document.forms[1].name.focus();">
<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><?php echo L_PLUXML_VERSION.' '.$version ?> - <?php echo L_INSTALL_TITLE ?></h1>
</header>
<?php if($msg!='') echo '<div class="alert red">'.$msg.'</div>'; ?>
<form action="install.php" method="post">
<fieldset>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_default_lang"><?php echo 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="<?php echo L_INPUT_CHANGE ?>" />
<?php echo plxToken::getTokenPostMethod() ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_name"><?php echo L_USERNAME ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('name', $name, 'text', '20-255') ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_login"><?php echo L_LOGIN ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('login', $login, 'text', '20-255') ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_pwd"><?php echo L_PASSWORD ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('pwd', '', 'password', '20-255') ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_pwd2"><?php echo L_PASSWORD_CONFIRMATION ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printInput('pwd2', '', 'password', '20-255') ?>
</div>
</div>
<div class="grid">
<div class="col sml-12 med-5 label-centered">
<label for="id_timezone"><?php echo L_TIMEZONE ?> :</label>
</div>
<div class="col sml-12 med-7">
<?php plxUtils::printSelect('timezone', plxTimezones::timezones(), $timezone); ?>
</div>
</div>
<ul class="unstyled-list">
<li><strong><?php echo L_PLUXML_VERSION; ?> <?php echo $version; ?> (<?php echo L_INFO_CHARSET ?> <?php echo PLX_CHARSET ?>)</strong></li>
<li><?php echo L_INFO_PHP_VERSION.' : '.phpversion() ?></li>
<?php if (!empty($_SERVER['SERVER_SOFTWARE'])) { ?>
<li><?php echo $_SERVER['SERVER_SOFTWARE']; ?></li>
<?php } ?>
<li><?php echo L_INFO_MAGIC_QUOTES.' : '.get_magic_quotes_gpc() ?></li>
<?php plxUtils::testWrite(PLX_ROOT.PLX_CONFIG_PATH) ?>
<?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::testModReWrite() ?>
<?php plxUtils::testLibGD() ?>
<?php plxUtils::testMail() ?>
</ul>
<input type="submit" name="install" value="<?php echo L_INPUT_INSTALL ?>" />
<?php plxUtils::printInput('default_lang', $lang, 'hidden') ?>
<?php echo plxToken::getTokenPostMethod() ?>
</fieldset>
</form>
</section>
</main>
</body>
</html>