1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Backpack\Base; |
4
|
|
|
|
5
|
|
|
use Illuminate\Routing\Router; |
6
|
|
|
use Illuminate\Support\ServiceProvider; |
7
|
|
|
use Route; |
8
|
|
|
|
9
|
|
|
class BaseServiceProvider extends ServiceProvider |
10
|
|
|
{ |
11
|
|
|
const VERSION = '1.0.0'; |
12
|
|
|
|
13
|
|
|
protected $commands = [ |
14
|
|
|
\Backpack\Base\app\Console\Commands\Install::class, |
15
|
|
|
\Backpack\Base\app\Console\Commands\AddSidebarContent::class, |
16
|
|
|
\Backpack\Base\app\Console\Commands\AddCustomRouteContent::class, |
17
|
|
|
\Backpack\Base\app\Console\Commands\Version::class, |
18
|
|
|
\Backpack\Base\app\Console\Commands\CreateUser::class, |
19
|
|
|
\Backpack\Base\app\Console\Commands\PublishBackpackUserModel::class, |
20
|
|
|
\Backpack\Base\app\Console\Commands\PublishBackpackMiddleware::class, |
21
|
|
|
]; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* Indicates if loading of the provider is deferred. |
25
|
|
|
* |
26
|
|
|
* @var bool |
27
|
|
|
*/ |
28
|
|
|
protected $defer = false; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* Where the route file lives, both inside the package and in the app (if overwritten). |
32
|
|
|
* |
33
|
|
|
* @var string |
34
|
|
|
*/ |
35
|
|
|
public $routeFilePath = '/routes/backpack/base.php'; |
36
|
|
|
|
37
|
|
|
/** |
38
|
|
|
* Where custom routes can be written, and will be registered by Backpack. |
39
|
|
|
* |
40
|
|
|
* @var string |
41
|
|
|
*/ |
42
|
|
|
public $customRoutesFilePath = '/routes/backpack/custom.php'; |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* Perform post-registration booting of services. |
46
|
|
|
* |
47
|
|
|
* @return void |
48
|
|
|
*/ |
49
|
|
|
public function boot(\Illuminate\Routing\Router $router) |
|
|
|
|
50
|
|
|
{ |
51
|
|
|
$_SERVER['BACKPACK_BASE_VERSION'] = $this::VERSION; |
52
|
|
|
$customViewsFolder = resource_path('views/vendor/backpack/base'); |
53
|
|
|
|
54
|
|
|
// LOAD THE VIEWS |
55
|
|
|
// - first the published views (in case they have any changes) |
56
|
|
|
if (file_exists(resource_path('views/vendor/backpack/base'))) { |
57
|
|
|
$this->loadViewsFrom($customViewsFolder, 'backpack'); |
58
|
|
|
} |
59
|
|
|
// - then the stock views that come with the package, in case a published view might be missing |
60
|
|
|
$this->loadViewsFrom(realpath(__DIR__.'/resources/views'), 'backpack'); |
61
|
|
|
|
62
|
|
|
$this->loadTranslationsFrom(realpath(__DIR__.'/resources/lang'), 'backpack'); |
63
|
|
|
|
64
|
|
|
// use the vendor configuration file as fallback |
65
|
|
|
$this->mergeConfigFrom( |
66
|
|
|
__DIR__.'/config/backpack/base.php', |
67
|
|
|
'backpack.base' |
68
|
|
|
); |
69
|
|
|
|
70
|
|
|
// add the root disk to filesystem configuration |
71
|
|
|
app()->config['filesystems.disks.'.config('backpack.base.root_disk_name')] = [ |
72
|
|
|
'driver' => 'local', |
73
|
|
|
'root' => base_path(), |
74
|
|
|
]; |
75
|
|
|
|
76
|
|
|
$this->addCustomAuthConfigurationValues(); |
77
|
|
|
$this->registerMiddlewareGroup($this->app->router); |
|
|
|
|
78
|
|
|
$this->setupRoutes($this->app->router); |
|
|
|
|
79
|
|
|
$this->setupCustomRoutes($this->app->router); |
|
|
|
|
80
|
|
|
$this->publishFiles(); |
81
|
|
|
$this->checkLicenseCodeExists(); |
82
|
|
|
} |
83
|
|
|
|
84
|
|
|
/** |
85
|
|
|
* Load the Backpack helper methods, for convenience. |
86
|
|
|
*/ |
87
|
|
|
public function loadHelpers() |
88
|
|
|
{ |
89
|
|
|
require_once __DIR__.'/helpers.php'; |
90
|
|
|
} |
91
|
|
|
|
92
|
|
|
/** |
93
|
|
|
* Backpack login differs from the standard Laravel login. |
94
|
|
|
* As such, Backpack uses its own authentication provider, password broker and guard. |
95
|
|
|
* |
96
|
|
|
* This method adds those configuration values on top of whatever is in config/auth.php. Developers can overwrite the backpack provider, password broker or guard by adding a provider/broker/guard with the "backpack" name inside their config/auth.php file. Or they can use another provider/broker/guard entirely, by changing the corresponding value inside config/backpack/base.php |
97
|
|
|
*/ |
98
|
|
|
public function addCustomAuthConfigurationValues() |
99
|
|
|
{ |
100
|
|
|
// add the backpack_users authentication provider to the configuration |
101
|
|
|
app()->config['auth.providers'] = app()->config['auth.providers'] + |
102
|
|
|
[ |
103
|
|
|
'backpack' => [ |
104
|
|
|
'driver' => 'eloquent', |
105
|
|
|
'model' => config('backpack.base.user_model_fqn'), |
106
|
|
|
], |
107
|
|
|
]; |
108
|
|
|
|
109
|
|
|
// add the backpack_users password broker to the configuration |
110
|
|
|
app()->config['auth.passwords'] = app()->config['auth.passwords'] + |
111
|
|
|
[ |
112
|
|
|
'backpack' => [ |
113
|
|
|
'provider' => 'backpack', |
114
|
|
|
'table' => 'password_resets', |
115
|
|
|
'expire' => 60, |
116
|
|
|
], |
117
|
|
|
]; |
118
|
|
|
|
119
|
|
|
// add the backpack_users guard to the configuration |
120
|
|
|
app()->config['auth.guards'] = app()->config['auth.guards'] + |
121
|
|
|
[ |
122
|
|
|
'backpack' => [ |
123
|
|
|
'driver' => 'session', |
124
|
|
|
'provider' => 'backpack', |
125
|
|
|
], |
126
|
|
|
]; |
127
|
|
|
} |
128
|
|
|
|
129
|
|
|
/** |
130
|
|
|
* Define the routes for the application. |
131
|
|
|
* |
132
|
|
|
* @param \Illuminate\Routing\Router $router |
133
|
|
|
* |
134
|
|
|
* @return void |
135
|
|
|
*/ |
136
|
|
|
public function setupRoutes(Router $router) |
|
|
|
|
137
|
|
|
{ |
138
|
|
|
// by default, use the routes file provided in vendor |
139
|
|
|
$routeFilePathInUse = __DIR__.$this->routeFilePath; |
140
|
|
|
|
141
|
|
|
// but if there's a file with the same name in routes/backpack, use that one |
142
|
|
|
if (file_exists(base_path().$this->routeFilePath)) { |
143
|
|
|
$routeFilePathInUse = base_path().$this->routeFilePath; |
144
|
|
|
} |
145
|
|
|
|
146
|
|
|
$this->loadRoutesFrom($routeFilePathInUse); |
147
|
|
|
} |
148
|
|
|
|
149
|
|
|
/** |
150
|
|
|
* Load custom routes file. |
151
|
|
|
* |
152
|
|
|
* @param \Illuminate\Routing\Router $router |
153
|
|
|
* |
154
|
|
|
* @return void |
155
|
|
|
*/ |
156
|
|
|
public function setupCustomRoutes(Router $router) |
|
|
|
|
157
|
|
|
{ |
158
|
|
|
// if the custom routes file is published, register its routes |
159
|
|
|
if (file_exists(base_path().$this->customRoutesFilePath)) { |
160
|
|
|
$this->loadRoutesFrom(base_path().$this->customRoutesFilePath); |
161
|
|
|
} |
162
|
|
|
} |
163
|
|
|
|
164
|
|
|
/** |
165
|
|
|
* Register any package services. |
166
|
|
|
* |
167
|
|
|
* @return void |
168
|
|
|
*/ |
169
|
|
|
public function register() |
170
|
|
|
{ |
171
|
|
|
// register the current package |
172
|
|
|
$this->app->bind('base', function ($app) { |
173
|
|
|
return new Base($app); |
174
|
|
|
}); |
175
|
|
|
|
176
|
|
|
// register the helper functions |
177
|
|
|
$this->loadHelpers(); |
178
|
|
|
|
179
|
|
|
// register the services that are only used for development |
180
|
|
|
if ($this->app->environment() == 'local') { |
181
|
|
|
if (class_exists('Laracasts\Generators\GeneratorsServiceProvider')) { |
182
|
|
|
$this->app->register('Laracasts\Generators\GeneratorsServiceProvider'); |
183
|
|
|
} |
184
|
|
|
if (class_exists('Backpack\Generators\GeneratorsServiceProvider')) { |
185
|
|
|
$this->app->register('Backpack\Generators\GeneratorsServiceProvider'); |
186
|
|
|
} |
187
|
|
|
} |
188
|
|
|
|
189
|
|
|
// register the artisan commands |
190
|
|
|
$this->commands($this->commands); |
191
|
|
|
} |
192
|
|
|
|
193
|
|
|
public function registerMiddlewareGroup(Router $router) |
194
|
|
|
{ |
195
|
|
|
$middleware_key = config('backpack.base.middleware_key'); |
196
|
|
|
$middleware_class = config('backpack.base.middleware_class'); |
197
|
|
|
|
198
|
|
|
if (!is_array($middleware_class)) { |
199
|
|
|
$router->pushMiddlewareToGroup($middleware_key, $middleware_class); |
200
|
|
|
|
201
|
|
|
return; |
202
|
|
|
} |
203
|
|
|
|
204
|
|
|
foreach ($middleware_class as $middleware_class) { |
205
|
|
|
$router->pushMiddlewareToGroup($middleware_key, $middleware_class); |
206
|
|
|
} |
207
|
|
|
} |
208
|
|
|
|
209
|
|
|
public function publishFiles() |
210
|
|
|
{ |
211
|
|
|
$error_views = [__DIR__.'/resources/error_views' => resource_path('views/errors')]; |
212
|
|
|
$backpack_base_views = [__DIR__.'/resources/views' => resource_path('views/vendor/backpack/base')]; |
213
|
|
|
$backpack_public_assets = [__DIR__.'/public' => public_path('vendor/backpack')]; |
214
|
|
|
$backpack_lang_files = [__DIR__.'/resources/lang' => resource_path('lang/vendor/backpack')]; |
215
|
|
|
$backpack_config_files = [__DIR__.'/config' => config_path()]; |
216
|
|
|
|
217
|
|
|
// sidebar_content view, which is the only view most people need to overwrite |
218
|
|
|
$backpack_menu_contents_view = [ |
219
|
|
|
__DIR__.'/resources/views/inc/sidebar_content.blade.php' => resource_path('views/vendor/backpack/base/inc/sidebar_content.blade.php'), |
220
|
|
|
__DIR__.'/resources/views/inc/topbar_left_content.blade.php' => resource_path('views/vendor/backpack/base/inc/topbar_left_content.blade.php'), |
221
|
|
|
__DIR__.'/resources/views/inc/topbar_right_content.blade.php' => resource_path('views/vendor/backpack/base/inc/topbar_right_content.blade.php'), |
222
|
|
|
]; |
223
|
|
|
$backpack_custom_routes_file = [__DIR__.$this->customRoutesFilePath => base_path($this->customRoutesFilePath)]; |
224
|
|
|
|
225
|
|
|
// calculate the path from current directory to get the vendor path |
226
|
|
|
$vendorPath = dirname(__DIR__, 3); |
227
|
|
|
$adminlte_assets = [$vendorPath.'/almasaeed2010/adminlte' => public_path('vendor/adminlte')]; |
228
|
|
|
$gravatar_assets = [$vendorPath.'/creativeorange/gravatar/config' => config_path()]; |
229
|
|
|
|
230
|
|
|
// establish the minimum amount of files that need to be published, for Backpack to work; there are the files that will be published by the install command |
231
|
|
|
$minimum = array_merge( |
232
|
|
|
$error_views, |
233
|
|
|
// $backpack_base_views, |
234
|
|
|
$backpack_public_assets, |
235
|
|
|
// $backpack_lang_files, |
236
|
|
|
$backpack_config_files, |
237
|
|
|
$backpack_menu_contents_view, |
238
|
|
|
$backpack_custom_routes_file, |
239
|
|
|
$adminlte_assets, |
240
|
|
|
$gravatar_assets |
241
|
|
|
); |
242
|
|
|
|
243
|
|
|
// register all possible publish commands and assign tags to each |
244
|
|
|
$this->publishes($backpack_config_files, 'config'); |
245
|
|
|
$this->publishes($backpack_lang_files, 'lang'); |
246
|
|
|
$this->publishes($backpack_base_views, 'views'); |
247
|
|
|
$this->publishes($backpack_menu_contents_view, 'menu_contents'); |
248
|
|
|
$this->publishes($error_views, 'errors'); |
249
|
|
|
$this->publishes($backpack_public_assets, 'public'); |
250
|
|
|
$this->publishes($backpack_custom_routes_file, 'custom_routes'); |
251
|
|
|
$this->publishes($adminlte_assets, 'adminlte'); |
252
|
|
|
$this->publishes($gravatar_assets, 'gravatar'); |
253
|
|
|
$this->publishes($minimum, 'minimum'); |
254
|
|
|
} |
255
|
|
|
|
256
|
|
|
/** |
257
|
|
|
* Check to to see if a license code exists. |
258
|
|
|
* If it does not, throw a notification bubble. |
259
|
|
|
* |
260
|
|
|
* @return void |
261
|
|
|
*/ |
262
|
|
|
private function checkLicenseCodeExists() |
263
|
|
|
{ |
264
|
|
|
if ($this->app->environment() != 'local' && !config('backpack.base.license_code')) { |
265
|
|
|
\Alert::add('warning', "<strong>You're using unlicensed software.</strong> Please ask your web developer to <a target='_blank' href='http://backpackforlaravel.com'>purchase a license code</a> to hide this message."); |
266
|
|
|
} |
267
|
|
|
} |
268
|
|
|
} |
269
|
|
|
|
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.