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
637 lines (516 loc) · 15.4 KB
/
Copy pathServices.php
File metadata and controls
637 lines (516 loc) · 15.4 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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
<?php namespace CodeIgniter\Config;
use CodeIgniter\Database\ConnectionInterface;
use CodeIgniter\Database\MigrationRunner;
use CodeIgniter\View\RendererInterface;
/**
* 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 = true)
{
if ($getShared)
{
return self::getSharedInstance('autoloader');
}
return new \CodeIgniter\Autoloader\Autoloader();
}
//--------------------------------------------------------------------
/**
* The cache class provides a simple way to store and retrieve
* complex data for later.
*/
public static function cache(\Config\Cache $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('cache', $config);
}
if (! is_object($config))
{
$config = new \Config\Cache();
}
return \CodeIgniter\Cache\CacheFactory::getHandler($config);
}
//--------------------------------------------------------------------
/**
* The CLI Request class provides for ways to interact with
* a command line request.
*/
public static function clirequest(\Config\App $config=null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('clirequest', $config);
}
if (! is_object($config))
{
$config = new \Config\App();
}
return new \CodeIgniter\HTTP\CLIRequest(
$config,
new \CodeIgniter\HTTP\URI()
);
}
//--------------------------------------------------------------------
/**
* 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, \Config\App $config = null, $getShared = true)
{
if ($getShared === true)
{
return self::getSharedInstance('curlrequest', $options, $response, $config);
}
if (! is_object($config))
{
$config = new \Config\App();
}
if ( ! is_object($response))
{
$response = new \CodeIgniter\HTTP\Response($config);
}
return new \CodeIgniter\HTTP\CURLRequest(
$config,
new \CodeIgniter\HTTP\URI(),
$response,
$options
);
}
//--------------------------------------------------------------------
/**
* The Exceptions class holds the methods that handle:
*
* - set_exception_handler
* - set_error_handler
* - register_shutdown_function
*/
public static function exceptions(\Config\App $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('exceptions', $config);
}
if (empty($config))
{
$config = new \Config\App();
}
return new \CodeIgniter\Debug\Exceptions($config);
}
//--------------------------------------------------------------------
/**
* Filters allow you to run tasks before and/or after a controller
* is executed. During before filters, the request can be modified,
* and actions taken based on the request, while after filters can
* act on or modify the response itself before it is sent to the client.
*/
public static function filters($config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('filters', $config);
}
if (empty($config))
{
$config = new \Config\Filters();
}
return new \CodeIgniter\Filters\Filters($config, self::request(), self::response());
}
//--------------------------------------------------------------------
/**
* 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 = true)
{
if ($getShared)
{
return self::getSharedInstance('iterator');
}
return new \CodeIgniter\Debug\Iterator();
}
//--------------------------------------------------------------------
/**
* Responsible for loading the language string translations.
*/
public static function language(string $locale = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('language', $locale);
}
$locale = ! empty($locale) ? $locale : self::request()->getLocale();
return new \CodeIgniter\Language\Language($locale);
}
//--------------------------------------------------------------------
/**
* The file locator provides utility methods for looking for non-classes
* within namespaced folders, as well as convenience methods for
* loading 'helpers', and 'libraries'.
*/
public static function locator($getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('locator');
}
return new \CodeIgniter\Autoloader\FileLocator(new \Config\Autoload());
}
//--------------------------------------------------------------------
/**
* The Logger class is a PSR-3 compatible Logging class that supports
* multiple handlers that process the actual logging.
*/
public static function logger($getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('logger');
}
return new \CodeIgniter\Log\Logger(new \Config\Logger());
}
//--------------------------------------------------------------------
public static function migrations(BaseConfig $config = null, ConnectionInterface $db = null, bool $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('migrations', $config, $db);
}
$config = empty($config) ? new \Config\Migrations() : $config;
return new MigrationRunner($config, $db);
}
//--------------------------------------------------------------------
/**
* The Negotiate class provides the content negotiation features for
* working the request to determine correct language, encoding, charset,
* and more.
*/
public static function negotiator(\CodeIgniter\HTTP\RequestInterface $request=null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('negotiator', $request);
}
if (is_null($request))
{
$request = self::request();
}
return new \CodeIgniter\HTTP\Negotiate($request);
}
//--------------------------------------------------------------------
public static function pager($config = null, RendererInterface $view = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('pager', $config, $view);
}
if (empty($config))
{
$config = new \Config\Pager();
}
if (! $view instanceof RendererInterface)
{
$view = self::renderer();
}
return new \CodeIgniter\Pager\Pager($config, $view);
}
//--------------------------------------------------------------------
/**
* The Parser is a simple template parser.
*/
public static function parser($viewPath = APPPATH.'Views/', $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('parser', $viewPath, $config);
}
if (is_null($config))
{
$config = new \Config\View();
}
return new \CodeIgniter\View\Parser($config, $viewPath, self::locator(true), CI_DEBUG, self::logger(true));
}
//--------------------------------------------------------------------
/**
* 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/', $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('renderer', $viewPath, $config);
}
if (is_null($config))
{
$config = new \Config\View();
}
return new \CodeIgniter\View\View($config, $viewPath, self::locator(true), CI_DEBUG, self::logger(true));
}
//--------------------------------------------------------------------
/**
* The Request class models an HTTP request.
*/
public static function request(\Config\App $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('request', $config);
}
if (! is_object($config))
{
$config = new \Config\App();
}
return new \CodeIgniter\HTTP\IncomingRequest(
$config,
new \CodeIgniter\HTTP\URI()
);
}
//--------------------------------------------------------------------
/**
* The Response class models an HTTP response.
*/
public static function response(\Config\App $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('response', $config);
}
if (! is_object($config))
{
$config = new \Config\App();
}
return new \CodeIgniter\HTTP\Response($config);
}
//--------------------------------------------------------------------
/**
* The Routes service is a class that allows for easily building
* a collection of routes.
*/
public static function routes($getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('routes');
}
return new \CodeIgniter\Router\RouteCollection();
}
//--------------------------------------------------------------------
/**
* The Router class uses a RouteCollection's array of routes, and determines
* the correct Controller and Method to execute.
*/
public static function router(\CodeIgniter\Router\RouteCollectionInterface $routes = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('router', $routes);
}
if (empty($routes))
{
$routes = self::routes(true);
}
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(\Config\App $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('security', $config);
}
if (! is_object($config))
{
$config = new \Config\App();
}
return new \CodeIgniter\Security\Security($config);
}
//--------------------------------------------------------------------
/**
* @param App|null $config
* @param bool $getShared
*
* @return \CodeIgniter\Session\Session
*/
public static function session(\Config\App $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('session', $config);
}
if (! is_object($config))
{
$config = new \Config\App();
}
$logger = self::logger(true);
$driverName = $config->sessionDriver;
$driver = new $driverName($config);
$driver->setLogger($logger);
$session = new \CodeIgniter\Session\Session($driver, $config);
$session->setLogger($logger);
return $session;
}
//--------------------------------------------------------------------
/**
* The Throttler class provides a simple method for implementing
* rate limiting in your applications.
*/
public static function throttler($getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('throttler');
}
return new \CodeIgniter\Throttle\Throttler(self::cache());
}
//--------------------------------------------------------------------
/**
* The Timer class provides a simple way to Benchmark portions of your
* application.
*/
public static function timer($getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('timer');
}
return new \CodeIgniter\Debug\Timer();
}
//--------------------------------------------------------------------
public static function toolbar(\Config\App $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('toolbar', $config);
}
if (! is_object($config))
{
$config = new \Config\App();
}
return new \CodeIgniter\Debug\Toolbar($config);
}
//--------------------------------------------------------------------
/**
* The URI class provides a way to model and manipulate URIs.
*/
public static function uri($uri = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('uri', $uri);
}
return new \CodeIgniter\HTTP\URI($uri);
}
//--------------------------------------------------------------------
/**
* The Validation class provides tools for validating input data.
*/
public static function validation(\Config\Validation $config = null, $getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('validation', $config);
}
if (is_null($config))
{
$config = new \Config\Validation();
}
return new \CodeIgniter\Validation\Validation($config, self::renderer());
}
//--------------------------------------------------------------------
/**
* View cells are intended to let you insert HTML into view
* that has been generated by any callable in the system.
*/
public static function viewcell($getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('viewcell');
}
return new \CodeIgniter\View\Cell(self::cache());
}
//--------------------------------------------------------------------
/**
* The Typography class provides a way to format text in semantically relevant ways.
*/
public static function typography($getShared = true)
{
if ($getShared)
{
return self::getSharedInstance('typography');
}
return new \CodeIgniter\Typography\Typography();
}
//--------------------------------------------------------------------
//--------------------------------------------------------------------
// 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]))
{
// Make sure $getShared is false
array_push($params, false);
static::$instances[$key] = static::$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(__CLASS__, $name))
{
return Services::$name(...$arguments);
}
}
//--------------------------------------------------------------------
}