forked from GibbonEdu/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gibbon.php
92 lines (74 loc) · 3.61 KB
/
gibbon.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
<?php
/*
Gibbon, Flexible & Open School System
Copyright (C) 2010, Ross Parker
This program 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.
This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
use Gibbon\View\Page;
use Gibbon\View\View;
// Setup the composer autoloader
$autoloader = require_once __DIR__.'/vendor/autoload.php';
// Require the system-wide functions
require_once __DIR__.'/functions.php';
// Core Services
$container = new League\Container\Container();
$container->delegate(new League\Container\ReflectionContainer);
$container->add('autoloader', $autoloader);
$container->inflector(\League\Container\ContainerAwareInterface::class)
->invokeMethod('setContainer', [$container]);
$container->inflector(\Gibbon\Services\BackgroundProcess::class)
->invokeMethod('setProcessor', [\Gibbon\Services\BackgroundProcessor::class]);
$container->addServiceProvider(new Gibbon\Services\CoreServiceProvider(__DIR__));
$container->addServiceProvider(new Gibbon\Services\ViewServiceProvider());
$container->addServiceProvider(new Gibbon\Services\GoogleServiceProvider());
// Globals for backwards compatibility
$gibbon = $container->get('config');
$gibbon->session = $container->get('session');
$gibbon->locale = $container->get('locale');
$guid = $gibbon->getConfig('guid');
$caching = $gibbon->getConfig('caching');
$version = $gibbon->getConfig('version');
// Handle Gibbon installation redirect
if (!$gibbon->isInstalled() && !$gibbon->isInstalling()) {
header("Location: ./installer/install.php");
exit;
}
// Autoload the current module namespace
if (!empty($gibbon->session->get('module'))) {
$moduleNamespace = preg_replace('/[^a-zA-Z0-9]/', '', $gibbon->session->get('module'));
$autoloader->addPsr4('Gibbon\\Module\\'.$moduleNamespace.'\\', realpath(__DIR__).'/modules/'.$gibbon->session->get('module').'/src');
// Temporary backwards-compatibility for external modules (Query Builder)
$autoloader->addPsr4('Gibbon\\'.$moduleNamespace.'\\', realpath(__DIR__).'/modules/'.$gibbon->session->get('module'));
$autoloader->register(true);
}
// Initialize using the database connection
if ($gibbon->isInstalled() == true) {
$mysqlConnector = new Gibbon\Database\MySqlConnector();
if ($pdo = $mysqlConnector->connect($gibbon->getConfig())) {
$container->add('db', $pdo);
$container->share(Gibbon\Contracts\Database\Connection::class, $pdo);
$connection2 = $pdo->getConnection();
$gibbon->initializeCore($container);
} else {
// We need to handle failed database connections after install. Display an error if no connection
// can be established. Needs a specific error page once header/footer is split out of index.
if (!$gibbon->isInstalling()) {
$page = $container->get(Page::class)->setDefaults(__DIR__);
$page->writeFromTemplate('error.twig.html', [
'error' => sprintf(__('A database connection could not be established. Please %1$stry again%2$s.'), '', ''),
'message' => ' ',
]);
echo $page->render('index.twig.html');
exit;
}
}
}