Skip to content
Snippets Groups Projects
Commit 1d531fd1 authored by Frank Morgner's avatar Frank Morgner
Browse files

refs #12318

* bugfixing finc\ILS\Driver\FincILS.php method _getFincId
** method cannot resolve main identifier (fincid) return null instead of the request identifier
** [minor] throw Exception with $query than with ambiguous $this->ilsIdentifier
parent cfc06840
No related merge requests found
...@@ -1518,19 +1518,25 @@ class FincILS extends PAIA implements LoggerAwareInterface ...@@ -1518,19 +1518,25 @@ class FincILS extends PAIA implements LoggerAwareInterface
try { try {
// todo: compatible implementation for any SearchBackend (currently Solr only) // todo: compatible implementation for any SearchBackend (currently Solr only)
$query = $ilsIdentifier . ':' . $ilsId; $query = $ilsIdentifier . ':' . $ilsId;
$result = $this->searchService->search('Solr', new Query($query)); $result = $this->searchService->search(
'Solr',
new Query($query)
);
if (count($result) === 0) { if (count($result) === 0) {
throw new \Exception( throw new \Exception(
'Problem retrieving finc id for record with ' 'Problem retrieving finc id for record with ' . $query
. $this->ilsIdentifier . ":" . $ilsId
); );
} }
return current($result->getRecords())->getUniqueId(); return current($result->getRecords())->getUniqueId();
} catch (\Exception $e) { } catch (\Exception $e) {
$this->debug($e); $this->debug($e);
return $ilsId; // refs #12318 return null if no main identifier can delivered
return null;
} }
} }
// todo: check if return $ilsId is reasonable in context.
// return will be only processed if $ilsIdentifier is defined as
// 'default'. therefore method hasn't been called properly.
return $ilsId; return $ilsId;
} }
...@@ -1549,14 +1555,14 @@ class FincILS extends PAIA implements LoggerAwareInterface ...@@ -1549,14 +1555,14 @@ class FincILS extends PAIA implements LoggerAwareInterface
$this->baseUrl, $this->baseUrl,
$daiaMatches $daiaMatches
); );
$this->httpService->get($daiaMatches[1], [], $this->ilsTestTimeout ); $this->httpService->get($daiaMatches[1], [], $this->ilsTestTimeout);
// test PAIA service // test PAIA service
preg_match( preg_match(
"/^(http[s:\/0-9\.]*(:[0-9]*)?\/[a-z]*)/", "/^(http[s:\/0-9\.]*(:[0-9]*)?\/[a-z]*)/",
$this->paiaURL, $this->paiaURL,
$paiaMatches $paiaMatches
); );
$this->httpService->get($paiaMatches[1], [], $this->ilsTestTimeout ); $this->httpService->get($paiaMatches[1], [], $this->ilsTestTimeout);
// test succeeded, save state // test succeeded, save state
$this->isOnline = true; $this->isOnline = true;
......
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