2017-08-04 16:28:16 +02:00
< ? php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager : il software gestionale open source per l ' assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright ( C ) DevCode s . r . l .
2020-09-07 15:04:06 +02:00
*
* 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 < https :// www . gnu . org / licenses />.
*/
2017-08-04 16:28:16 +02:00
include_once __DIR__ . '/core.php' ;
2019-05-10 06:32:06 +02:00
use Models\Hook ;
2020-07-08 21:12:16 +02:00
switch ( filter ( 'op' )) {
2017-08-04 16:28:16 +02:00
// Imposta un valore ad un array di $_SESSION
// esempio: push di un valore in $_SESSION['dashboard']['idtecnici']
// iversed: specifica se rimuovere dall'array il valore trovato e applicare quindi una deselezione (valori 0 o 1, default 1)
case 'session_set_array' :
$array = explode ( ',' , get ( 'session' ));
$value = " ' " . get ( 'value' ) . " ' " ;
$inversed = get ( 'inversed' );
$found = false ;
// Ricerca valore nell'array
foreach ( $_SESSION [ $array [ 0 ]][ $array [ 1 ]] as $idx => $val ) {
// Se il valore esiste lo tolgo
if ( $val == $value ) {
$found = true ;
if (( int ) $inversed == 1 ) {
unset ( $_SESSION [ $array [ 0 ]][ $array [ 1 ]][ $idx ]);
}
}
}
if ( ! $found ) {
2020-12-31 16:13:28 +01:00
$_SESSION [ $array [ 0 ]][ $array [ 1 ]][] = $value ;
2017-08-04 16:28:16 +02:00
}
// print_r($_SESSION[$array[0]][$array[1]]);
break ;
// Imposta un valore ad una sessione
case 'session_set' :
$array = explode ( ',' , get ( 'session' ));
$value = get ( 'value' );
$clear = get ( 'clear' );
if ( $clear == 1 || $value == '' ) {
unset ( $_SESSION [ $array [ 0 ]][ $array [ 1 ]]);
} else {
2018-03-22 15:40:20 +01:00
$_SESSION [ $array [ 0 ]][ $array [ 1 ]] = $value ;
2017-08-04 16:28:16 +02:00
}
break ;
2018-06-26 14:30:26 +02:00
case 'list_attachments' :
2018-07-02 15:41:38 +02:00
echo '{( "name": "filelist_and_upload", "id_module": "' . $id_module . '", "id_record": "' . $id_record . '", "id_plugin": "' . $id_plugin . '" )}' ;
2018-06-26 14:30:26 +02:00
break ;
2018-08-28 15:54:29 +02:00
2019-07-26 16:24:20 +02:00
case 'checklists' :
2020-09-23 13:36:37 +02:00
include base_dir () . '/plugins/checks.php' ;
2019-07-26 16:24:20 +02:00
break ;
2018-08-28 15:54:29 +02:00
case 'active_users' :
$posizione = get ( 'id_module' );
if ( isset ( $id_record )) {
$posizione .= ', ' . get ( 'id_record' );
}
2020-12-31 16:13:28 +01:00
$user = auth () -> user ();
2018-08-28 15:54:29 +02:00
$interval = setting ( 'Timeout notifica di presenza (minuti)' ) * 60 * 2 ;
$dbo -> query ( 'UPDATE zz_semaphores SET updated = NOW() WHERE id_utente = :user_id AND posizione = :position' , [
':user_id' => $user [ 'id' ],
':position' => $posizione ,
]);
// Rimozione record scaduti
$dbo -> query ( 'DELETE FROM zz_semaphores WHERE DATE_ADD(updated, INTERVAL :interval SECOND) <= NOW()' , [
':interval' => $interval ,
]);
$datas = $dbo -> fetchArray ( 'SELECT DISTINCT username FROM zz_semaphores INNER JOIN zz_users ON zz_semaphores.id_utente=zz_users.id WHERE zz_semaphores.id_utente != :user_id AND posizione = :position' , [
':user_id' => $user [ 'id' ],
':position' => $posizione ,
]);
echo json_encode ( $datas );
2019-05-10 06:32:06 +02:00
break ;
case 'hooks' :
$hooks = Hook :: all ();
$results = [];
foreach ( $hooks as $hook ) {
2019-05-24 21:07:10 +02:00
if ( $hook -> permission != '-' ) {
$results [] = [
'id' => $hook -> id ,
'name' => $hook -> name ,
];
}
2019-05-10 06:32:06 +02:00
}
echo json_encode ( $results );
break ;
2019-08-29 11:25:13 +02:00
case 'hook-lock' :
2019-05-10 06:32:06 +02:00
$hook_id = filter ( 'id' );
$hook = Hook :: find ( $hook_id );
2019-08-29 11:25:13 +02:00
$token = $hook -> lock ();
echo json_encode ( $token );
break ;
case 'hook-execute' :
$hook_id = filter ( 'id' );
$token = filter ( 'token' );
$hook = Hook :: find ( $hook_id );
$response = $hook -> execute ( $token );
echo json_encode ( $response );
break ;
case 'hook-response' :
$hook_id = filter ( 'id' );
$hook = Hook :: find ( $hook_id );
$response = $hook -> response ();
2019-08-26 18:02:05 +02:00
echo json_encode ( $response );
break ;
2019-07-05 17:10:20 +02:00
case 'flash' :
$response = flash () -> getMessages ();
echo json_encode ( $response );
2020-07-16 17:31:30 +02:00
break ;
case 'summable-results' :
$ids = post ( 'ids' ) ? : [];
$results = Util\Query :: getSums ( $structure , [
'id' => $ids ,
]);
echo json_encode ( $results );
2019-05-10 06:32:06 +02:00
break ;
2017-08-04 16:28:16 +02:00
}