diff --git a/module/VuFind/src/VuFind/ILS/Driver/Folio.php b/module/VuFind/src/VuFind/ILS/Driver/Folio.php index 109af97c85f4371ed0d2ced9947eaaa5245a4bea..dc51a4b56ab3fe478e4d9daf87e98423b9891488 100644 --- a/module/VuFind/src/VuFind/ILS/Driver/Folio.php +++ b/module/VuFind/src/VuFind/ILS/Driver/Folio.php @@ -316,6 +316,18 @@ class Folio extends AbstractAPI implements throw new \Exception('Unsupported ID type: ' . $idType); } + /** + * Escape a string for use in a CQL query. + * + * @param string $in Input string + * + * @return string + */ + protected function escapeCql($in) + { + return str_replace('"', '\"', str_replace('&', '%26', $in)); + } + /** * Retrieve FOLIO instance using VuFind's chosen bibliographic identifier. * @@ -332,8 +344,9 @@ class Folio extends AbstractAPI implements $idType = $this->getBibIdType(); $idField = $idType === 'instance' ? 'id' : $idType; - $escaped = str_replace('"', '\"', str_replace('&', '%26', $bibId)); - $query = ['query' => '(' . $idField . '=="' . $escaped . '")']; + $query = [ + 'query' => '(' . $idField . '=="' . $this->escapeCql($bibId) . '")' + ]; $response = $this->makeRequest('GET', '/instance-storage/instances', $query); $instances = json_decode($response->getBody()); if (count($instances->instances) == 0) {