Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
DatabaseFactory
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
12
0.00% covered (danger)
0.00%
0 / 1
 __invoke
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
12
1<?php
2
3/**
4 * Factory for local database-driven URL shortener.
5 *
6 * PHP version 8
7 *
8 * Copyright (C) Villanova University 2019.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2,
12 * as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22 *
23 * @category VuFind
24 * @package  UrlShortener
25 * @author   Demian Katz <demian.katz@villanova.edu>
26 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
27 * @link     https://vufind.org/wiki/development Wiki
28 */
29
30namespace VuFind\UrlShortener;
31
32use Exception;
33use Psr\Container\ContainerInterface;
34use VuFind\Db\Service\ShortlinksServiceInterface;
35
36/**
37 * Factory for local database-driven URL shortener.
38 *
39 * @category VuFind
40 * @package  UrlShortener
41 * @author   Demian Katz <demian.katz@villanova.edu>
42 * @license  http://opensource.org/licenses/gpl-2.0.php GNU General Public License
43 * @link     https://vufind.org/wiki/development Wiki
44 */
45class DatabaseFactory
46{
47    /**
48     * Create an object
49     *
50     * @param ContainerInterface $container     Service manager
51     * @param string             $requestedName Service being created
52     * @param null|array         $options       Extra options (optional)
53     *
54     * @return object
55     */
56    public function __invoke(
57        ContainerInterface $container,
58        $requestedName,
59        array $options = null
60    ) {
61        if (!empty($options)) {
62            throw new Exception('Unexpected options passed to factory.');
63        }
64        $router = $container->get('HttpRouter');
65        $serverUrl = $container->get('ViewRenderer')->plugin('serverurl');
66        $baseUrl = $serverUrl($router->assemble([], ['name' => 'home']));
67        $service = $container->get(\VuFind\Db\Service\PluginManager::class)
68            ->get(ShortlinksServiceInterface::class);
69        $config = $container->get(\VuFind\Config\PluginManager::class)
70            ->get('config');
71        $salt = $config->Security->HMACkey ?? '';
72        if (empty($salt)) {
73            throw new Exception('HMACkey missing from configuration.');
74        }
75        $hashType = $config->Mail->url_shortener_key_type ?? 'md5';
76        return new $requestedName(rtrim($baseUrl, '/'), $service, $salt, $hashType);
77    }
78}