Skip to content
Snippets Groups Projects
Commit 988abad2 authored by Laura Hild's avatar Laura Hild
Browse files

Symphony: factor out LibraryFilter logic

parent 4ebbde6c
No related merge requests found
......@@ -452,6 +452,23 @@ class Symphony extends AbstractBase implements ServiceLocatorAwareInterface
return $this->makeRequest('standard', 'lookupTitleInfo', $params);
}
/**
* Determine if a library is excluded by LibraryFilter configuration.
*
* @param string $libraryID the ID of the library in question
* @return boolean true if excluded, false if not
*/
protected function libraryIsFilteredOut($libraryID) {
$notInWhitelist = !empty($this->config['LibraryFilter']['include_only'])
&& !in_array(
$libraryID, $this->config['LibraryFilter']['include_only']
);
$onBlacklist = in_array(
$libraryID, $this->config['LibraryFilter']['exclude']
);
return $notInWhitelist || $onBlacklist;
}
/**
* Parse Call Info
*
......@@ -475,15 +492,7 @@ class Symphony extends AbstractBase implements ServiceLocatorAwareInterface
$libraryID = $callInfo->libraryID;
$library = $this->translatePolicyID('LIBR', $libraryID);
$notInWhitelist = !empty($this->config['LibraryFilter']['include_only'])
&& !in_array(
$libraryID, $this->config['LibraryFilter']['include_only']
);
$onBlacklist = in_array(
$libraryID, $this->config['LibraryFilter']['exclude']
);
if ($notInWhitelist || $onBlacklist) {
if ($this->libraryIsFilteredOut($libraryID)) {
continue;
}
......
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