1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
<?php
/**
* UserFrosting (http://www.userfrosting.com)
*
* @link https://github.com/userfrosting/UserFrosting
* @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
*/
namespace UserFrosting\System;
use Interop\Container\ContainerInterface;
use RocketTheme\Toolbox\Event\EventDispatcher;
use RocketTheme\Toolbox\ResourceLocator\UniformResourceLocator;
use RocketTheme\Toolbox\StreamWrapper\ReadOnlyStream;
use RocketTheme\Toolbox\StreamWrapper\StreamBuilder;
use UserFrosting\System\Sprinkle\SprinkleManager;
/**
* UserFrosting system services provider.
*
* Registers system services for UserFrosting, such as file locator, event dispatcher, and sprinkle manager.
* @author Alex Weissman (https://alexanderweissman.com)
*/
class ServicesProvider
{
/**
* Register UserFrosting's system services.
*
* @param ContainerInterface $container A DI container implementing ArrayAccess and container-interop.
*/
public function register(ContainerInterface $container) {
/**
* Set up the event dispatcher, required by Sprinkles to hook into the UF lifecycle.
*/
$container['eventDispatcher'] = function ($c) {
return new EventDispatcher();
};
/**
* Path/file locator service.
*
* Register custom streams for the application, and add paths for app-level streams.
*/
$container['locator'] = function ($c) {
$locator = new UniformResourceLocator(\UserFrosting\ROOT_DIR);
$locator->addPath('build', '', \UserFrosting\BUILD_DIR_NAME);
$locator->addPath('log', '', \UserFrosting\APP_DIR_NAME . '/' . \UserFrosting\LOG_DIR_NAME);
$locator->addPath('cache', '', \UserFrosting\APP_DIR_NAME . '/' . \UserFrosting\CACHE_DIR_NAME);
$locator->addPath('session', '', \UserFrosting\APP_DIR_NAME . '/' . \UserFrosting\SESSION_DIR_NAME);
// Use locator to initialize streams
ReadOnlyStream::setLocator($locator);
// Fire up StreamBuilder
$c->streamBuilder;
return $locator;
};
/**
* StreamBuilder, to fire up our custom StreamWrapper defined in the locator service.
*/
$container['streamBuilder'] = function ($c) {
$streams = [
'build' => '\\RocketTheme\\Toolbox\\StreamWrapper\\Stream',
'log' => '\\RocketTheme\\Toolbox\\StreamWrapper\\Stream',
'cache' => '\\RocketTheme\\Toolbox\\StreamWrapper\\Stream',
'session' => '\\RocketTheme\\Toolbox\\StreamWrapper\\Stream',
'sprinkles' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream',
'assets' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream',
'schema' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream',
'templates' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream',
'extra' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream',
'locale' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream',
'config' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream',
'routes' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream',
'factories' => '\\RocketTheme\\Toolbox\\StreamWrapper\\ReadOnlyStream'
];
// Before registering them, we need to unregister any that where previously registered.
// This will cause error when two scripts are run in succession from the CLI
foreach ($streams as $scheme => $handler) {
if (in_array($scheme, stream_get_wrappers())) {
stream_wrapper_unregister($scheme);
}
}
$sb = new StreamBuilder($streams);
return $sb;
};
/**
* Set up sprinkle manager service.
*/
$container['sprinkleManager'] = function ($c) {
$sprinkleManager = new SprinkleManager($c);
return $sprinkleManager;
};
}
}
|