X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/349dde0f722b9e0b26f7ef7c8716ac8e87239df5..605ad9fa4c17c773b3bee950a042b7a486c1d73b:/rest_client.php diff --git a/rest_client.php b/rest_client.php index 179ef70..e50f923 100644 --- a/rest_client.php +++ b/rest_client.php @@ -25,12 +25,23 @@ require_once $CFG->root . 'lib/utils.inc.php'; session_start(); $util = new Utils; -$ticket = $cookies = null; -$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) { - $ticket = json_decode($response['content']); - $cookies = $response['cookies']; +$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['token'] = $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['CSRFPreventionToken'] = 'CSRFPreventionToken='.$ticket->data->CSRFPreventionToken; + $_SESSION['cookies'] = $response['cookies']; + } } ?> @@ -48,7 +59,11 @@ if ($response['http_code'] >= 200 && $response['http_code'] <= 204) {