]> git.agnieray.net Git - galette.git/blob - galette/includes/galette.inc.php
Bump version
[galette.git] / galette / includes / galette.inc.php
1 <?php
2
3 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
4
5 /**
6 * Main Galette initialisation
7 *
8 * PHP version 5
9 *
10 * Copyright © 2009-2021 The Galette Team
11 *
12 * This file is part of Galette (http://galette.tuxfamily.org).
13 *
14 * Galette is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * Galette is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Galette. If not, see <http://www.gnu.org/licenses/>.
26 *
27 * @category Main
28 * @package Galette
29 *
30 * @author Johan Cwiklinski <johan@x-tnd.be>
31 * @copyright 2007-2021 The Galette Team
32 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version
33 * @link http://galette.tuxfamily.org
34 * @since Available since 0.7-dev - 2007-10-07
35 */
36
37 //define galette's root directory
38 if (!defined('GALETTE_ROOT')) {
39 define('GALETTE_ROOT', __DIR__ . '/../');
40 }
41
42 require_once GALETTE_ROOT . 'config/versions.inc.php';
43 require_once GALETTE_ROOT . 'config/paths.inc.php';
44
45 // check required PHP version...
46 if (version_compare(PHP_VERSION, GALETTE_PHP_MIN, '<')) {
47 echo 'Galette is NOT compliant with your current PHP version. ' .
48 'Galette requires PHP ' . GALETTE_PHP_MIN .
49 ' minimum and current version is ' . phpversion();
50 die(1);
51 }
52
53 $time_start = microtime(true);
54 $cron = (PHP_SAPI === 'cli');
55
56 // define relative base path templating can use
57 if (!defined('GALETTE_BASE_PATH')) {
58 define('GALETTE_BASE_PATH', './');
59 }
60
61 //we'll only include relevant parts if we work from installer
62 if (!isset($installer)) {
63 $installer = false;
64 }
65 // test if galette is already installed or if we're form installer
66 // and redirect to install page if not
67 $installed = file_exists(GALETTE_CONFIG_PATH . 'config.inc.php');
68 if (!$installed && !$installer) {
69 header('location: ./installer.php');
70 die();
71 }
72
73 if (
74 file_exists(GALETTE_CONFIG_PATH . 'behavior.inc.php')
75 && !defined('GALETTE_TESTS') && !$cron
76 ) {
77 include_once GALETTE_CONFIG_PATH . 'behavior.inc.php';
78 }
79
80 if (isset($installer) && $installer !== true) {
81 //If we're not working from installer
82 include_once GALETTE_CONFIG_PATH . 'config.inc.php';
83 }
84
85 use Analog\Analog;
86 use Analog\Handler;
87 use Analog\Handler\LevelName;
88 use Galette\Core;
89
90 require GALETTE_ROOT . '/vendor/autoload.php';
91
92 //start profiling
93 if (
94 defined('GALETTE_XHPROF_PATH')
95 && function_exists('xhprof_enable')
96 ) {
97 include_once __DIR__ . '/../lib/Galette/Common/XHProf.php';
98 $profiler = new Galette\Common\XHProf();
99 $profiler->start();
100 }
101
102 define('GALETTE_NIGHTLY', false);
103 define('GALETTE_VERSION', 'v0.9.6.1');
104
105 //Version to display
106 if (!defined('GALETTE_HIDE_VERSION')) {
107 define('GALETTE_DISPLAY_VERSION', \Galette\Core\Galette::gitVersion(false));
108 }
109
110 define('GALETTE_COMPAT_VERSION', '0.9.6');
111 define('GALETTE_DB_VERSION', '0.960');
112 if (!defined('GALETTE_MODE')) {
113 define('GALETTE_MODE', \Galette\Core\Galette::MODE_PROD);
114 }
115
116 if (!isset($_COOKIE['show_galette_dashboard'])) {
117 setcookie(
118 'show_galette_dashboard',
119 true,
120 [
121 'expires' => time() + 31536000, //valid for a year
122 'path' => '/'
123 ]
124 );
125 }
126
127 if (!defined('GALETTE_DISPLAY_ERRORS')) {
128 if (GALETTE_MODE === \Galette\Core\Galette::MODE_DEV) {
129 define('GALETTE_DISPLAY_ERRORS', 1);
130 } else {
131 define('GALETTE_DISPLAY_ERRORS', 0);
132 }
133 }
134 ini_set('display_errors', (defined('GALETTE_TESTS') ? '1' : '0'));
135
136 /*------------------------------------------------------------------------------
137 Logger stuff
138 ------------------------------------------------------------------------------*/
139
140 error_reporting(E_ALL);
141 set_error_handler(function ($severity, $message, $file, $line) {
142 if (error_reporting() & $severity) {
143 throw new \ErrorException($message, 0, $severity, $file, $line);
144 }
145 });
146
147 //change default format so the 3rd param is a string for level name
148 Analog::$format = "%s - %s - %s - %s\n";
149 $galette_run_log = null;
150
151 if (!defined('GALETTE_LOG_LVL')) {
152 if (GALETTE_MODE === 'DEV') {
153 define('GALETTE_LOG_LVL', Analog::DEBUG);
154 } elseif (defined('GALETTE_TESTS')) {
155 define('GALETTE_LOG_LVL', Analog::NOTICE);
156 } else {
157 define('GALETTE_LOG_LVL', Analog::WARNING);
158 }
159 }
160
161 if (defined('GALETTE_TESTS')) {
162 $log_path = GALETTE_LOGS_PATH . 'tests.log';
163 $galette_run_log = LevelName::init(Handler\File::init($log_path));
164 } else {
165 $galette_log_var = null;
166
167 if (!$installer || ($installer && defined('GALETTE_LOGGER_CHECKED'))) {
168 //logs everything in galette log file
169 if (!isset($logfile)) {
170 //if no filename has been setted (ie. from install), set default one
171 $logfile = 'galette';
172 }
173 $log_path = GALETTE_LOGS_PATH . $logfile . '.log';
174 $galette_run_log = LevelName::init(Handler\File::init($log_path));
175 } else {
176 $galette_run_log = LevelName::init(Handler\Variable::init($galette_log_var));
177 }
178 if (!$installer) {
179 Core\Logs::cleanup();
180 }
181 }
182
183 Analog::handler($galette_run_log);
184
185 require_once GALETTE_ROOT . 'includes/functions.inc.php';
186
187 if (!$installer and !defined('GALETTE_TESTS')) {
188 //If we're not working from installer nor from tests
189 include_once GALETTE_CONFIG_PATH . 'config.inc.php';
190
191 /**
192 * Database instantiation
193 */
194 $zdb = new Core\Db();
195
196 if ($zdb->checkDbVersion()) {
197
198 /**
199 * Load preferences
200 */
201 $preferences = new Core\Preferences($zdb);
202
203 /**
204 * Set the path to the current theme templates
205 */
206 define(
207 '_CURRENT_THEME_PATH',
208 GALETTE_THEMES_PATH . $preferences->pref_theme . '/'
209 );
210
211 if (!defined('GALETTE_TPL_SUBDIR')) {
212 define(
213 'GALETTE_TPL_SUBDIR',
214 'templates/' . $preferences->pref_theme . '/'
215 );
216 }
217
218 if (!defined('GALETTE_THEME')) {
219 define(
220 'GALETTE_THEME',
221 'themes/' . $preferences->pref_theme . '/'
222 );
223 }
224 } else {
225 $needs_update = true;
226 }
227 }
228
229 $plugins = new Galette\Core\Plugins();
230 //make sure plugins autoload is called before session start
231 $plugins->autoload(GALETTE_PLUGINS_PATH);