Blame view

webroot/index.php 2.58 KB
6c4edfa3   Alexandre   First Commit LabI...
1
<?php
60b93ff5   Etienne Pallier   Clarification fic...
2
3

/**
66ad693c   Etienne Pallier   Evolution du fram...
4
5
6
7
8
9
10
11
12
13
14

Logiciel LabInvent - Inventaire des matériels d'un laboratoire
Copyright (C) 2012-2021 IRAP Toulouse France - Etienne Pallier epallier@irap.omp.eu

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
LICENCE : GNU AFFERO GENERAL PUBLIC LICENSE v3, 19 November 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
https://spdx.org/licenses/AGPL-3.0.html#licenseText

60b93ff5   Etienne Pallier   Clarification fic...
15
16
*/

6c4edfa3   Alexandre   First Commit LabI...
17
18
19
/**
 * The Front Controller for handling every request
 *
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
20
21
 * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
 * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
6c4edfa3   Alexandre   First Commit LabI...
22
23
24
25
26
 *
 * Licensed under The MIT License
 * For full copyright and license information, please see the LICENSE.txt
 * Redistributions of files must retain the above copyright notice.
 *
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
27
28
 * @copyright     Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
 * @link          https://cakephp.org CakePHP(tm) Project
6c4edfa3   Alexandre   First Commit LabI...
29
 * @since         0.2.9
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
30
 * @license       MIT License (https://opensource.org/licenses/mit-license.php)
6c4edfa3   Alexandre   First Commit LabI...
31
 */
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
32

07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
33
34
35
// Check platform requirements
require dirname(__DIR__) . '/config/requirements.php';

66ad693c   Etienne Pallier   Evolution du fram...
36
// For built-in server
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
37
if (PHP_SAPI === 'cli-server') {
6c4edfa3   Alexandre   First Commit LabI...
38
39
40
41
42
43
44
45
    $_SERVER['PHP_SELF'] = '/' . basename(__FILE__);

    $url = parse_url(urldecode($_SERVER['REQUEST_URI']));
    $file = __DIR__ . $url['path'];
    if (strpos($url['path'], '..') === false && strpos($url['path'], '.') !== false && is_file($file)) {
        return false;
    }
}
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
46
47
require dirname(__DIR__) . '/vendor/autoload.php';

07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
48
49
50
use App\Application;
use Cake\Http\Server;

07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
51

66ad693c   Etienne Pallier   Evolution du fram...
52
53
54

// ORIG
/*
07e4c3fb   Etienne Pallier   v4.108.0-3.7.9 - ...
55
require dirname(__DIR__) . '/config/bootstrap.php';
6c4edfa3   Alexandre   First Commit LabI...
56
57
58
use Cake\Network\Request;
use Cake\Network\Response;
use Cake\Routing\DispatcherFactory;
6c4edfa3   Alexandre   First Commit LabI...
59
60
61
62
$dispatcher = DispatcherFactory::create();
$dispatcher->dispatch(
    Request::createFromGlobals(),
    new Response()
66ad693c   Etienne Pallier   Evolution du fram...
63
64
65
66
67
68
69
70
    );
*/

// Bind your application to the server.
$server = new Server(new Application(dirname(__DIR__) . '/config'));

// Run the request/response through the application and emit the response.
$server->emit($server->run());