Passed
Push — master ( f77967...f25758 )
by Fran
03:23
created

Router::checkPreActions()   A

Complexity

Conditions 4
Paths 6

Size

Total Lines 14

Duplication

Lines 4
Ratio 28.57 %

Code Coverage

Tests 0
CRAP Score 20

Importance

Changes 0
Metric Value
cc 4
nc 6
nop 2
dl 4
loc 14
rs 9.7998
c 0
b 0
f 0
ccs 0
cts 10
cp 0
crap 20
1
<?php
2
namespace PSFS\base;
3
4
use PSFS\base\config\Config;
5
use PSFS\base\dto\JsonResponse;
6
use PSFS\base\exception\AccessDeniedException;
7
use PSFS\base\exception\AdminCredentialsException;
8
use PSFS\base\exception\ConfigException;
9
use PSFS\base\exception\RouterException;
10
use PSFS\base\types\helpers\AdminHelper;
11
use PSFS\base\types\helpers\GeneratorHelper;
12
use PSFS\base\types\helpers\I18nHelper;
13
use PSFS\base\types\helpers\RouterHelper;
14
use PSFS\base\types\helpers\SecurityHelper;
15
use PSFS\base\types\traits\SingletonTrait;
16
use PSFS\controller\base\Admin;
17
use PSFS\services\AdminServices;
18
use Symfony\Component\Finder\Finder;
19
use Symfony\Component\Finder\SplFileInfo;
20
21
/**
22
 * Class Router
23
 * @package PSFS
24
 */
25
class Router
26
{
27
    use SingletonTrait;
28
29
    /**
30
     * @var array
31
     */
32
    protected $routing = [];
33
    /**
34
     * @var array
35
     */
36
    protected $slugs = [];
37
    /**
38
     * @var array
39
     */
40
    private $domains = [];
41
    /**
42
     * @var Finder $finder
43
     */
44
    private $finder;
45
    /**
46
     * @var \PSFS\base\Cache $cache
47
     */
48
    private $cache;
49
    /**
50
     * @var bool headersSent
51
     */
52
    protected $headersSent = false;
53
    /**
54
     * @var int
55
     */
56
    protected $cacheType = Cache::JSON;
57
58
    /**
59
     * Router constructor.
60
     * @throws exception\GeneratorException
61
     * @throws ConfigException
62
     * @throws \InvalidArgumentException
63
     */
64 1
    public function __construct()
65
    {
66 1
        $this->finder = new Finder();
67 1
        $this->cache = Cache::getInstance();
68 1
        $this->init();
69 1
    }
70
71
    /**
72
     * @throws exception\GeneratorException
73
     * @throws ConfigException
74
     * @throws \InvalidArgumentException
75
     */
76 1
    public function init()
77
    {
78 1
        list($this->routing, $this->slugs) = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'urls.json', $this->cacheType, TRUE);
79 1
        if (empty($this->routing) || Config::getInstance()->getDebugMode()) {
80 1
            $this->debugLoad();
81
        } else {
82
            $this->domains = $this->cache->getDataFromFile(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->cacheType, TRUE);
83
        }
84 1
        $this->checkExternalModules(false);
85 1
        $this->setLoaded();
86 1
    }
87
88
    /**
89
     * @throws exception\GeneratorException
90
     * @throws ConfigException
91
     * @throws \InvalidArgumentException
92
     */
93 1
    private function debugLoad() {
94 1
        Logger::log('Begin routes load');
95 1
        $this->hydrateRouting();
96 1
        $this->simpatize();
97 1
        Logger::log('End routes load');
98 1
    }
99
100
    /**
101
     * @param \Exception|NULL $e
102
     * @param bool $isJson
103
     * @return string
104
     * @throws RouterException
105
     */
106
    public function httpNotFound(\Exception $e = NULL, $isJson = false)
107
    {
108
        Logger::log('Throw not found exception');
109
        if (NULL === $e) {
110
            Logger::log('Not found page thrown without previous exception', LOG_WARNING);
111
            $e = new \Exception(_('Page not found'), 404);
112
        }
113
        $template = Template::getInstance()->setStatus($e->getCode());
114
        if ($isJson || false !== stripos(Request::getInstance()->getServer('CONTENT_TYPE'), 'json')) {
115
            $response = new JsonResponse(null, false, 0, 0, $e->getMessage());
0 ignored issues
show
Documentation introduced by
null is of type null, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
116
            return $template->output(json_encode($response), 'application/json');
117
        }
118
119
        $not_found_route = Config::getParam('route.404');
120
        if(null !== $not_found_route) {
121
            Request::getInstance()->redirect($this->getRoute($not_found_route, true));
122
        } else {
123
            return $template->render('error.html.twig', array(
124
                'exception' => $e,
125
                'trace' => $e->getTraceAsString(),
126
                'error_page' => TRUE,
127
            ));
128
        }
129
    }
130
131
    /**
132
     * @return array
133
     */
134 1
    public function getSlugs()
135
    {
136 1
        return $this->slugs;
137
    }
138
139
    /**
140
     * @return array
141
     */
142 2
    public function getRoutes() {
143 2
        return $this->routing;
144
    }
145
146
    /**
147
     * Method that extract all routes in the platform
148
     * @return array
149
     */
150 1
    public function getAllRoutes()
151
    {
152 1
        $routes = [];
153 1
        foreach ($this->getRoutes() as $path => $route) {
154 1
            if (array_key_exists('slug', $route)) {
155 1
                $routes[$route['slug']] = $path;
156
            }
157
        }
158 1
        return $routes;
159
    }
160
161
    /**
162
     * @param string|null $route
163
     *
164
     * @throws \Exception
165
     * @return string HTML
166
     */
167 1
    public function execute($route)
168
    {
169 1
        Logger::log('Executing the request');
170
        try {
171
            //Search action and execute
172 1
            $this->searchAction($route);
173 1
        } catch (AccessDeniedException $e) {
174
            Logger::log(_('Solicitamos credenciales de acceso a zona restringida'), LOG_WARNING, ['file' => $e->getFile() . '[' . $e->getLine() . ']']);
175
            return Admin::staticAdminLogon($route);
176 1
        } catch (RouterException $r) {
177 1
            Logger::log($r->getMessage(), LOG_WARNING);
178
        } catch (\Exception $e) {
179
            Logger::log($e->getMessage(), LOG_ERR);
180
            throw $e;
181
        }
182
183 1
        throw new RouterException(_('Página no encontrada'), 404);
184
    }
185
186
    /**
187
     * @param $route
188
     * @throws AccessDeniedException
189
     * @throws AdminCredentialsException
190
     * @throws RouterException
191
     * @throws \Exception
192
     */
193 1
    protected function searchAction($route)
194
    {
195 1
        Logger::log('Searching action to execute: ' . $route, LOG_INFO);
196
        //Revisamos si tenemos la ruta registrada
197 1
        $parts = parse_url($route);
198 1
        $path = array_key_exists('path', $parts) ? $parts['path'] : $route;
199 1
        $httpRequest = Request::getInstance()->getMethod();
200 1
        foreach ($this->routing as $pattern => $action) {
201 1
            list($httpMethod, $routePattern) = RouterHelper::extractHttpRoute($pattern);
202 1
            $matched = RouterHelper::matchRoutePattern($routePattern, $path);
203 1
            if ($matched && ($httpMethod === 'ALL' || $httpRequest === $httpMethod) && RouterHelper::compareSlashes($routePattern, $path)) {
204
                // Checks restricted access
205
                SecurityHelper::checkRestrictedAccess($route);
206
                $get = RouterHelper::extractComponents($route, $routePattern);
207
                /** @var $class \PSFS\base\types\Controller */
208
                $class = RouterHelper::getClassToCall($action);
209
                try {
210
                    if($this->checkRequirements($action, $get)) {
211
                        $this->executeCachedRoute($route, $action, $class, $get);
0 ignored issues
show
Documentation introduced by
$class is of type object<PSFS\base\types\Controller>, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
212
                    } else {
213
                        throw new RouterException(_('La ruta no es válida'), 400);
214
                    }
215
                } catch (\Exception $e) {
216
                    Logger::log($e->getMessage(), LOG_ERR);
217 1
                    throw $e;
218
                }
219
            }
220
        }
221 1
        throw new RouterException(_('Ruta no encontrada'));
222
    }
223
224
    /**
225
     * @param array $action
226
     * @param array $params
227
     * @return bool
228
     */
229
    private function checkRequirements(array $action, $params = []) {
230
        if(!empty($params) && !empty($action['requirements'])) {
231
            $checked = 0;
232
            foreach(array_keys($params) as $key) {
233
                if(in_array($key, $action['requirements'], true)) {
234
                    $checked++;
235
                }
236
            }
237
            $valid = count($action['requirements']) === $checked;
238
        } else {
239
            $valid = true;
240
        }
241
        return $valid;
242
    }
243
244
    /**
245
     * @return string HTML
246
     */
247
    protected function sentAuthHeader()
248
    {
249
        return AdminServices::getInstance()->setAdminHeaders();
250
    }
251
252
    /**
253
     * @return string|null
254
     */
255 1
    private function getExternalModules() {
256 1
        $externalModules = Config::getParam('modules.extend', '');
257 1
        $externalModules .= ',psfs/auth';
258 1
        return $externalModules;
259
    }
260
261
    /**
262
     * @param boolean $hydrateRoute
263
     */
264 1
    private function checkExternalModules($hydrateRoute = true)
265
    {
266 1
        $externalModules = $this->getExternalModules();
267 1
        if ('' !== $externalModules) {
268 1
            $externalModules = explode(',', $externalModules);
269 1
            foreach ($externalModules as &$module) {
270 1
                $module = $this->loadExternalModule($hydrateRoute, $module);
271
            }
272
        }
273 1
    }
274
275
    /**
276
     * @throws exception\GeneratorException
277
     * @throws ConfigException
278
     * @throws \InvalidArgumentException
279
     */
280 1
    private function generateRouting()
281
    {
282 1
        $base = SOURCE_DIR;
283 1
        $modulesPath = realpath(CORE_DIR);
284 1
        $this->routing = $this->inspectDir($base, 'PSFS', array());
285 1
        $this->checkExternalModules();
286 1
        if (file_exists($modulesPath)) {
287
            $modules = $this->finder->directories()->in($modulesPath)->depth(0);
288
            if($modules->hasResults()) {
289
                foreach ($modules->getIterator() as $modulePath) {
290
                    $module = $modulePath->getBasename();
291
                    $this->routing = $this->inspectDir($modulesPath . DIRECTORY_SEPARATOR . $module, $module, $this->routing);
292
                }
293
            }
294
        }
295 1
        $this->cache->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'domains.json', $this->domains, Cache::JSON, TRUE);
296 1
    }
297
298
    /**
299
     * @throws exception\GeneratorException
300
     * @throws ConfigException
301
     * @throws \InvalidArgumentException
302
     */
303 1
    public function hydrateRouting()
304
    {
305 1
        $this->generateRouting();
306 1
        $home = Config::getParam('home.action');
307 1
        if (NULL !== $home || $home !== '') {
308 1
            $home_params = NULL;
309 1
            foreach ($this->routing as $pattern => $params) {
310 1
                list($method, $route) = RouterHelper::extractHttpRoute($pattern);
311 1
                if (preg_match('/' . preg_quote($route, '/') . '$/i', '/' . $home)) {
312 1
                    $home_params = $params;
313
                }
314
            }
315 1
            if (NULL !== $home_params) {
316
                $this->routing['/'] = $home_params;
317
            }
318
        }
319 1
    }
320
321
    /**
322
     * @param string $origen
323
     * @param string $namespace
324
     * @param array $routing
325
     * @return array
326
     * @throws ConfigException
327
     * @throws \InvalidArgumentException
328
     */
329 1
    private function inspectDir($origen, $namespace = 'PSFS', $routing = [])
330
    {
331 1
        $files = $this->finder->files()->in($origen)->path('/(controller|api)/i')->depth(1)->name('*.php');
332 1
        if($files->hasResults()) {
333 1
            foreach ($files->getIterator() as $file) {
334 1
                if(method_exists($file, 'getRelativePathname') && $namespace !== 'PSFS') {
335
                    $filename = '\\' . str_replace('/', '\\', str_replace($origen, '', $file->getRelativePathname()));
336
                } else {
337 1
                    $filename = str_replace('/', '\\', str_replace($origen, '', $file->getPathname()));
338
                }
339 1
                $routing = $this->addRouting($namespace . str_replace('.php', '', $filename), $routing, $namespace);
340
            }
341
        }
342 1
        $this->finder = new Finder();
343
344 1
        return $routing;
345
    }
346
347
    /**
348
     * @param string $namespace
349
     * @return bool
350
     */
351 3
    public static function exists($namespace)
352
    {
353 3
        return (class_exists($namespace) || interface_exists($namespace) || trait_exists($namespace));
354
    }
355
356
    /**
357
     *
358
     * @param string $namespace
359
     * @param array $routing
360
     * @param string $module
361
     *
362
     * @return array
363
     * @throws ConfigException
364
     */
365 1
    private function addRouting($namespace, &$routing, $module = 'PSFS')
366
    {
367 1
        if (self::exists($namespace)) {
368 1
            if(I18nHelper::checkI18Class($namespace)) {
369
                return $routing;
370
            }
371 1
            $reflection = new \ReflectionClass($namespace);
372 1
            if (FALSE === $reflection->isAbstract() && FALSE === $reflection->isInterface()) {
373 1
                $this->extractDomain($reflection);
374 1
                $classComments = $reflection->getDocComment();
375 1
                preg_match('/@api\ (.*)\n/im', $classComments, $apiPath);
376 1
                $api = '';
377 1
                if (count($apiPath)) {
378
                    $api = array_key_exists(1, $apiPath) ? $apiPath[1] : $api;
379
                }
380 1
                foreach ($reflection->getMethods(\ReflectionMethod::IS_PUBLIC) as $method) {
381 1
                    if (preg_match('/@route\ /i', $method->getDocComment())) {
382 1
                        list($route, $info) = RouterHelper::extractRouteInfo($method, str_replace('\\', '', $api), str_replace('\\', '', $module));
383
384 1
                        if (null !== $route && null !== $info) {
385 1
                            $info['class'] = $namespace;
386 1
                            $routing[$route] = $info;
387
                        }
388
                    }
389
                }
390
            }
391
        }
392
393 1
        return $routing;
394
    }
395
396
    /**
397
     *
398
     * @param \ReflectionClass $class
399
     *
400
     * @return Router
401
     * @throws ConfigException
402
     */
403 1
    protected function extractDomain(\ReflectionClass $class)
404
    {
405
        //Calculamos los dominios para las plantillas
406 1
        if ($class->hasConstant('DOMAIN') && !$class->isAbstract()) {
407 1
            if (!$this->domains) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $this->domains of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
408 1
                $this->domains = [];
409
            }
410 1
            $domain = '@' . $class->getConstant('DOMAIN') . '/';
411 1
            if (!array_key_exists($domain, $this->domains)) {
412 1
                $this->domains[$domain] = RouterHelper::extractDomainInfo($class, $domain);
413
            }
414
        }
415
416 1
        return $this;
417
    }
418
419
    /**
420
     * @return $this
421
     * @throws exception\GeneratorException
422
     * @throws ConfigException
423
     */
424 1
    public function simpatize()
425
    {
426 1
        $translationFileName = 'translations' . DIRECTORY_SEPARATOR . 'routes_translations.php';
427 1
        $absoluteTranslationFileName = CACHE_DIR . DIRECTORY_SEPARATOR . $translationFileName;
428 1
        $this->generateSlugs($absoluteTranslationFileName);
429 1
        GeneratorHelper::createDir(CONFIG_DIR);
430 1
        Cache::getInstance()->storeData(CONFIG_DIR . DIRECTORY_SEPARATOR . 'urls.json', array($this->routing, $this->slugs), Cache::JSON, TRUE);
431
432 1
        return $this;
433
    }
434
435
    /**
436
     * @param string $slug
437
     * @param boolean $absolute
438
     * @param array $params
439
     *
440
     * @return string|null
441
     * @throws RouterException
442
     */
443 3
    public function getRoute($slug = '', $absolute = FALSE, array $params = [])
444
    {
445 3
        if ('' === $slug) {
446 1
            return $absolute ? Request::getInstance()->getRootUrl() . '/' : '/';
447
        }
448 3
        if (!is_array($this->slugs) || !array_key_exists($slug, $this->slugs)) {
449 1
            throw new RouterException(_('No existe la ruta especificada'));
450
        }
451 3
        $url = $absolute ? Request::getInstance()->getRootUrl() . $this->slugs[$slug] : $this->slugs[$slug];
452 3
        if (!empty($params)) {
453
            foreach ($params as $key => $value) {
454
                $url = str_replace('{' . $key . '}', $value, $url);
455
            }
456 3
        } elseif (!empty($this->routing[$this->slugs[$slug]]['default'])) {
457 3
            $url = $absolute ? Request::getInstance()->getRootUrl() . $this->routing[$this->slugs[$slug]]['default'] : $this->routing[$this->slugs[$slug]]['default'];
458
        }
459
460 3
        return preg_replace('/(GET|POST|PUT|DELETE|ALL)\#\|\#/', '', $url);
461
    }
462
463
    /**
464
     * @deprecated
465
     * @return array
466
     */
467
    public function getAdminRoutes()
468
    {
469
        return AdminHelper::getAdminRoutes($this->routing);
470
    }
471
472
    /**
473
     * @deprecated
474
     * @return Admin
475
     */
476
    public function getAdmin()
477
    {
478
        return Admin::getInstance();
479
    }
480
481
    /**
482
     * @return array
483
     */
484 1
    public function getDomains()
485
    {
486 1
        return $this->domains ?: [];
487
    }
488
489
    /**
490
     * @param string $class
491
     * @param string $method
492
     */
493
    private function checkPreActions($class, $method) {
494
        $preAction = 'pre' . ucfirst($method);
495
        if(method_exists($class, $preAction)) {
496
            Logger::log(_('Pre action invoked'));
497
            try {
498 View Code Duplication
                if(false === call_user_func_array([$class, $preAction])) {
499
                    Logger::log(_('Pre action failed'), LOG_ERR, [error_get_last()]);
500
                    error_clear_last();
501
                }
502
            } catch (\Exception $e) {
503
                Logger::log($e->getMessage(), LOG_ERR, [$class, $method]);
504
            }
505
        }
506
    }
507
508
    /**
509
     * @param string $route
510
     * @param array $action
511
     * @param string $class
512
     * @param array $params
0 ignored issues
show
Documentation introduced by
Should the type for parameter $params not be array|null? Also, consider making the array more specific, something like array<String>, or String[].

This check looks for @param annotations where the type inferred by our type inference engine differs from the declared type.

It makes a suggestion as to what type it considers more descriptive. In addition it looks for parameters that have the generic type array and suggests a stricter type like array<String>.

Most often this is a case of a parameter that can be null in addition to its declared types.

Loading history...
513
     * @throws exception\GeneratorException
514
     * @throws ConfigException
515
     */
516
    protected function executeCachedRoute($route, $action, $class, $params = NULL)
517
    {
518
        Logger::log('Executing route ' . $route, LOG_INFO);
519
        $action['params'] = array_merge($action['params'], $params, Request::getInstance()->getQueryParams());
520
        Security::getInstance()->setSessionKey(Cache::CACHE_SESSION_VAR, $action);
521
        $cache = Cache::needCache();
522
        $execute = TRUE;
523
        if (FALSE !== $cache && $action['http'] === 'GET' && Config::getParam('debug') === FALSE) {
524
            list($path, $cacheDataName) = $this->cache->getRequestCacheHash();
525
            $cachedData = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $cache);
0 ignored issues
show
Bug introduced by
It seems like $cache defined by \PSFS\base\Cache::needCache() on line 521 can also be of type boolean; however, PSFS\base\Cache::readFromCache() does only seem to accept integer, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
526
            if (NULL !== $cachedData) {
527
                $headers = $this->cache->readFromCache('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', $cache, null, Cache::JSON);
0 ignored issues
show
Bug introduced by
It seems like $cache defined by \PSFS\base\Cache::needCache() on line 521 can also be of type boolean; however, PSFS\base\Cache::readFromCache() does only seem to accept integer, maybe add an additional type check?

If a method or function can return multiple different values and unless you are sure that you only can receive a single value in this context, we recommend to add an additional type check:

/**
 * @return array|string
 */
function returnsDifferentValues($x) {
    if ($x) {
        return 'foo';
    }

    return array();
}

$x = returnsDifferentValues($y);
if (is_array($x)) {
    // $x is an array.
}

If this a common case that PHP Analyzer should handle natively, please let us know by opening an issue.

Loading history...
528
                Template::getInstance()->renderCache($cachedData, $headers);
529
                $execute = FALSE;
530
            }
531
        }
532
        if ($execute) {
533
            Logger::log(_('Start executing action'));
534
            $this->checkPreActions($class, $action['method']);
535 View Code Duplication
            if (false === call_user_func_array([$class, $action['method']], $params)) {
536
                Logger::log(_('An error occurred trying to execute the action'), LOG_ERR, [error_get_last()]);
537
            }
538
        }
539
    }
540
541
    /**
542
     * Parse slugs to create translations
543
     *
544
     * @param string $absoluteTranslationFileName
545
     */
546 1
    private function generateSlugs($absoluteTranslationFileName)
547
    {
548 1
        $translations = I18nHelper::generateTranslationsFile($absoluteTranslationFileName);
549 1
        foreach ($this->routing as $key => &$info) {
550 1
            $keyParts = explode('#|#', $key);
551 1
            $keyParts = array_key_exists(1, $keyParts) ? $keyParts[1] : $keyParts[0];
552 1
            $slug = RouterHelper::slugify($keyParts);
553 1
            if (NULL !== $slug && !array_key_exists($slug, $translations)) {
554 1
                $translations[$slug] = $info['label'];
555 1
                file_put_contents($absoluteTranslationFileName, "\$translations[\"{$slug}\"] = _(\"{$info['label']}\");\n", FILE_APPEND);
556
            }
557 1
            $this->slugs[$slug] = $key;
558 1
            $info['slug'] = $slug;
559
        }
560 1
    }
561
562
    /**
563
     * @param bool $hydrateRoute
564
     * @param $modulePath
565
     * @param $externalModulePath
566
     */
567
    private function loadExternalAutoloader($hydrateRoute, SplFileInfo $modulePath, $externalModulePath)
568
    {
569
        $extModule = $modulePath->getBasename();
570
        $moduleAutoloader = realpath($externalModulePath . DIRECTORY_SEPARATOR . $extModule . DIRECTORY_SEPARATOR . 'autoload.php');
571
        if(file_exists($moduleAutoloader)) {
572
            include_once $moduleAutoloader;
573
            if ($hydrateRoute) {
574
                $this->routing = $this->inspectDir($externalModulePath . DIRECTORY_SEPARATOR . $extModule, '\\' . $extModule, $this->routing);
575
            }
576
        }
577
    }
578
579
    /**
580
     * @param $hydrateRoute
581
     * @param $module
582
     * @return mixed
583
     */
584 1
    private function loadExternalModule($hydrateRoute, $module)
585
    {
586
        try {
587 1
            $module = preg_replace('/(\\\|\/)/', DIRECTORY_SEPARATOR, $module);
588 1
            $externalModulePath = VENDOR_DIR . DIRECTORY_SEPARATOR . $module . DIRECTORY_SEPARATOR . 'src';
589 1
            if(file_exists($externalModulePath)) {
590
                $externalModule = $this->finder->directories()->in($externalModulePath)->depth(0);
591
                if($externalModule->hasResults()) {
592
                    foreach ($externalModule->getIterator() as $modulePath) {
593 1
                        $this->loadExternalAutoloader($hydrateRoute, $modulePath, $externalModulePath);
594
                    }
595
                }
596
            }
597
        } catch (\Exception $e) {
598
            Logger::log($e->getMessage(), LOG_WARNING);
599
            $module = null;
600
        }
601 1
        return $module;
602
    }
603
604
}
605