-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFailedJobsServiceProvider.php
130 lines (115 loc) · 3.13 KB
/
FailedJobsServiceProvider.php
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
<?php
namespace HPWebdeveloper\LaravelFailedJobs;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Contracts\Foundation\CachesRoutes;
use Illuminate\Queue\QueueManager;
use Illuminate\Support\Facades\Route;
use Illuminate\Support\ServiceProvider;
class FailedJobsServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
$this->registerRoutes();
$this->registerResources();
$this->defineAssetPublishing();
$this->offerPublishing();
$this->registerCommands();
}
/**
* Register the FailedJobs routes.
*
* @return void
*/
protected function registerRoutes()
{
if ($this->app instanceof CachesRoutes && $this->app->routesAreCached()) {
return;
}
Route::group([
'domain' => config('failedjobs.domain', null),
'prefix' => config('failedjobs.path'),
'namespace' => 'HPWebdeveloper\LaravelFailedJobs\Http\Controllers',
'middleware' => config('failedjobs.middleware', 'web'),
], function () {
$this->loadRoutesFrom(__DIR__.'/../routes/web.php');
});
}
/**
* Register the FailedJobs resources.
*
* @return void
*/
protected function registerResources()
{
$this->loadViewsFrom(__DIR__.'/../resources/views', 'failedjobs');
}
/**
* Define the asset publishing configuration.
*
* @return void
*/
public function defineAssetPublishing()
{
$this->publishes([
FAILEDJOBS_PATH.'/public' => public_path('vendor/failedjobs'),
], ['failedjobs-assets', 'laravel-assets']);
}
/**
* Setup the resource publishing groups for FailedJobs.
*
* @return void
*/
protected function offerPublishing()
{
if ($this->app->runningInConsole()) {
$this->publishes([
__DIR__.'/../stubs/FailedJobsServiceProvider.stub' => app_path('Providers/FailedJobsServiceProvider.php'),
], 'failedjobs-provider');
$this->publishes([
__DIR__.'/../config/failedjobs.php' => config_path('failedjobs.php'),
], 'failedjobs-config');
}
}
/**
* Register the FailedJobs Artisan commands.
*
* @return void
*/
protected function registerCommands()
{
if ($this->app->runningInConsole()) {
$this->commands([
Console\InstallCommand::class,
Console\PublishCommand::class,
]);
}
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
if (! defined('FAILEDJOBS_PATH')) {
define('FAILEDJOBS_PATH', realpath(__DIR__.'/../'));
}
$this->configure();
}
/**
* Setup the configuration for FailedJobs.
*
* @return void
*/
protected function configure()
{
$this->mergeConfigFrom(
__DIR__.'/../config/failedjobs.php', 'failedjobs'
);
}
}