2017-01-06 09:27:30 +00:00
|
|
|
<?php
|
2016-07-02 15:10:41 +00:00
|
|
|
|
2017-09-19 14:38:16 +00:00
|
|
|
require_once '../vendor/autoload.php';
|
2016-02-01 22:09:35 +00:00
|
|
|
|
2016-10-18 14:03:03 +00:00
|
|
|
use \router\core\Router;
|
2017-01-30 17:39:21 +00:00
|
|
|
use \api\core\Request;
|
|
|
|
use \api\core\Response;
|
2016-11-05 13:57:35 +00:00
|
|
|
use \database\core\DatabaseDriver;
|
2017-01-30 18:59:06 +00:00
|
|
|
use \api\core\AuthSystemDefault;
|
2016-10-18 14:03:03 +00:00
|
|
|
|
2016-02-13 17:41:19 +00:00
|
|
|
|
2016-02-02 22:29:30 +00:00
|
|
|
/*******************************************/
|
|
|
|
/* DEBUGGER */
|
|
|
|
/*******************************************/
|
2016-02-04 22:45:03 +00:00
|
|
|
debug();
|
2016-02-02 22:29:30 +00:00
|
|
|
/*******************************************/
|
2016-07-04 09:04:49 +00:00
|
|
|
/* DEBUGGER */
|
|
|
|
/*******************************************/
|
|
|
|
|
2016-07-08 13:18:23 +00:00
|
|
|
/* [1] Gestion des authentifications et des droits
|
2016-07-07 15:59:31 +00:00
|
|
|
=========================================================*/
|
2016-07-08 13:18:23 +00:00
|
|
|
/* (1) On met à jour l'authentification et les permissions */
|
2017-02-19 11:14:03 +00:00
|
|
|
Request::setAuthSystem(new AuthSystemDefault);
|
|
|
|
|
2017-01-30 18:59:06 +00:00
|
|
|
$auth = AuthSystemDefault::auth();
|
2017-01-30 17:39:21 +00:00
|
|
|
|
2016-07-04 09:04:49 +00:00
|
|
|
|
|
|
|
|
2016-07-10 13:23:53 +00:00
|
|
|
/* (2) On définit la page d'accueil */
|
2016-07-21 10:23:18 +00:00
|
|
|
if( $auth == 2 ) define('__REDIRECT__', 'Location: /history/'); // Connecté -> Accès
|
2016-07-10 13:23:53 +00:00
|
|
|
elseif( $auth == 1 ) define('__REDIRECT__', 'Location: /admin/'); // Pas identifié -> Identification
|
|
|
|
else define('__REDIRECT__', 'Location: /warehouse/'); // Pas localisé -> Localisation
|
2016-07-04 09:04:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-07-16 11:05:24 +00:00
|
|
|
|
|
|
|
|
2016-07-04 09:04:49 +00:00
|
|
|
/* [2] Gestion du routage
|
|
|
|
=========================================================*/
|
|
|
|
|
|
|
|
/* (1) On initialise le routeur
|
|
|
|
---------------------------------------------------------*/
|
|
|
|
$R = new Router( $_GET['url'] );
|
2016-02-01 22:09:35 +00:00
|
|
|
|
2016-07-03 12:20:42 +00:00
|
|
|
|
2016-07-16 11:05:24 +00:00
|
|
|
/* (2) Gestion des SVG avec couleur modifiée */
|
|
|
|
// path/to/resource/filename-HEXADE.svg
|
|
|
|
$R->get('(.+)@([a-f0-9]{6})(\.svg)', function($matches){
|
2016-10-18 14:03:03 +00:00
|
|
|
$path = __PUBLIC__.'/'.$matches[0].$matches[2];
|
2016-07-16 11:05:24 +00:00
|
|
|
|
|
|
|
header('Content-Type: image/svg+xml');
|
|
|
|
|
|
|
|
// On crée la partie ajoutée
|
|
|
|
$stylesheet = "\n<style type='text/css'>\n";
|
|
|
|
$stylesheet .= "\t#stylisable{\n";
|
|
|
|
$stylesheet .= "\t\tfill: #".$matches[1]." !important;\n";
|
|
|
|
$stylesheet .= "\t\tfill-opacity: 1 !important;\n";
|
|
|
|
$stylesheet .= "\t}\n";
|
2017-01-15 16:27:02 +00:00
|
|
|
$stylesheet .= "\t#stroke-stylisable{\n";
|
|
|
|
$stylesheet .= "\t\tstroke: #".$matches[1]." !important;\n";
|
|
|
|
$stylesheet .= "\t\tstroke-opacity: 1 !important;\n";
|
|
|
|
$stylesheet .= "\t}\n";
|
2016-07-16 11:05:24 +00:00
|
|
|
$stylesheet .= "</style></svg>";
|
|
|
|
|
|
|
|
// On récupère le fichier
|
|
|
|
$file = file_get_contents($path);
|
|
|
|
|
|
|
|
// On ajoute le style
|
|
|
|
$file = str_replace('</svg>', $stylesheet, $file);
|
|
|
|
|
|
|
|
echo $file;
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-07-08 13:18:23 +00:00
|
|
|
/* (3) On cree les regles de routage QUAND ON EST CONNECTE
|
2016-07-04 09:04:49 +00:00
|
|
|
---------------------------------------------------------*/
|
2016-07-08 13:18:23 +00:00
|
|
|
/* (2) Si on est connecté */
|
|
|
|
if( $auth == 2 ){
|
|
|
|
|
2016-07-10 13:23:53 +00:00
|
|
|
|
2017-01-13 17:17:31 +00:00
|
|
|
// logout from admin
|
|
|
|
$R->get('logout/?', function(){
|
2017-02-17 07:27:34 +00:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'POST';
|
2017-02-19 11:43:37 +00:00
|
|
|
$req = new Request('authentificationDefault/admin', ['username' => '-', 'password' => '']);
|
2017-02-16 17:34:38 +00:00
|
|
|
$res = $req->dispatch();
|
2017-01-13 17:17:31 +00:00
|
|
|
header('Location: /');
|
|
|
|
});
|
2016-07-08 13:18:23 +00:00
|
|
|
|
|
|
|
// nomPage/arg1/arg2 -> inclusion de la page
|
2016-07-10 13:23:53 +00:00
|
|
|
$R->get('(.*)', function($m){
|
|
|
|
// Liste des pages du site
|
2017-09-23 17:40:37 +00:00
|
|
|
$page_list = [ 'history', 'profile', 'machines', 'users', 'groups', 'options', 'settings' ];
|
2016-07-16 11:05:24 +00:00
|
|
|
|
2016-07-10 13:23:53 +00:00
|
|
|
|
|
|
|
if( !preg_match('#^(?:'.implode('|', $page_list).')(?:/[\w-]+)*/?$#i', $m[0]) )
|
|
|
|
header(__REDIRECT__);
|
|
|
|
else
|
2016-10-18 14:03:03 +00:00
|
|
|
include __PUBLIC__.'/view/view.php';
|
2016-07-10 13:23:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
/* (3) Si on est pas authentifié */
|
|
|
|
}else if( $auth == 1 ){
|
|
|
|
|
2017-01-13 17:17:31 +00:00
|
|
|
// warehouse logout
|
|
|
|
$R->get('logout/?', function(){
|
2017-02-17 07:27:34 +00:00
|
|
|
$_SERVER['REQUEST_METHOD'] = 'POST';
|
2017-02-19 11:43:37 +00:00
|
|
|
(new Request('authentificationDefault/warehouse', ['name' => '---', 'password' => '']))->dispatch();
|
2017-01-13 17:17:31 +00:00
|
|
|
header('Location: /');
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
// admin login page
|
2016-07-10 13:23:53 +00:00
|
|
|
$R->get('(.*)', function($m){
|
|
|
|
if( !preg_match('#^admin/$#', $m[0]) ) header(__REDIRECT__);
|
2016-10-18 14:03:03 +00:00
|
|
|
else include __PUBLIC__.'/view/admin.php';
|
2016-07-10 13:23:53 +00:00
|
|
|
});
|
2016-07-08 13:18:23 +00:00
|
|
|
|
2016-07-10 13:23:53 +00:00
|
|
|
}else{
|
2016-10-18 14:03:03 +00:00
|
|
|
|
2016-07-10 13:23:53 +00:00
|
|
|
$R->get('(.*)', function($m){
|
|
|
|
if( !preg_match('#^warehouse/$#', $m[0]) ) header(__REDIRECT__);
|
2016-10-18 14:03:03 +00:00
|
|
|
else include __PUBLIC__.'/view/warehouse.php';
|
2016-07-10 13:23:53 +00:00
|
|
|
});
|
2016-07-08 13:18:23 +00:00
|
|
|
|
2016-07-10 13:23:53 +00:00
|
|
|
}
|
2016-02-01 22:09:35 +00:00
|
|
|
|
2016-02-03 22:22:18 +00:00
|
|
|
|
2016-02-02 22:29:30 +00:00
|
|
|
|
|
|
|
|
2016-07-04 09:04:49 +00:00
|
|
|
/* (4) api/module/method -> Api */
|
2017-01-30 17:39:21 +00:00
|
|
|
$R->post('api(?:(/.*))/?', function($url){
|
2017-05-12 21:50:41 +00:00
|
|
|
$request = Request::remote($url[0]);
|
2016-07-04 09:04:49 +00:00
|
|
|
$answer = $request->dispatch();
|
2016-07-02 15:10:41 +00:00
|
|
|
|
2016-07-04 09:04:49 +00:00
|
|
|
// Si c'est une réponse (et non un download)
|
2017-01-30 17:39:21 +00:00
|
|
|
if( $answer instanceof Response ){
|
2016-08-06 09:32:50 +00:00
|
|
|
header('Content-Type: application/json; charset=UTF-8');
|
2016-07-04 09:04:49 +00:00
|
|
|
echo $answer->serialize();
|
2016-08-06 09:32:50 +00:00
|
|
|
}
|
2016-07-04 09:04:49 +00:00
|
|
|
});
|
2016-02-04 22:45:03 +00:00
|
|
|
|
2016-07-02 15:10:41 +00:00
|
|
|
|
2017-01-13 17:17:31 +00:00
|
|
|
/* (6) N'importe -> page d'accueil */
|
2016-07-10 13:23:53 +00:00
|
|
|
$R->get('.+', function(){ header(__REDIRECT__); });
|
|
|
|
$R->post('.+', function(){ header(__REDIRECT__); });
|
2016-02-01 22:09:35 +00:00
|
|
|
|
|
|
|
|
2016-02-02 10:09:48 +00:00
|
|
|
|
2016-07-04 09:04:49 +00:00
|
|
|
/* (3) On lance le routeur
|
|
|
|
---------------------------------------------------------*/
|
|
|
|
$R->run();
|
2016-02-01 22:09:35 +00:00
|
|
|
|
2016-07-02 15:10:41 +00:00
|
|
|
?>
|