Skip to content
Snippets Groups Projects
Commit 72312eaa authored by Demian Katz's avatar Demian Katz
Browse files

Configurable port number for Primo connector.

- Resolves VUFIND-1013.
parent 2bb3add4
No related merge requests found
...@@ -15,9 +15,13 @@ case_sensitive_bools = true ...@@ -15,9 +15,13 @@ case_sensitive_bools = true
; HTTP timeout ; HTTP timeout
timeout = 30 timeout = 30
; Your API id ; Your API id (use "mlplus" if using Metalib Plus instead of Primo Central)
apiId = my-id apiId = my-id
; The port to use when connecting to the API (normally 1701 for Primo Central, 80
; for Metalib Plus)
port = 1701
; This section controls the result limit options for search results. default_limit ; This section controls the result limit options for search results. default_limit
; sets the default number of results per page. limit_options is a comma-separated ; sets the default number of results per page. limit_options is a comma-separated
; list of numbers to be presented to the end-user. If only one limit is required, ; list of numbers to be presented to the end-user. If only one limit is required,
......
...@@ -112,9 +112,11 @@ class PrimoBackendFactory implements FactoryInterface ...@@ -112,9 +112,11 @@ class PrimoBackendFactory implements FactoryInterface
*/ */
protected function createConnector() protected function createConnector()
{ {
// Load credentials: // Load credentials and port number:
$id = isset($this->primoConfig->General->apiId) $id = isset($this->primoConfig->General->apiId)
? $this->primoConfig->General->apiId : null; ? $this->primoConfig->General->apiId : null;
$port = isset($this->primoConfig->General->port)
? $this->primoConfig->General->port : 1701;
// Build HTTP client: // Build HTTP client:
$client = $this->serviceLocator->get('VuFind\Http')->createClient(); $client = $this->serviceLocator->get('VuFind\Http')->createClient();
...@@ -122,7 +124,7 @@ class PrimoBackendFactory implements FactoryInterface ...@@ -122,7 +124,7 @@ class PrimoBackendFactory implements FactoryInterface
? $this->primoConfig->General->timeout : 30; ? $this->primoConfig->General->timeout : 30;
$client->setOptions(array('timeout' => $timeout)); $client->setOptions(array('timeout' => $timeout));
$connector = new Connector($id, $this->getInstCode(), $client); $connector = new Connector($id, $this->getInstCode(), $client, $port);
$connector->setLogger($this->logger); $connector->setLogger($this->logger);
return $connector; return $connector;
} }
......
...@@ -90,10 +90,11 @@ class Connector ...@@ -90,10 +90,11 @@ class Connector
* @param string $apiId Primo API ID * @param string $apiId Primo API ID
* @param string $inst Institution code * @param string $inst Institution code
* @param HttpClient $client HTTP client * @param HttpClient $client HTTP client
* @param int $port API connection port
*/ */
public function __construct($apiId, $inst, $client) public function __construct($apiId, $inst, $client, $port = 1701)
{ {
$this->host = "http://$apiId.hosted.exlibrisgroup.com:1701/" $this->host = "http://$apiId.hosted.exlibrisgroup.com:{$port}/"
. "PrimoWebServices/xservice/search/brief?"; . "PrimoWebServices/xservice/search/brief?";
$this->inst = $inst; $this->inst = $inst;
$this->client = $client; $this->client = $client;
......
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