Completed
Push — master ( bcd471...c4f4ce )
by Joschi
02:58
created

Server::getEnabledDateActionClasses()   B

Complexity

Conditions 7
Paths 1

Size

Total Lines 14
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 7

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 14
ccs 10
cts 10
cp 1
rs 8.2222
cc 7
eloc 9
nc 1
nop 2
crap 7
1
<?php
2
3
/**
4
 * apparat-server
5
 *
6
 * @category    Apparat
7
 * @package     Apparat\Server
8
 * @subpackage  Apparat\Server\Infrastructure\Model
9
 * @author      Joschi Kuphal <[email protected]> / @jkphl
10
 * @copyright   Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl
11
 * @license     http://opensource.org/licenses/MIT The MIT License (MIT)
12
 */
13
14
/***********************************************************************************
15
 *  The MIT License (MIT)
16
 *
17
 *  Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl
18
 *
19
 *  Permission is hereby granted, free of charge, to any person obtaining a copy of
20
 *  this software and associated documentation files (the "Software"), to deal in
21
 *  the Software without restriction, including without limitation the rights to
22
 *  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
23
 *  the Software, and to permit persons to whom the Software is furnished to do so,
24
 *  subject to the following conditions:
25
 *
26
 *  The above copyright notice and this permission notice shall be included in all
27
 *  copies or substantial portions of the Software.
28
 *
29
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
31
 *  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
32
 *  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
33
 *  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
34
 *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
 ***********************************************************************************/
36
37
namespace Apparat\Server\Infrastructure\Model;
38
39
use Apparat\Object\Ports\Factory\SelectorFactory;
40
use Apparat\Server\Infrastructure\Action\DayAction;
41
use Apparat\Server\Infrastructure\Action\HourAction;
42
use Apparat\Server\Infrastructure\Action\MinuteAction;
43
use Apparat\Server\Infrastructure\Action\MonthAction;
44
use Apparat\Server\Infrastructure\Action\ObjectAction;
45
use Apparat\Server\Infrastructure\Action\ObjectsAction;
46
use Apparat\Server\Infrastructure\Action\SecondAction;
47
use Apparat\Server\Infrastructure\Action\TypeAction;
48
use Apparat\Server\Infrastructure\Action\YearAction;
49
use Apparat\Server\Infrastructure\Route\AbstractActionRoute;
50
use Apparat\Server\Ports\Action\ActionInterface;
51
use Apparat\Server\Ports\Route\Route;
52
use Apparat\Server\Ports\Types\ObjectRoute;
53
use Psr\Http\Message\ServerRequestInterface;
54
55
/**
56
 * Server instance
57
 *
58
 * @package Apparat\Server
59
 * @subpackage Apparat\Server\Infrastructure
60
 */
61
class Server extends \Apparat\Server\Domain\Model\Server
62
{
63
    /**
64
     * View resources
65
     *
66
     * @var array
67
     */
68
    protected $viewResources = [];
69
70
    /**
71
     * Enable the object route for a particular repository
72
     *
73
     * @param string $repositoryPath Repository path
74
     * @param int $enable Enable / disable default actions
75
     */
76 1
    public function enableObjectRoute($repositoryPath = '', $enable = ObjectRoute::ALL)
77
    {
78 1
        $routeName = ObjectRoute::OBJECT_STR;
79 1
        $datePrecision = intval(getenv('OBJECT_DATE_PRECISION'));
80 1
        $selectorRegex = SelectorFactory::getSelectorRegex($datePrecision);
81 1
        $objectRouteActions = array_filter(
82 1
            array_merge(
83 1
                self::getEnabledObjectActionClasses($enable),
84 1
                self::getEnabledDateActionClasses($enable, $datePrecision)
85 1
            )
86 1
        );
87
88
        // Add a repository sub-pattern
89 1
        if (strlen($repositoryPath)) {
90 1
            $selectorRegex = '(?:/(?P<repository>.+?))'.$selectorRegex;
91 1
            $routeName .= '.'.$repositoryPath;
92 1
        }
93
94 1
        $route = new Route(Route::GET, $routeName, $selectorRegex, $objectRouteActions);
95 1
        $route->setAccepts(ObjectRoute::$accept);
96 1
        $this->registerRoute($route);
97 1
    }
98
99
    /**
100
     * Prepare and return a route action
101
     *
102
     * @param ServerRequestInterface $request Request
103
     * @param AbstractActionRoute $route Route
104
     * @return ActionInterface|Callable $action Action
105
     */
106 78
    public function getRouteAction(ServerRequestInterface $request, AbstractActionRoute $route)
107
    {
108 78
        return $this->routerContainer->getRouteAction($request, $route);
109
    }
110
111
    /**
112
     * Return view resources
113
     *
114
     * @param string|null $name Optional: view resource name
115
     * @return array View resources
116
     */
117 76
    public function getViewResources($name = null)
118
    {
119 76
        return ($name === null) ?
120 76
            $this->viewResources :
121 76
            (array_key_exists($name, $this->viewResources) ? $this->viewResources[$name] : null);
122
    }
123
124
    /**
125
     * Set the view resources
126
     *
127
     * @param array $viewResources View resources
128
     */
129 1
    public function setViewResources(array $viewResources)
130
    {
131 1
        $this->viewResources = $viewResources;
132 1
    }
133
134
    /**
135
     * Return the enabled object action classes
136
     *
137
     * @param int $enable Enable / disable default actions
138
     * @return array Enabled object action classes
139
     */
140 79
    protected function getEnabledObjectActionClasses($enable)
141
    {
142
        return [
143 1
            ObjectRoute::OBJECT_STR => (ObjectRoute::OBJECT & $enable) ? ObjectAction::class : null,
144 1
            ObjectRoute::TYPE_STR => (ObjectRoute::TYPE & $enable) ? TypeAction::class : null,
145 79
            ObjectRoute::OBJECTS_STR => (ObjectRoute::OBJECTS & $enable) ? ObjectsAction::class : null,
146 1
        ];
147
    }
148
149
    /**
150
     * Return the enabled date action classes
151
     *
152
     * @param int $enable Enable / disable default actions
153
     * @param int $datePrecision Date precision
154
     * @return array Enabled date action classes
155
     */
156 1
    protected function getEnabledDateActionClasses($enable, $datePrecision)
157
    {
158 1
        return array_slice(
159
            [
160 1
                ObjectRoute::SECOND_STR => (ObjectRoute::SECOND & $enable) ? SecondAction::class : null,
161 1
                ObjectRoute::MINUTE_STR => (ObjectRoute::MINUTE & $enable) ? MinuteAction::class : null,
162 1
                ObjectRoute::HOUR_STR => (ObjectRoute::HOUR & $enable) ? HourAction::class : null,
163 1
                ObjectRoute::DAY_STR => (ObjectRoute::DAY & $enable) ? DayAction::class : null,
164 1
                ObjectRoute::MONTH_STR => (ObjectRoute::MONTH & $enable) ? MonthAction::class : null,
165 1
                ObjectRoute::YEAR_STR => (ObjectRoute::YEAR & $enable) ? YearAction::class : null,
166 1
            ],
167
            6 - $datePrecision
168 1
        );
169
    }
170
}
171