Skip to content
Snippets Groups Projects
Commit 88924003 authored by Demian Katz's avatar Demian Katz Committed by Robert Lange
Browse files

Eliminate static record tab factories.

parent 3f7a0abf
Branches
Tags
No related merge requests found
Showing
with 936 additions and 329 deletions
<?php
/**
* Abstract factory for building AbstractContent tabs.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
use VuFind\Config\PluginManager as ConfigManager;
use VuFind\Content\PluginManager as ContentManager;
/**
* Abstract factory for building AbstractContent tabs.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
abstract class AbstractContentFactory
implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* The name of the tab being constructed.
*
* @var string
*/
protected $tabName;
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
$config = $container->get(ConfigManager::class)->get('config');
// Only instantiate the loader if the feature is enabled:
$loader = isset($config->Content->{$this->tabName})
? $container->get(ContentManager::class)->get($this->tabName)
: null;
return new $requestedName($loader, $this->getHideSetting($config));
}
/**
* Support method for construction of AbstractContent objects -- should we
* hide this tab if it is empty?
*
* @param \Zend\Config\Config $config VuFind configuration
*
* @return bool
*/
protected function getHideSetting(\Zend\Config\Config $config)
{
$setting = $config->Content->hide_if_empty ?? false;
if ($setting === true || $setting === false
|| $setting === 1 || $setting === 0
) {
return (bool)$setting;
}
if ($setting === 'true' || $setting === '1') {
return true;
}
$hide = array_map('trim', array_map('strtolower', explode(',', $setting)));
return in_array(strtolower($this->tabName), $hide);
}
}
<?php
/**
* Factory for building the CollectionHierarchyTree tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the CollectionHierarchyTree tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class CollectionHierarchyTreeFactory
implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
return new $requestedName(
$container->get(\VuFind\Config\PluginManager::class)->get('config'),
$container->get(\VuFind\Record\Loader::class)
);
}
}
<?php
/**
* Factory for building the CollectionList tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the CollectionList tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class CollectionListFactory implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
return new $requestedName(
$container->get(\VuFind\Search\SearchRunner::class),
$container->get(\VuFind\Recommend\PluginManager::class)
);
}
}
<?php
/**
* Factory for building Excerpt tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
/**
* Factory for building Excerpt tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class ExcerptFactory extends AbstractContentFactory
{
/**
* The name of the tab being constructed.
*
* @var string
*/
protected $tabName = 'excerpts';
}
<?php
/**
* Record Tab Factory Class
*
* PHP version 7
*
* Copyright (C) Villanova University 2014.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordDrivers
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development:plugins:hierarchy_components Wiki
*/
namespace VuFind\RecordTab;
use Zend\ServiceManager\ServiceManager;
/**
* Record Tab Factory Class
*
* @category VuFind
* @package RecordDrivers
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development:plugins:hierarchy_components Wiki
*
* @codeCoverageIgnore
*/
class Factory
{
/**
* Factory for CollectionHierarchyTree tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return CollectionHierarchyTree
*/
public static function getCollectionHierarchyTree(ServiceManager $sm)
{
return new CollectionHierarchyTree(
$sm->get('VuFind\Config\PluginManager')->get('config'),
$sm->get('VuFind\Record\Loader')
);
}
/**
* Factory for CollectionList tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return CollectionList
*/
public static function getCollectionList(ServiceManager $sm)
{
return new CollectionList(
$sm->get('VuFind\Search\SearchRunner'),
$sm->get('VuFind\Recommend\PluginManager')
);
}
/**
* Factory for Excerpt tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return Excerpt
*/
public static function getExcerpt(ServiceManager $sm)
{
$config = $sm->get('VuFind\Config\PluginManager')->get('config');
// Only instantiate the loader if the feature is enabled:
if (isset($config->Content->excerpts)) {
$loader = $sm->get('VuFind\Content\PluginManager')
->get('excerpts');
} else {
$loader = null;
}
return new Excerpt($loader, static::getHideSetting($config, 'excerpts'));
}
/**
* Support method for construction of AbstractContent objects -- should we
* hide this tab if it is empty?
*
* @param \Zend\Config\Config $config VuFind configuration
* @param string $tab Name of tab to check config for
*
* @return bool
*/
protected static function getHideSetting(\Zend\Config\Config $config, $tab)
{
// TODO: can we move this code out of the factory so it's more easily reused?
$setting = isset($config->Content->hide_if_empty)
? $config->Content->hide_if_empty : false;
if ($setting === true || $setting === false
|| $setting === 1 || $setting === 0
) {
return (bool)$setting;
}
if ($setting === 'true' || $setting === '1') {
return true;
}
$hide = array_map('trim', array_map('strtolower', explode(',', $setting)));
return in_array(strtolower($tab), $hide);
}
/**
* Factory for HierarchyTree tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return HierarchyTree
*/
public static function getHierarchyTree(ServiceManager $sm)
{
return new HierarchyTree(
$sm->get('VuFind\Config\PluginManager')->get('config')
);
}
/**
* Factory for HoldingsILS tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return HoldingsILS
*/
public static function getHoldingsILS(ServiceManager $sm)
{
// If VuFind is configured to suppress the holdings tab when the
// ILS driver specifies no holdings, we need to pass in a connection
// object:
$config = $sm->get('VuFind\Config\PluginManager')->get('config');
$catalog = ($config->Site->hideHoldingsTabWhenEmpty ?? false)
? $sm->get('VuFind\ILS\Connection') : null;
return new HoldingsILS(
$catalog,
(string)($config->Site->holdingsTemplate ?? 'standard')
);
}
/**
* Factory for HoldingsWorldCat tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return HoldingsWorldCat
*/
public static function getHoldingsWorldCat(ServiceManager $sm)
{
$bm = $sm->get('VuFind\Search\BackendManager');
return new HoldingsWorldCat($bm->get('WorldCat')->getConnector());
}
/**
* Factory for Map tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return Map
*/
public static function getMap(ServiceManager $sm)
{
// get Map Tab config options
$mapTabConfig = $sm->get('VuFind\GeoFeatures\MapTabConfig');
$mapTabOptions = $mapTabConfig->getMapTabOptions();
$mapTabDisplay = $mapTabOptions['recordMap'];
// add basemap options
$basemapConfig = $sm->get('VuFind\GeoFeatures\BasemapConfig');
$basemapOptions = $basemapConfig->getBasemap('MapTab');
return new Map($mapTabDisplay, $basemapOptions, $mapTabOptions);
}
/**
* Factory for Preview tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return Preview
*/
public static function getPreview(ServiceManager $sm)
{
$cfg = $sm->get('VuFind\Config\PluginManager')->get('config');
// currently only active if config [content] [previews] contains google
// and googleoptions[tab] is not empty.
$active = false;
if (isset($cfg->Content->previews)) {
$previews = array_map(
'trim', explode(',', strtolower($cfg->Content->previews))
);
if (in_array('google', $previews)
&& isset($cfg->Content->GoogleOptions['tab'])
&& strlen(trim($cfg->Content->GoogleOptions['tab'])) > 0
) {
$active = true;
}
}
return new Preview($active);
}
/**
* Factory for SimilarItems tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return SimilarItemsCarousel
*/
public static function getSimilarItemsCarousel(ServiceManager $sm)
{
return new SimilarItemsCarousel($sm->get('VuFindSearch\Service'));
}
/**
* Factory for Reviews tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return Reviews
*/
public static function getReviews(ServiceManager $sm)
{
$config = $sm->get('VuFind\Config\PluginManager')->get('config');
// Only instantiate the loader if the feature is enabled:
if (isset($config->Content->reviews)) {
$loader = $sm->get('VuFind\Content\PluginManager')
->get('reviews');
} else {
$loader = null;
}
return new Reviews($loader, static::getHideSetting($config, 'reviews'));
}
/**
* Factory for TOC tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return TablesOfContents
*/
public static function getTOC(ServiceManager $sm)
{
$config = $sm->get('VuFind\Config\PluginManager')->get('config');
// Only instantiate the loader if the feature is enabled:
if (isset($config->Content->toc)) {
$loader = $sm->get('VuFind\Content\PluginManager')
->get('toc');
} else {
$loader = null;
}
return new TOC($loader, static::getHideSetting($config, 'toc'));
}
/**
* Factory for UserComments tab plugin.
*
* @param ServiceManager $sm Service manager.
*
* @return UserComments
*/
public static function getUserComments(ServiceManager $sm)
{
$capabilities = $sm->get('VuFind\Config\AccountCapabilities');
$config = $sm->get('VuFind\Config\PluginManager')->get('config');
$useRecaptcha = isset($config->Captcha) && isset($config->Captcha->forms)
&& (trim($config->Captcha->forms) === '*'
|| strpos($config->Captcha->forms, 'userComments') !== false);
return new UserComments(
'enabled' === $capabilities->getCommentSetting(),
$useRecaptcha
);
}
}
<?php
/**
* Factory for building the HierarchyTree tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the HierarchyTree tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class HierarchyTreeFactory implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
return new $requestedName(
$container->get(\VuFind\Config\PluginManager::class)->get('config')
);
}
}
<?php
/**
* Factory for building the HoldingsILS tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the HoldingsILS tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class HoldingsILSFactory implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
// If VuFind is configured to suppress the holdings tab when the
// ILS driver specifies no holdings, we need to pass in a connection
// object:
$config = $container->get(\VuFind\Config\PluginManager::class)
->get('config');
$catalog = ($config->Site->hideHoldingsTabWhenEmpty ?? false)
? $container->get(\VuFind\ILS\Connection::class) : null;
return new $requestedName(
$catalog,
(string)($config->Site->holdingsTemplate ?? 'standard')
);
}
}
<?php
/**
* Factory for building the HoldingsWorldCat tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the HoldingsWorldCat tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class HoldingsWorldCatFactory
implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
$bm = $container->get(\VuFind\Search\BackendManager::class);
return new $requestedName($bm->get('WorldCat')->getConnector());
}
}
<?php
/**
* Factory for building the Map tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the Map tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class MapFactory implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
// get Map Tab config options
$mapTabConfig = $container->get(\VuFind\GeoFeatures\MapTabConfig::class);
$mapTabOptions = $mapTabConfig->getMapTabOptions();
$mapTabDisplay = $mapTabOptions['recordMap'];
// add basemap options
$basemapConfig = $container->get(\VuFind\GeoFeatures\BasemapConfig::class);
$basemapOptions = $basemapConfig->getBasemap('MapTab');
return new $requestedName($mapTabDisplay, $basemapOptions, $mapTabOptions);
}
}
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
namespace VuFind\RecordTab; namespace VuFind\RecordTab;
use VuFind\RecordDriver\AbstractBase as AbstractRecordDriver; use VuFind\RecordDriver\AbstractBase as AbstractRecordDriver;
use Zend\ServiceManager\Factory\InvokableFactory;
/** /**
* Record tab plugin manager * Record tab plugin manager
...@@ -46,21 +47,21 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager ...@@ -46,21 +47,21 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager
* @var array * @var array
*/ */
protected $aliases = [ protected $aliases = [
'collectionhierarchytree' => 'VuFind\RecordTab\CollectionHierarchyTree', 'collectionhierarchytree' => CollectionHierarchyTree::class,
'collectionlist' => 'VuFind\RecordTab\CollectionList', 'collectionlist' => CollectionList::class,
'description' => 'VuFind\RecordTab\Description', 'description' => Description::class,
'excerpt' => 'VuFind\RecordTab\Excerpt', 'excerpt' => Excerpt::class,
'hierarchytree' => 'VuFind\RecordTab\HierarchyTree', 'hierarchytree' => HierarchyTree::class,
'holdingsils' => 'VuFind\RecordTab\HoldingsILS', 'holdingsils' => HoldingsILS::class,
'holdingsworldcat' => 'VuFind\RecordTab\HoldingsWorldCat', 'holdingsworldcat' => HoldingsWorldCat::class,
'map' => 'VuFind\RecordTab\Map', 'map' => Map::class,
'preview' => 'VuFind\RecordTab\Preview', 'preview' => Preview::class,
'reviews' => 'VuFind\RecordTab\Reviews', 'reviews' => Reviews::class,
'similaritemscarousel' => 'VuFind\RecordTab\SimilarItemsCarousel', 'similaritemscarousel' => SimilarItemsCarousel::class,
'staffviewarray' => 'VuFind\RecordTab\StaffViewArray', 'staffviewarray' => StaffViewArray::class,
'staffviewmarc' => 'VuFind\RecordTab\StaffViewMARC', 'staffviewmarc' => StaffViewMARC::class,
'toc' => 'VuFind\RecordTab\TOC', 'toc' => TOC::class,
'usercomments' => 'VuFind\RecordTab\UserComments', 'usercomments' => UserComments::class,
]; ];
/** /**
...@@ -69,30 +70,21 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager ...@@ -69,30 +70,21 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager
* @var array * @var array
*/ */
protected $factories = [ protected $factories = [
'VuFind\RecordTab\CollectionHierarchyTree' => CollectionHierarchyTree::class => CollectionHierarchyTreeFactory::class,
'VuFind\RecordTab\Factory::getCollectionHierarchyTree', CollectionList::class => CollectionListFactory::class,
'VuFind\RecordTab\CollectionList' => Description::class => InvokableFactory::class,
'VuFind\RecordTab\Factory::getCollectionList', Excerpt::class => ExcerptFactory::class,
'VuFind\RecordTab\Description' => HierarchyTree::class => HierarchyTreeFactory::class,
'Zend\ServiceManager\Factory\InvokableFactory', HoldingsILS::class => HoldingsILSFactory::class,
'VuFind\RecordTab\Excerpt' => 'VuFind\RecordTab\Factory::getExcerpt', HoldingsWorldCat::class => HoldingsWorldCatFactory::class,
'VuFind\RecordTab\HierarchyTree' => Map::class => MapFactory::class,
'VuFind\RecordTab\Factory::getHierarchyTree', Preview::class => PreviewFactory::class,
'VuFind\RecordTab\HoldingsILS' => 'VuFind\RecordTab\Factory::getHoldingsILS', Reviews::class => ReviewsFactory::class,
'VuFind\RecordTab\HoldingsWorldCat' => SimilarItemsCarousel::class => SimilarItemsCarouselFactory::class,
'VuFind\RecordTab\Factory::getHoldingsWorldCat', StaffViewArray::class => InvokableFactory::class,
'VuFind\RecordTab\Map' => 'VuFind\RecordTab\Factory::getMap', StaffViewMARC::class => InvokableFactory::class,
'VuFind\RecordTab\Preview' => 'VuFind\RecordTab\Factory::getPreview', TOC::class => TOCFactory::class,
'VuFind\RecordTab\Reviews' => 'VuFind\RecordTab\Factory::getReviews', UserComments::class => UserCommentsFactory::class,
'VuFind\RecordTab\SimilarItemsCarousel' =>
'VuFind\RecordTab\Factory::getSimilarItemsCarousel',
'VuFind\RecordTab\StaffViewArray' =>
'Zend\ServiceManager\Factory\InvokableFactory',
'VuFind\RecordTab\StaffViewMARC' =>
'Zend\ServiceManager\Factory\InvokableFactory',
'VuFind\RecordTab\TOC' => 'VuFind\RecordTab\Factory::getTOC',
'VuFind\RecordTab\UserComments' =>
'VuFind\RecordTab\Factory::getUserComments',
]; ];
/** /**
...@@ -107,7 +99,7 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager ...@@ -107,7 +99,7 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager
public function __construct($configOrContainerInstance = null, public function __construct($configOrContainerInstance = null,
array $v3config = [] array $v3config = []
) { ) {
$this->addAbstractFactory('VuFind\RecordTab\PluginFactory'); $this->addAbstractFactory(PluginFactory::class);
$this->addInitializer('ZfcRbac\Initializer\AuthorizationServiceInitializer'); $this->addInitializer('ZfcRbac\Initializer\AuthorizationServiceInitializer');
parent::__construct($configOrContainerInstance, $v3config); parent::__construct($configOrContainerInstance, $v3config);
} }
...@@ -149,7 +141,7 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager ...@@ -149,7 +141,7 @@ class PluginManager extends \VuFind\ServiceManager\AbstractPluginManager
*/ */
protected function getExpectedInterface() protected function getExpectedInterface()
{ {
return 'VuFind\RecordTab\TabInterface'; return TabInterface::class;
} }
/** /**
......
<?php
/**
* Factory for building the Preview tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the Preview tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class PreviewFactory implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
$cfg = $container->get('VuFind\Config\PluginManager')->get('config');
// currently only active if config [content] [previews] contains google
// and googleoptions[tab] is not empty.
$active = false;
if (isset($cfg->Content->previews)) {
$previews = array_map(
'trim', explode(',', strtolower($cfg->Content->previews))
);
if (in_array('google', $previews)
&& strlen(trim($cfg->Content->GoogleOptions['tab'] ?? '')) > 0
) {
$active = true;
}
}
return new $requestedName($active);
}
}
<?php
/**
* Factory for building Reviews tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
/**
* Factory for building Reviews tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class ReviewsFactory extends AbstractContentFactory
{
/**
* The name of the tab being constructed.
*
* @var string
*/
protected $tabName = 'reviews';
}
<?php
/**
* Factory for building the SimilarItemsCarousel tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the SimilarItemsCarousel tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class SimilarItemsCarouselFactory
implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
return new $requestedName($container->get(\VuFindSearch\Service::class));
}
}
<?php
/**
* Factory for building TOC tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
/**
* Factory for building TOC tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class TOCFactory extends AbstractContentFactory
{
/**
* The name of the tab being constructed.
*
* @var string
*/
protected $tabName = 'toc';
}
<?php
/**
* Factory for building the UserComments tab.
*
* PHP version 7
*
* Copyright (C) Villanova University 2019.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFind\RecordTab;
use Interop\Container\ContainerInterface;
/**
* Factory for building the UserComments tab.
*
* @category VuFind
* @package RecordTabs
* @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class UserCommentsFactory implements \Zend\ServiceManager\Factory\FactoryInterface
{
/**
* Create an object
*
* @param ContainerInterface $container Service manager
* @param string $requestedName Service being created
* @param null|array $options Extra options (optional)
*
* @return object
*
* @throws ServiceNotFoundException if unable to resolve the service.
* @throws ServiceNotCreatedException if an exception is raised when
* creating a service.
* @throws ContainerException if any other error occurs
*
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
public function __invoke(ContainerInterface $container, $requestedName,
array $options = null
) {
if (!empty($options)) {
throw new \Exception('Unexpected options passed to factory.');
}
$capabilities = $container->get(\VuFind\Config\AccountCapabilities::class);
$config = $container->get(\VuFind\Config\PluginManager::class)
->get('config');
$captchaConfig = $config->Captcha->forms ?? '';
$useRecaptcha = trim($captchaConfig) === '*'
|| strpos($captchaConfig, 'userComments') !== false;
return new $requestedName(
'enabled' === $capabilities->getCommentSetting(),
$useRecaptcha
);
}
}
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