2016-07-12 10:06:46 +00:00
|
|
|
<?php
|
|
|
|
|
2016-10-18 14:03:03 +00:00
|
|
|
namespace viewer\view\machine;
|
|
|
|
use \viewer\core\Viewer;
|
2017-01-30 17:39:21 +00:00
|
|
|
use \api\core\Request;
|
2016-10-18 17:09:47 +00:00
|
|
|
use \error\core\Error;
|
2017-01-30 17:39:21 +00:00
|
|
|
use \error\core\Err;
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-11 16:31:59 +00:00
|
|
|
class view{
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-06 16:09:01 +00:00
|
|
|
public static function render(){
|
|
|
|
/* [1] Init Twig
|
|
|
|
=========================================================*/
|
|
|
|
$loader = new \Twig_Loader_Filesystem(__BUILD__.'/viewer/view');
|
|
|
|
$twig = new \Twig_Environment($loader, []);
|
|
|
|
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-06 16:09:01 +00:00
|
|
|
/* [2] Store variables
|
|
|
|
=========================================================*/
|
|
|
|
$variables = [
|
|
|
|
'p_icon' => [
|
|
|
|
'remove' => file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/remove.svg' ),
|
|
|
|
'edit' => file_get_contents( __PUBLIC__.'/src/static/sub-menu-side/edit.svg' ),
|
|
|
|
'group' => file_get_contents( __PUBLIC__.'/src/static/container/group.svg' )
|
|
|
|
],
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-06 16:09:01 +00:00
|
|
|
'p_theme' => $_SESSION['WAREHOUSE']['theme']
|
|
|
|
];
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-06 16:09:01 +00:00
|
|
|
/* [3] Store functions
|
|
|
|
=========================================================*/
|
|
|
|
$twig->addFunction(new \Twig_Function('f_machines', function(){
|
2017-01-30 17:39:21 +00:00
|
|
|
$request = new Request('machineDefault/getAll'); // On utilise la methode 'getAll' du module 'machineDefault'
|
2017-01-06 16:09:01 +00:00
|
|
|
$answer = $request->dispatch(); // On recupere la reponse
|
2017-01-30 18:59:06 +00:00
|
|
|
//
|
2017-01-06 16:09:01 +00:00
|
|
|
// si erreur, on affiche rien par défaut
|
2017-01-30 17:39:21 +00:00
|
|
|
if( $answer->error->get() != Err::Success )
|
2017-01-06 16:09:01 +00:00
|
|
|
return [];
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-06 16:09:01 +00:00
|
|
|
return $answer->get('machines');
|
|
|
|
}));
|
2017-02-19 15:31:26 +00:00
|
|
|
|
2017-02-19 17:07:04 +00:00
|
|
|
$twig->addFunction(new \Twig_Function('f_getstate', function($id_machine){
|
|
|
|
/* (1) Write / Execute request */
|
|
|
|
$req = new Request('machineDefault/getState', ['id_machine' => $id_machine]);
|
|
|
|
$res = $req->dispatch();
|
|
|
|
|
|
|
|
/* (2) Manage error */
|
|
|
|
if( $res->error->get() != Err::Success )
|
|
|
|
return 'detached';
|
|
|
|
|
|
|
|
return $res->get('state');
|
2017-02-19 15:31:26 +00:00
|
|
|
}));
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-06 16:09:01 +00:00
|
|
|
$twig->addFunction(new \Twig_Function('f_clusters', function($id_machine){
|
2017-01-30 18:59:06 +00:00
|
|
|
$request = new Request('machineDefault/getClusters', [
|
2017-01-06 16:09:01 +00:00
|
|
|
'id_machine' => (int) $id_machine
|
|
|
|
]);
|
|
|
|
|
2017-01-30 18:59:06 +00:00
|
|
|
$answer = $request->dispatch();
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-06 16:09:01 +00:00
|
|
|
// si erreur, on affiche rien par défaut
|
2017-01-30 18:59:06 +00:00
|
|
|
if( $answer->error->get() != Err::Success )
|
2017-01-06 16:09:01 +00:00
|
|
|
return [];
|
2016-07-12 10:06:46 +00:00
|
|
|
|
2017-01-30 18:59:06 +00:00
|
|
|
return $answer->get('clusters');
|
2017-01-06 16:09:01 +00:00
|
|
|
}));
|
2016-07-12 10:06:46 +00:00
|
|
|
|
|
|
|
|
2017-01-06 16:09:01 +00:00
|
|
|
/* [4] Build the whole stuff
|
|
|
|
=========================================================*/
|
2017-01-11 16:31:59 +00:00
|
|
|
return $twig->render('machine/view.twig', [
|
2017-01-06 16:09:01 +00:00
|
|
|
'p_icon' => $variables['p_icon'],
|
|
|
|
'p_theme' => $variables['p_theme']
|
|
|
|
]);
|
2016-07-12 10:06:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|