Skip to content
Snippets Groups Projects
Commit 8e38ef8a authored by Vít Novotný's avatar Vít Novotný Committed by Demian Katz
Browse files

Aleph driver: add dlfbaseurl config option

parent cc4f850a
No related merge requests found
......@@ -17,6 +17,9 @@ xport = 80
; debug mode for logging errors
debug = false
; override the host, and dlfport settings for Aleph REST API requests (optional)
;dlfbaseurl = http://aleph.mylibrary.edu:1891/rest-dlf/
; bibliographic library -- the library that your bibs are in - normally XXX01
; where XXX is a prefix that you have configured. It's the library you would
; search in your cataloging client.
......
......@@ -334,6 +334,13 @@ class Aleph extends AbstractBase implements \Zend\Log\LoggerAwareInterface,
*/
protected $dateConverter = null;
/**
* The base URL, where the REST DLF API is running
*
* @var string
*/
protected $dlfbaseurl = null;
/**
* Constructor
*
......@@ -388,6 +395,9 @@ class Aleph extends AbstractBase implements \Zend\Log\LoggerAwareInterface,
$this->xserver_enabled = false;
}
$this->dlfport = $this->config['Catalog']['dlfport'];
if (isset($this->config['Catalog']['dlfbaseurl'])) {
$this->dlfbaseurl = $this->config['Catalog']['dlfbaseurl'];
}
$this->sublibadm = $this->config['sublibadm'];
if (isset($this->config['duedates'])) {
$this->duedates = $this->config['duedates'];
......@@ -480,7 +490,11 @@ class Aleph extends AbstractBase implements \Zend\Log\LoggerAwareInterface,
$method = 'GET', $body = null
) {
$path = implode('/', $path_elements);
$url = "http://$this->host:$this->dlfport/rest-dlf/" . $path;
if ($this->dlfbaseurl === null) {
$url = "http://$this->host:$this->dlfport/rest-dlf/" . $path;
} else {
$url = $this->dlfbaseurl . $path;
}
$url = $this->appendQueryString($url, $params);
$result = $this->doHTTPRequest($url, $method, $body);
$replyCode = (string)$result->{'reply-code'};
......
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