2016-04-04 09:47:17 +00:00
|
|
|
<?php define('__ROOT__', dirname(__FILE__) );
|
|
|
|
require_once __ROOT__.'/manager/autoloader.php';
|
|
|
|
|
|
|
|
use \manager\ModuleRequest;
|
|
|
|
use \manager\ResourceDispatcher;
|
2016-04-11 10:20:34 +00:00
|
|
|
use \manager\sessionManager;
|
2016-04-04 09:47:17 +00:00
|
|
|
use \manager\ManagerError;
|
|
|
|
use \manager\Repo;
|
2016-04-17 10:34:24 +00:00
|
|
|
use \manager\Database;
|
2016-04-04 09:47:17 +00:00
|
|
|
|
2016-04-11 14:05:32 +00:00
|
|
|
use \api\client;
|
2016-04-04 09:47:17 +00:00
|
|
|
|
2016-04-18 14:21:24 +00:00
|
|
|
debug();
|
2016-04-04 09:47:17 +00:00
|
|
|
|
|
|
|
|
2016-04-04 12:04:36 +00:00
|
|
|
/* PARSAGE DE JOURNAUX D'APPEL
|
2016-04-04 09:47:17 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
2016-04-04 12:04:36 +00:00
|
|
|
function parseCallLog(){
|
2016-04-08 14:58:40 +00:00
|
|
|
/* [2] On cree la requete
|
2016-04-04 12:04:36 +00:00
|
|
|
=========================================================*/
|
2016-04-18 14:21:24 +00:00
|
|
|
$request = new ModuleRequest('call_log/unserialize', array(
|
2016-04-20 13:21:01 +00:00
|
|
|
'phone_number' => '01 02 03 04 05'
|
|
|
|
));
|
2016-04-13 12:49:53 +00:00
|
|
|
$answer = $request->dispatch(); // on l'execute
|
2016-04-04 09:47:17 +00:00
|
|
|
|
2016-04-08 14:58:40 +00:00
|
|
|
/* [3] Si erreur
|
2016-04-04 12:04:36 +00:00
|
|
|
=========================================================*/
|
2016-04-08 14:58:40 +00:00
|
|
|
if( $answer->error != ManagerError::Success ){
|
|
|
|
// on l'explicite
|
|
|
|
var_dump( ManagerError::explicit($answer->error) );
|
|
|
|
// on quitte
|
|
|
|
return;
|
2016-04-04 12:04:36 +00:00
|
|
|
}
|
2016-04-04 09:47:17 +00:00
|
|
|
|
|
|
|
|
2016-04-08 14:58:40 +00:00
|
|
|
/* [4] Sinon on recupere le resultat
|
2016-04-04 12:04:36 +00:00
|
|
|
=========================================================*/
|
2016-04-18 14:21:24 +00:00
|
|
|
$directory = $answer->get('directory');
|
|
|
|
$logs = $answer->get('logs');
|
2016-04-04 12:04:36 +00:00
|
|
|
|
2016-04-18 14:21:24 +00:00
|
|
|
foreach($directory as $num=>$name)
|
|
|
|
echo $num.' <> '.$name.'<br>';
|
2016-04-04 12:04:36 +00:00
|
|
|
}
|
2016-04-04 09:47:17 +00:00
|
|
|
|
2016-05-03 08:23:48 +00:00
|
|
|
// parseCallLog();
|
2016-04-18 20:45:55 +00:00
|
|
|
|
2016-04-11 14:05:32 +00:00
|
|
|
|
2016-05-03 08:23:48 +00:00
|
|
|
/* [1] Test du client de l'API generique
|
|
|
|
=========================================================*/
|
2016-04-13 11:36:49 +00:00
|
|
|
// $api = new client();
|
2016-04-18 09:38:43 +00:00
|
|
|
|
2016-04-18 06:42:26 +00:00
|
|
|
// $response = $api->send('generate-network-chart-data', array(
|
2016-04-15 10:10:38 +00:00
|
|
|
// '@token'=> '52945efbed43b50c12413f2f0e9519bfd9e98ce8'
|
2016-04-13 11:36:49 +00:00
|
|
|
// ));
|
2016-04-11 15:08:46 +00:00
|
|
|
|
2016-04-13 11:36:49 +00:00
|
|
|
// var_dump($response);
|
2016-04-17 15:46:34 +00:00
|
|
|
|
2016-04-19 12:35:40 +00:00
|
|
|
|
2016-05-03 08:23:48 +00:00
|
|
|
/* [2] Gestion du getter dynamique des Repos
|
|
|
|
=========================================================*/
|
2016-04-19 12:35:40 +00:00
|
|
|
// var_dump( \manager\repo\user::getById(1) );
|
2016-05-09 12:33:18 +00:00
|
|
|
// var_dump( \manager\repo\user::getByLogin('xdrm') );
|
|
|
|
// var_dump( \manager\repo\subject::getById(69) );
|
|
|
|
// var_dump( \manager\repo\relation::getById(638, 640, 30) );
|
2016-04-19 09:14:28 +00:00
|
|
|
|
2016-05-03 08:23:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* [3] Test de la vérification du format de fichier pour l'upload
|
|
|
|
=========================================================*/
|
2016-05-17 14:51:24 +00:00
|
|
|
?>
|
|
|
|
<!-- <form action='' method='POST' enctype='multipart/form-data'>
|
|
|
|
<input type='file' name='file'>
|
|
|
|
<input type='submit' value='Upload'>
|
|
|
|
</form> -->
|
|
|
|
<?php
|
2016-05-03 08:23:48 +00:00
|
|
|
// var_dump($_FILES);
|
|
|
|
//
|
|
|
|
// if( isset($_FILES) ){
|
|
|
|
//
|
2016-05-11 20:02:20 +00:00
|
|
|
// $request = new ModuleRequest('upload/call_log', array('phone_number'=>'01 02 03 04 05') );
|
2016-05-03 08:23:48 +00:00
|
|
|
// $response = $request->dispatch();
|
|
|
|
// var_dump( ManagerError::explicit($response->error) );
|
2016-05-03 09:47:05 +00:00
|
|
|
//
|
2016-05-03 08:23:48 +00:00
|
|
|
// }
|
|
|
|
|
2016-05-12 11:04:09 +00:00
|
|
|
|
2016-05-17 14:51:24 +00:00
|
|
|
?>
|