Skip to content
Snippets Groups Projects
Commit 0c9d3593 authored by André Lahmann's avatar André Lahmann
Browse files

refs #5142:

* implemented usage of VuFindHttp\HttpService
* implemented usage of LoggerAwareTrait in SolrAI.php and SolrMarcRemote.php
parent b43ba60f
No related merge requests found
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
* @link http://vufind.org/wiki/vufind2:record_drivers Wiki * @link http://vufind.org/wiki/vufind2:record_drivers Wiki
*/ */
namespace finc\RecordDriver; namespace finc\RecordDriver;
use \VuFindHttp\HttpServiceAwareInterface as HttpServiceAwareInterface; use \VuFindHttp\HttpServiceAwareInterface as HttpServiceAwareInterface,
use ZendService\ReCaptcha\Exception; Zend\Log\LoggerAwareInterface as LoggerAwareInterface;
/** /**
* Recorddriver for Solr records from the aggregated index of Leipzig University * Recorddriver for Solr records from the aggregated index of Leipzig University
...@@ -44,9 +44,10 @@ use ZendService\ReCaptcha\Exception; ...@@ -44,9 +44,10 @@ use ZendService\ReCaptcha\Exception;
* @SuppressWarnings(PHPMD.ExcessivePublicCount) * @SuppressWarnings(PHPMD.ExcessivePublicCount)
*/ */
class SolrAI extends SolrDefault implements class SolrAI extends SolrDefault implements
HttpServiceAwareInterface HttpServiceAwareInterface, LoggerAwareInterface
{ {
use \VuFindHttp\HttpServiceAwareTrait; use \VuFindHttp\HttpServiceAwareTrait;
use \VuFind\Log\LoggerAwareTrait;
/** /**
* AI record * AI record
......
...@@ -29,7 +29,8 @@ ...@@ -29,7 +29,8 @@
* @link http://vufind.org/wiki/vufind2:record_drivers Wiki * @link http://vufind.org/wiki/vufind2:record_drivers Wiki
*/ */
namespace finc\RecordDriver; namespace finc\RecordDriver;
use \Zend\Log\LoggerInterface; use VuFindHttp\HttpServiceAwareInterface as HttpServiceAwareInterface,
Zend\Log\LoggerAwareInterface as LoggerAwareInterface;
/** /**
* Model for MARC records without a fullrecord in Solr. The fullrecord is being * Model for MARC records without a fullrecord in Solr. The fullrecord is being
...@@ -43,14 +44,11 @@ use \Zend\Log\LoggerInterface; ...@@ -43,14 +44,11 @@ use \Zend\Log\LoggerInterface;
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link http://vufind.org/wiki/vufind2:record_drivers Wiki * @link http://vufind.org/wiki/vufind2:record_drivers Wiki
*/ */
class SolrMarcRemote extends SolrMarc class SolrMarcRemote extends SolrMarc implements
HttpServiceAwareInterface, LoggerAwareInterface
{ {
/** use \VuFindHttp\HttpServiceAwareTrait;
* Logger (or false for none) use \VuFind\Log\LoggerAwareTrait;
*
* @var LoggerInterface|bool
*/
protected $logger = false;
/** /**
* MARC record * MARC record
...@@ -143,40 +141,28 @@ class SolrMarcRemote extends SolrMarc ...@@ -143,40 +141,28 @@ class SolrMarcRemote extends SolrMarc
throw new \Exception('empty id given'); throw new \Exception('empty id given');
} }
if (!$this->uriPattern) { if (empty($this->uriPattern)) {
throw new \Exception('no Marc-Server configured'); throw new \Exception('no Marc-Server configured');
} }
$parsed_url = parse_url($this->uriPattern);
if (false === isset($config['options']) || false === is_array($config['options'])) {
$config['options']['timeout'] = 0.1;
}
$options = [$parsed_url['scheme'] => $config['options']];
$streamContext = stream_context_create($options);
$url = sprintf($this->uriPattern, $id); $url = sprintf($this->uriPattern, $id);
$loopCount = 0; try {
$response = $this->httpService->get($url);
for ($loopCount=0; $loopCount<10;$loopCount++) { } catch (\Exception $e) {
$content = @file_get_contents($url , false, $streamContext); throw new Exception($e->getMessage());
}
if (false === $content) { if (!$response->isSuccess()) {
$this->debug('Unable to fetch marc from server ' . $url); $this->debug(
continue; 'HTTP status ' . $response->getStatusCode() .
} else if (empty($content)) { ' received, retrieving data for record: ' . $id
$this->debug('content is empty, trying again. If this happens very often, try to increase timeout'); );
continue;
}
return $content; return false;
} }
$this->debug('tried too many times. aborting at record ' . $id); return $response->getBody();
return false;
} }
/** /**
...@@ -244,32 +230,6 @@ class SolrMarcRemote extends SolrMarc ...@@ -244,32 +230,6 @@ class SolrMarcRemote extends SolrMarc
return (isset($this->fields[$string]) ? $this->fields[$string] : ''); return (isset($this->fields[$string]) ? $this->fields[$string] : '');
} }
/**
* Set the logger
*
* @param LoggerInterface $logger Logger to use.
*
* @return void
*/
public function setLogger(LoggerInterface $logger)
{
$this->logger = $logger;
}
/**
* Log a debug message.
*
* @param string $msg Message to log.
*
* @return void
*/
protected function debug($msg)
{
if ($this->logger) {
$this->logger->debug(get_class($this) . ": $msg");
}
}
/** /**
* Return an array of associative URL arrays with one or more of the following * Return an array of associative URL arrays with one or more of the following
* keys: * keys:
......
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