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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
<?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\Sprinkle;
use Illuminate\Support\Str;
use Interop\Container\ContainerInterface;
use RocketTheme\Toolbox\Event\EventDispatcher;
use RocketTheme\Toolbox\ResourceLocator\UniformResourceLocator;
use UserFrosting\Support\Exception\FileNotFoundException;
/**
* Sprinkle manager class.
*
* Manages a collection of loaded Sprinkles for the application.
* Handles Sprinkle class creation, event subscription, services registration, and resource stream registration.
* @author Alex Weissman (https://alexanderweissman.com)
*/
class SprinkleManager
{
/**
* @var ContainerInterface The global container object, which holds all your services.
*/
protected $ci;
/**
* @var Sprinkle[] An array of sprinkles.
*/
protected $sprinkles = [];
/**
* @var string The full absolute base path to the sprinkles directory.
*/
protected $sprinklesPath;
/**
* @var string[] Keeps track of a mapping from resource stream names to relative paths.
*/
protected $resourcePaths;
/**
* Create a new SprinkleManager object.
*
* @param ContainerInterface $ci The global container object, which holds all your services.
*/
public function __construct(ContainerInterface $ci)
{
$this->ci = $ci;
$this->sprinklesPath = \UserFrosting\APP_DIR_NAME . \UserFrosting\DS . \UserFrosting\SPRINKLES_DIR_NAME . \UserFrosting\DS;
$this->resourcePaths = [
'assets' => \UserFrosting\DS . \UserFrosting\ASSET_DIR_NAME,
'config' => \UserFrosting\DS . \UserFrosting\CONFIG_DIR_NAME,
'extra' => \UserFrosting\DS . \UserFrosting\EXTRA_DIR_NAME,
'factories' => \UserFrosting\DS . \UserFrosting\FACTORY_DIR_NAME,
'locale' => \UserFrosting\DS . \UserFrosting\LOCALE_DIR_NAME,
'routes' => \UserFrosting\DS . \UserFrosting\ROUTE_DIR_NAME,
'schema' => \UserFrosting\DS . \UserFrosting\SCHEMA_DIR_NAME,
'sprinkles' => '',
'templates' => \UserFrosting\DS . \UserFrosting\TEMPLATE_DIR_NAME
];
}
/**
* Adds the relative path for a specified resource type in a Sprinkle to the resource's stream.
*
* @param string $resourceName
* @param string $sprinkleName
* @return string|bool The full path to specified resource for the specified Sprinkle (if found).
*/
public function addResource($resourceName, $sprinkleName)
{
$resourcePath = $this->resourcePaths[$resourceName];
$fullPath = $this->sprinklesPath . $sprinkleName . $resourcePath;
$this->ci->locator->addPath($resourceName, '', $fullPath);
return $this->ci->locator->findResource("$resourceName://", true, false);
/* This would allow a stream to subnavigate to a specific sprinkle (e.g. "templates://core/")
Not sure if we need this.
$locator->addPath('templates', '$name', $sprinklesDirFragment . '/' . \UserFrosting\TEMPLATE_DIR_NAME);
*/
}
/**
* Register resource streams for all base sprinkles.
*/
public function addResources()
{
// For each sprinkle, register its resources and then run its initializer
foreach ($this->sprinkles as $sprinkleName => $sprinkle) {
$this->addResource('config', $sprinkleName);
$this->addResource('assets', $sprinkleName);
$this->addResource('extra', $sprinkleName);
$this->addResource('factories', $sprinkleName);
$this->addResource('locale', $sprinkleName);
$this->addResource('routes', $sprinkleName);
$this->addResource('schema', $sprinkleName);
$this->addResource('sprinkles', $sprinkleName);
$this->addResource('templates', $sprinkleName);
}
}
/**
* Takes the name of a Sprinkle, and creates an instance of the initializer object (if defined).
*
* Creates an object of a subclass of UserFrosting\System\Sprinkle\Sprinkle if defined for the sprinkle (converting to StudlyCase).
* Otherwise, returns null.
* @param $name The name of the Sprinkle to initialize.
*/
public function bootSprinkle($name)
{
$className = Str::studly($name);
$fullClassName = "\\UserFrosting\\Sprinkle\\$className\\$className";
// Check that class exists. If not, set to null
if (class_exists($fullClassName)) {
$sprinkle = new $fullClassName($this->ci);
return $sprinkle;
} else {
return null;
}
}
/**
* Returns a list of available sprinkle names.
*
* @return string[]
*/
public function getSprinkleNames()
{
return array_keys($this->sprinkles);
}
/**
* Returns a list of available sprinkles.
*
* @return Sprinkle[]
*/
public function getSprinkles()
{
return $this->sprinkles;
}
/**
* Initialize a list of Sprinkles, instantiating their boot classes (if they exist),
* and subscribing them to the event dispatcher.
*
* @param string[] $baseSprinkleNames
*/
public function init($sprinkleNames)
{
foreach ($sprinkleNames as $sprinkleName) {
$sprinkle = $this->bootSprinkle($sprinkleName);
if ($sprinkle) {
// Subscribe the sprinkle to the event dispatcher
$this->ci->eventDispatcher->addSubscriber($sprinkle);
}
$this->sprinkles[$sprinkleName] = $sprinkle;
}
}
/**
* Initialize all base sprinkles in a specified Sprinkles schema file (e.g. 'sprinkles.json').
*
* @param string $schemaPath
*/
public function initFromSchema($schemaPath)
{
$baseSprinkleNames = $this->loadSchema($schemaPath)->base;
$this->init($baseSprinkleNames);
}
/**
* Return if a Sprinkle is available
* Can be used by other Sprinkles to test if their dependencies are met
*
* @param $name The name of the Sprinkle
*/
public function isAvailable($name)
{
return in_array($name, $this->getSprinkleNames());
}
/**
* Interate through the list of loaded Sprinkles, and invoke their ServiceProvider classes.
*/
public function registerAllServices()
{
foreach ($this->getSprinkleNames() as $sprinkleName) {
$this->registerServices($sprinkleName);
}
}
/**
* Register services for a specified Sprinkle.
*/
public function registerServices($name)
{
$className = Str::studly($name);
$fullClassName = "\\UserFrosting\\Sprinkle\\$className\\ServicesProvider\\ServicesProvider";
// Check that class exists, and register services
if (class_exists($fullClassName)) {
// Register core services
$serviceProvider = new $fullClassName();
$serviceProvider->register($this->ci);
}
}
/**
* Load list of Sprinkles from a JSON schema file (e.g. 'sprinkles.json').
*
* @param string $schemaPath
* @return string[]
*/
protected function loadSchema($schemaPath)
{
$sprinklesFile = @file_get_contents($schemaPath);
if ($sprinklesFile === false) {
$errorMessage = "Error: Unable to determine Sprinkle load order. File '$schemaPath' not found or unable to read. Please create a 'sprinkles.json' file and try again.";
throw new FileNotFoundException($errorMessage);
}
return json_decode($sprinklesFile);
}
}
|