|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Bmatovu\JsRoutes\Console; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Console\Command; |
|
6
|
|
|
use Illuminate\Filesystem\Filesystem; |
|
7
|
|
|
use Illuminate\Routing\Router; |
|
8
|
|
|
use Illuminate\Support\Facades\File; |
|
9
|
|
|
|
|
10
|
|
|
/** |
|
11
|
|
|
* @see https://ideas.hexbridge.com/how-to-use-laravel-routes-in-javascript-4d9c484a0d97 |
|
12
|
|
|
* @see https://medium.com/@jonan.pineda/thank-you-for-this-post-d1d32c991757 |
|
13
|
|
|
*/ |
|
14
|
|
|
class GenerateJsRoutesCommand extends Command |
|
15
|
|
|
{ |
|
16
|
|
|
/** |
|
17
|
|
|
* The name and signature of the console command. |
|
18
|
|
|
* |
|
19
|
|
|
* @var string |
|
20
|
|
|
*/ |
|
21
|
|
|
protected $signature = 'js-routes:generate |
|
22
|
|
|
{--p|path=resources/js/routes.json : Path for JS routes file.}'; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* The console command description. |
|
26
|
|
|
* |
|
27
|
|
|
* @var string |
|
28
|
|
|
*/ |
|
29
|
|
|
protected $description = 'Generate routes for Javascript. |
|
30
|
|
|
> Run `npm run dev` to update routes cache.'; |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* Application router. |
|
34
|
|
|
* |
|
35
|
|
|
* @var \Illuminate\Routing\Router |
|
36
|
|
|
*/ |
|
37
|
|
|
protected $router; |
|
38
|
|
|
|
|
39
|
|
|
/** |
|
40
|
|
|
* File system. |
|
41
|
|
|
* |
|
42
|
|
|
* @var \Illuminate\Filesystem\Filesystem |
|
43
|
|
|
*/ |
|
44
|
|
|
protected $file; |
|
45
|
|
|
|
|
46
|
|
|
/** |
|
47
|
|
|
* Create a new command instance. |
|
48
|
|
|
* |
|
49
|
|
|
* @param \Illuminate\Routing\Router $router |
|
50
|
|
|
* @param \Illuminate\Filesystem\Filesystem $file |
|
51
|
|
|
* |
|
52
|
|
|
* @return void |
|
53
|
|
|
*/ |
|
54
|
1 |
|
public function __construct(Router $router, Filesystem $file) |
|
55
|
|
|
{ |
|
56
|
1 |
|
parent::__construct(); |
|
57
|
1 |
|
$this->router = $router; |
|
58
|
1 |
|
$this->file = $file; |
|
59
|
1 |
|
} |
|
60
|
|
|
|
|
61
|
|
|
/** |
|
62
|
|
|
* Execute the console command. |
|
63
|
|
|
* |
|
64
|
|
|
* @return mixed |
|
65
|
|
|
*/ |
|
66
|
1 |
|
public function handle() |
|
67
|
|
|
{ |
|
68
|
1 |
|
$this->line('Generating routes for Javascript.'); |
|
69
|
|
|
|
|
70
|
1 |
|
$jsRoutes = collect($this->router->getRoutes()) |
|
71
|
|
|
->filter(function ($route) { |
|
72
|
1 |
|
return ! $this->matches(config('js-routes.excluded'), $route->uri); |
|
73
|
1 |
|
}) |
|
74
|
|
|
->reduce(function ($jsRoutes, $route) { |
|
75
|
1 |
|
$jsRoutes[$route->getName()] = $route->uri; |
|
76
|
1 |
|
|
|
77
|
|
|
return $jsRoutes; |
|
78
|
1 |
|
}, []); |
|
79
|
|
|
|
|
80
|
1 |
|
$path = $this->option('path'); |
|
81
|
|
|
|
|
82
|
1 |
|
$this->file->put($path, json_encode($jsRoutes, JSON_PRETTY_PRINT)); |
|
83
|
1 |
|
|
|
84
|
|
|
$this->line("Routes saved to '{$path}'."); |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* Perform a regular expression match. |
|
89
|
|
|
* |
|
90
|
|
|
* @param array $patterns |
|
91
|
|
|
* @param string $subject |
|
92
|
|
|
* |
|
93
|
|
|
* @return bool |
|
94
|
|
|
*/ |
|
95
|
|
|
protected function matches($patterns, $subject) |
|
96
|
|
|
{ |
|
97
|
|
|
$isMatched = false; |
|
98
|
|
|
|
|
99
|
|
|
foreach ($patterns as $pattern) { |
|
100
|
|
|
if (preg_match($pattern, $subject)) { |
|
101
|
|
|
$isMatched = true; |
|
102
|
|
|
|
|
103
|
|
|
break; |
|
104
|
|
|
} |
|
105
|
|
|
} |
|
106
|
|
|
|
|
107
|
|
|
return $isMatched; |
|
108
|
|
|
} |
|
109
|
|
|
} |
|
110
|
|
|
|