X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/0541127e1612c826f3edebf86a16e782cf218912..431ebe4e6d51d45a46dd47a07448e9c5a79a7cb2:/rest_client.php diff --git a/rest_client.php b/rest_client.php index cb28f46..1857a12 100644 --- a/rest_client.php +++ b/rest_client.php @@ -22,10 +22,26 @@ require_once 'config.php'; require_once $CFG->root . 'lib/utils.inc.php'; +session_start(); $util = new Utils; -$data = 'username=mir@miras.org&password=Clara0503'; -$response = $util->RESTCall($CFG->wblistadm_url.'/ticket', $data, $cookiesIn = '') +$ticket = $cookies = $data = null; + +if (! isset($_SESSION['ticket'])) { + $data = 'username=mir@miras.org&password=Clara0503'; + $response = $util->RESTCall($CFG->wblistadm_url.'/ticket', $data, $cookiesIn = ''); + if ($response['http_code'] >= 200 && $response['http_code'] <= 204) { + $_SESSION['ticket'] = json_decode($response['content']); + $_SESSION['CSRFPreventionToken'] = 'CSRFPreventionToken='.$ticket->data->CSRFPreventionToken; + $_SESSION['cookies'] = $response['cookies']; + } +} else { + $response = $util->RESTCall($CFG->wblistadm_url.'/show', $_SESSION['CSRFPreventionToken'], $cookiesIn = $_SESSION['cookies']); + if ($response['http_code'] >= 200 && $response['http_code'] <= 204) { + $data = json_decode($response['content']); + $_SESSION['cookies'] = $response['cookies']; + } +} ?> RESTCall($CFG->wblistadm_url.'/ticket', $data, $cookiesIn = '
- ++ +