-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.php
87 lines (79 loc) · 2.59 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
<?php
/*
* Copyright 2008-2024 Anael MOBILIA
*
* This file is part of image-heberg.fr.
*
* image-heberg.fr is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* image-heberg.fr is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with image-heberg.fr. If not, see <http://www.gnu.org/licenses/>
*/
namespace ImageHeberg;
/*
* Vérification des prérequis basiques
* Ce fichier peut être supprimé après l'installation
*/
echo 'PHP v' . PHP_VERSION . '<br />';
/* 1 - Existence du fichier de config */
$conf = file_exists(__DIR__ . '/config/config.php');
if (!$conf) {
$msg = 'Le fichier de configuration n\'existe pas dans config/config.php !';
echo $msg;
if (!_PHPUNIT_) {
die();
}
}
/* 2 - Requête sur la base de données */
if (!defined('_PHPUNIT_')) {
require 'config/config.php';
}
$res = MaBDD::getInstance()->query('SELECT COUNT(*) AS nbImages FROM images');
if (!$res) {
$msg = 'Erreur de connexion à la base de données, vérifiez les identifiants dans le fichier config/config.php !';
echo $msg;
if (!_PHPUNIT_) {
die();
}
}
$resultat = $res->fetch()->nbImages;
if ($resultat < 2) { // 404 & banned par défaut
$msg = 'La base de données n\'a pas été initialisée correctement avec le fichier database.sql !';
echo $msg;
if (!_PHPUNIT_) {
die();
}
}
/* 3 - droits sur répertoire des images */
if (!is_writable(_PATH_IMAGES_ . '_image_404.png')) {
$msg = 'PHP doit pouvoir écrire dans les répertoires ' . _REPERTOIRE_IMAGE_ . '* !';
echo $msg;
if (!_PHPUNIT_) {
die();
}
}
/* 4 - gestion des sessions */
if (headers_sent()) {
$msg = 'Les entêtes (sessions) ont déjà été envoyés, corrigez votre configuration serveur !';
if (!_PHPUNIT_) {
die($msg);
}
// Sinon, ne rien faire, nous sommes dans l'environnement de tests qui a déjà affiché des données (phpunit...)
}
/* Configuration */
if (_PATH_ !== __DIR__ . '/') {
$msg = 'La variable _PATH_ (' . _PATH_ . ') n\'est pas cohérente avec l\'emplacement de l\'application (' . __DIR__ . ')';
echo $msg;
if (!_PHPUNIT_) {
die();
}
}
echo 'L\'installation est OK !';