Skip to content
Snippets Groups Projects
Commit dbc62512 authored by Patrick Barroca's avatar Patrick Barroca :grin:
Browse files

rel #16008 : connexion test on koha webservice

parent dca2d2c7
Branches
Tags
2 merge requests!393Master,!375Sandbox#16008 test sigb connexion factorisation
......@@ -16,12 +16,12 @@
*
* You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
* along with AFI-OPAC 2.0; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class Class_WebService_SIGB_Koha_Service extends Class_WebService_SIGB_AbstractRESTService {
protected
protected
$interdire_resa_doc_dispo = false,
$codification_disponibilites = [];
......@@ -102,7 +102,7 @@ class Class_WebService_SIGB_Koha_Service extends Class_WebService_SIGB_AbstractR
if (trim($code_annexe)) $args['pickup_location'] = $code_annexe;
return $this->ilsdiHoldTitle($args, 'code');
}
}
/**
......@@ -146,12 +146,32 @@ class Class_WebService_SIGB_Koha_Service extends Class_WebService_SIGB_AbstractR
return $this;
}
public function getNotice($id) {
return $this->ilsdiGetRecords($id,
return $this->ilsdiGetRecords($id,
Class_WebService_SIGB_Koha_GetRecordsResponseReader::newInstance()
->setCodificationDisponibilites($this->codification_disponibilites)
->setInterdireResaDocDispo($this->interdire_resa_doc_dispo));
}
public function test() {
$validator = new ZendAfi_Validate_Url();
if (!$validator->isValid($this->getServerRoot()))
return implode("\n", $validator->getMessages());
try {
$this->getNotice(1);
$httpClient = Zend_Registry::get('httpClient');
$message = $httpClient->getLastRequest();
if ($response = $httpClient->getLastResponse())
$message .= $response->getStatus() . " " . $response->getMessage()
. "\n\n" . $response->getBody();
return $message;
} catch (Exception $e) {
return $e->getMessage() . '\n' . $e->getTraceAsString();
}
}
}
?>
\ No newline at end of file
......@@ -122,6 +122,10 @@ class Class_Webservice_SIGB_Nanook_Service extends Class_WebService_SIGB_Abstrac
public function test() {
$validator = new ZendAfi_Validate_Url();
if (!$validator->isValid($this->getServerRoot()))
return implode("\n", $validator->getMessages());
try {
$this
->ilsdiGetRecords(1,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment