Completed
Push — master ( 6d353a...9ce6e7 )
by Joschi
03:43
created

Server::setViewResources()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
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\Domain\Contract\ActionRouteInterface;
41
use Apparat\Server\Infrastructure\Action\DayAction;
42
use Apparat\Server\Infrastructure\Action\HourAction;
43
use Apparat\Server\Infrastructure\Action\MinuteAction;
44
use Apparat\Server\Infrastructure\Action\MonthAction;
45
use Apparat\Server\Infrastructure\Action\ObjectAction;
46
use Apparat\Server\Infrastructure\Action\ObjectsAction;
47
use Apparat\Server\Infrastructure\Action\SecondAction;
48
use Apparat\Server\Infrastructure\Action\TypeAction;
49
use Apparat\Server\Infrastructure\Action\YearAction;
50
use Apparat\Server\Infrastructure\Route\AbstractActionRoute;
51
use Apparat\Server\Ports\Action\ActionInterface;
52
use Apparat\Server\Ports\Route\Route;
53
use Apparat\Server\Ports\Types\ObjectRoute;
54
use Psr\Http\Message\ServerRequestInterface;
55
56
/**
57
 * Server instance
58
 *
59
 * @package Apparat\Server
60
 * @subpackage Apparat\Server\Infrastructure
61
 */
62
class Server extends \Apparat\Server\Domain\Model\Server
63
{
64
    /**
65
     * View resources
66
     *
67
     * @var array
68
     */
69
    protected $viewResources = [];
70
71
    /**
72
     * Enable the object route for a particular repository
73
     *
74
     * @param string $repositoryPath Repository path
75
     * @param int $enable Enable / disable default routes
76
     */
77
    public function enableObjectRoute($repositoryPath = '', $enable = ObjectRoute::ALL)
78
    {
79
        // Repository route prefix
80
        $datePrecision = intval(getenv('OBJECT_DATE_PRECISION'));
81
        $selectorRegex = SelectorFactory::getSelectorRegex($datePrecision);
82
        $objectRouteActions = array_filter(
83
            array_merge(
84
                [
85
                    ObjectRoute::OBJECT_STR => (ObjectRoute::OBJECT & $enable) ? ObjectAction::class : null,
86
                    ObjectRoute::TYPE_STR => (ObjectRoute::TYPE & $enable) ? TypeAction::class : null,
87
                    ObjectRoute::OBJECTS_STR => (ObjectRoute::OBJECTS & $enable) ? ObjectsAction::class : null,
88
                ],
89
                array_slice(
90
                    [
91
                        ObjectRoute::SECOND_STR => (ObjectRoute::SECOND & $enable) ? SecondAction::class : null,
92
                        ObjectRoute::MINUTE_STR => (ObjectRoute::MINUTE & $enable) ? MinuteAction::class : null,
93
                        ObjectRoute::HOUR_STR => (ObjectRoute::HOUR & $enable) ? HourAction::class : null,
94
                        ObjectRoute::DAY_STR => (ObjectRoute::DAY & $enable) ? DayAction::class : null,
95
                        ObjectRoute::MONTH_STR => (ObjectRoute::MONTH & $enable) ? MonthAction::class : null,
96
                        ObjectRoute::YEAR_STR => (ObjectRoute::YEAR & $enable) ? YearAction::class : null,
97
                    ],
98
                    6 - $datePrecision
99
                )
100
            )
101
        );
102
103
        // Add a repository subpattern
104
        if (strlen($repositoryPath)) {
105
            $selectorRegex = '(?:/(?P<repository>.+?))'.$selectorRegex;
106
        }
107
108
        $route = new Route(Route::GET, ObjectRoute::OBJECT_STR, $selectorRegex, $objectRouteActions);
109
        $this->registerRoute($route);
110
    }
111
112
    /**
113
     * Prepare and return a route action
114
     *
115
     * @param ServerRequestInterface $request Request
116
     * @param AbstractActionRoute $route Route
117
     * @return ActionInterface|Callable $action Action
118
     */
119 72
    public function getRouteAction(ServerRequestInterface $request, AbstractActionRoute $route)
120
    {
121 72
        return $this->routerContainer->getRouteAction($request, $route);
122
    }
123
124
    /**
125
     * Return view resources
126
     *
127
     * @param string|null $name Optional: view resource name
128
     * @return array View resources
129
     */
130 70
    public function getViewResources($name = null)
131
    {
132 70
        return ($name === null) ?
133 70
            $this->viewResources :
134 70
            (array_key_exists($name, $this->viewResources) ? $this->viewResources[$name] : null);
135
    }
136
137
    /**
138
     * Set the view resources
139
     *
140
     * @param array $viewResources View resources
141
     */
142 72
    public function setViewResources(array $viewResources)
143
    {
144 1
        $this->viewResources = $viewResources;
145 72
    }
146
}
147