X-Git-Url: http://git.datanom.net/qtadmin.git/blobdiff_plain/c49d593ff36278c6c64d0a06bd8a0b6a0b4d2270..HEAD:/rest_client.php diff --git a/rest_client.php b/rest_client.php index 75188f4..c0d81b8 100644 --- a/rest_client.php +++ b/rest_client.php @@ -25,12 +25,21 @@ 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 and $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['CSRFPreventionToken'] = array('CSRFPreventionToken: ' . $_SESSION['ticket']->data->CSRFPreventionToken); + $_SESSION['cookies'] = $response['cookies']; + } +} else { + $response = $util->RESTCall($CFG->wblistadm_url.'/show', null, + $cookiesIn = $_SESSION['cookies'], $_SESSION['CSRFPreventionToken']); + $data = json_decode($response['content']); + //$_SESSION['cookies'] = $response['cookies']; } ?> @@ -48,7 +57,12 @@ if ($response['http_code'] >= 200 and $response['http_code'] <= 204) {