diff --git a/module/finc/src/finc/ILS/Driver/LiberoDingTrait.php b/module/finc/src/finc/ILS/Driver/LiberoDingTrait.php index 57bf6219fce9ec5d97389176f24708344d17ce40..0e333790b30b32eacdc6e3455127d72a3b3570cb 100644 --- a/module/finc/src/finc/ILS/Driver/LiberoDingTrait.php +++ b/module/finc/src/finc/ILS/Driver/LiberoDingTrait.php @@ -386,6 +386,43 @@ trait LiberoDingTrait } + /** + * This method sends a PIN changing request to the LiberoDing. + * + * @param array $patron Patron array returned by patronLogin method. + * + * @return array An associative array + */ + public function changeUserPin($newPin,$patron) + { + $params = $this->_getLiberoDingRequestParams(); + $params['memberCode'] = $patron['cat_username']; + $params['password'] = $patron['cat_password']; + $params['newPin'] = $newPin; + + try { + $result = $this->httpService->get( + $this->getWebScraperUrl() .'changeUserPin.jsp', + $params, + null, + $this->_getLiberoDingRequestHeaders() + ); + } catch (\Exception $e) { + throw new ILSException($e->getMessage()); + } + + if (!$result->isSuccess()) { + // log error for debugging + $this->debug( + 'HTTP status ' . $result->getStatusCode() . + ' received' + ); + return false; + } + + return $this->_getLiberoDingResult($result, 'changeUserPinOk'); + } + /** * Get a mapping table to exchange general terms * of Libero and VuFind.