forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServices.php
More file actions
417 lines (341 loc) · 9.78 KB
/
Copy pathServices.php
File metadata and controls
417 lines (341 loc) · 9.78 KB
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
<?php namespace App\Config;
use CodeIgniter\HTTP\{Response, URI};
use CodeIgniter\Router\RouteCollectionInterface;
/**
* Services Configuration file.
*
* Services are simply other classes/libraries that the system uses
* to do its job. This is used by CodeIgniter to allow the core of the
* framework to be swapped out easily without affecting the usage within
* the rest of your application.
*
* This is used in place of a Dependency Injection container primarily
* due to its simplicity, which allows a better long-term maintenance
* of the applications built on top of CodeIgniter. A bonus side-effect
* is that IDEs are able to determine what class you are calling
* whereas with DI Containers there usually isn't a way for them to do this.
*
* @see http://blog.ircmaxell.com/2015/11/simple-easy-risk-and-change.html
* @see http://www.infoq.com/presentations/Simple-Made-Easy
*/
class Services
{
/**
* Cache for instance of any services that
* have been requested as a "shared" instance.
*
* @var array
*/
static protected $instances = [];
//--------------------------------------------------------------------
/**
* The Autoloader class is the central class that handles our
* spl_autoload_register method, and helper methods.
*/
public static function autoloader($getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\Autoloader\Autoloader();
}
return self::getSharedInstance('autoloader');
}
//--------------------------------------------------------------------
/**
* The CLI Request class provides for ways to interact with
* a command line request.
*/
public static function clirequest(AppConfig $config=null, $getShared = false)
{
if (! is_object($config))
{
$config = new AppConfig();
}
if (! $getShared)
{
return new \CodeIgniter\HTTP\CLIRequest(
$config,
new \CodeIgniter\HTTP\URI()
);
}
return self::getSharedInstance('clirequest');
}
//--------------------------------------------------------------------
/**
* The CURL Request class acts as a simple HTTP client for interacting
* with other servers, typically through APIs.
*/
public static function curlrequest(array $options = [], $response = null, AppConfig $config = null, $getShared = false)
{
if ($getShared === true)
{
return self::getSharedInstance('curlrequest', $options, $response);
}
if (! is_object($config))
{
$config = new AppConfig();
}
if ( ! is_object($response))
{
$response = new Response($config);
}
return new \CodeIgniter\HTTP\CURLRequest(
$config,
new URI(),
$response,
$options
);
}
//--------------------------------------------------------------------
/**
* The Exceptions class holds the methods that handle:
*
* - set_exception_handler
* - set_error_handler
* - register_shutdown_function
*/
public static function exceptions($getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\Debug\Exceptions();
}
return self::getSharedInstance('exceptions');
}
//--------------------------------------------------------------------
/**
* The Iterator class provides a simple way of looping over a function
* and timing the results and memory usage. Used when debugging and
* optimizing applications.
*/
public static function iterator($getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\Debug\Iterator();
}
return self::getSharedInstance('iterator');
}
//--------------------------------------------------------------------
/**
* The loader provides utility methods for looking for non-classes
* within namespaced folders, as well as convenience methods for
* loading 'helpers', and 'libraries'.
*/
public static function loader($getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\Loader(new \App\Config\AutoloadConfig());
}
return self::getSharedInstance('loader');
}
//--------------------------------------------------------------------
/**
* The Logger class is a PSR-3 compatible Logging class that supports
* multiple handlers that process the actual logging.
*/
public static function logger($getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\Log\Logger(new \App\Config\LoggerConfig());
}
return self::getSharedInstance('logger');
}
//--------------------------------------------------------------------
/**
* The Renderer class is the class that actually displays a file to the user.
* The default View class within CodeIgniter is intentionally simple, but this
* service could easily be replaced by a template engine if the user needed to.
*/
public static function renderer($viewPath = APPPATH.'views/', $getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\View\View($viewPath, self::loader(true));
}
return self::getSharedInstance('renderer');
}
//--------------------------------------------------------------------
/**
* The Request class models an HTTP request.
*/
public static function request(AppConfig $config = null, $getShared = false)
{
if (! is_object($config))
{
$config = new AppConfig();
}
if (! $getShared)
{
return new \CodeIgniter\HTTP\IncomingRequest(
$config,
new \CodeIgniter\HTTP\URI()
);
}
return self::getSharedInstance('request');
}
//--------------------------------------------------------------------
/**
* The Response class models an HTTP response.
*/
public static function response(AppConfig $config = null, $getShared = false)
{
if (! is_object($config))
{
$config = new AppConfig();
}
if (! $getShared)
{
return new \CodeIgniter\HTTP\Response($config);
}
return self::getSharedInstance('response');
}
//--------------------------------------------------------------------
/**
* The Routes service is a class that allows for easily building
* a collection of routes.
*/
public static function routes($getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\Router\RouteCollection();
}
return self::getSharedInstance('routes');
}
//--------------------------------------------------------------------
/**
* The Router class uses a RouteCollection's array of routes, and determines
* the correct Controller and Method to execute.
*/
public static function router(RouteCollectionInterface $routes = null, $getShared = false)
{
if ($getShared === true)
{
return self::getSharedInstance('router', $routes);
}
if (empty($routes))
{
$routes = self::routes();
}
return new \CodeIgniter\Router\Router($routes);
}
//--------------------------------------------------------------------
/**
* The Security class provides a few handy tools for keeping the site
* secure, most notably the CSRF protection tools.
*/
public static function security(AppConfig $config = null, $getShared = false)
{
if (! is_object($config))
{
$config = new AppConfig();
}
if (! $getShared)
{
return new \CodeIgniter\Security\Security($config);
}
return self::getSharedInstance('security');
}
//--------------------------------------------------------------------
/**
* @param AppConfig|null $config
* @param bool $getShared
*
* @return \CodeIgniter\Session\Session
*/
public static function session(AppConfig $config = null, $getShared = false)
{
if (! is_object($config))
{
$config = new AppConfig();
}
if (! $getShared)
{
$driverName = $config->sessionDriver;
$driver = new $driverName($config);
$driver->setLogger(self::logger(true));
$session = new \CodeIgniter\Session\Session($driver, $config);
$session->setLogger(self::logger());
$session->initialize();
return $session;
}
return self::getSharedInstance('session');
}
//--------------------------------------------------------------------
/**
* The Timer class provides a simple way to Benchmark portions of your
* application.
*/
public static function timer($getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\Debug\Timer();
}
return self::getSharedInstance('timer');
}
//--------------------------------------------------------------------
public static function toolbar(AppConfig $config = null, $getShared = false)
{
if (! is_object($config))
{
$config = new AppConfig();
}
if (! $getShared)
{
return new \CodeIgniter\Debug\Toolbar($config);
}
return self::getSharedInstance('security');
}
//--------------------------------------------------------------------
/**
* The URI class provides a way to model and manipulate URIs.
*/
public static function uri($uri = null, $getShared = false)
{
if (! $getShared)
{
return new \CodeIgniter\HTTP\URI($uri);
}
return self::getSharedInstance('uri', $uri);
}
//--------------------------------------------------------------------
//--------------------------------------------------------------------
// Utility Methods - DO NOT EDIT
//--------------------------------------------------------------------
/**
* Returns a shared instance of any of the class' services.
*
* $key must be a name matching a service.
*
* @param string $key
*/
protected static function getSharedInstance(string $key, ...$params)
{
if (! isset(static::$instances[$key]))
{
static::$instances[$key] = self::$key(...$params);
}
return static::$instances[$key];
}
//--------------------------------------------------------------------
/**
* Provides the ability to perform case-insensitive calling of service
* names.
*
* @param string $name
* @param array $arguments
*/
public static function __callStatic(string $name, array $arguments)
{
$name = strtolower($name);
if (method_exists('App\Config\Services', $name))
{
return Services::$name(...$arguments);
}
}
//--------------------------------------------------------------------
}