1 | <?php |
||
20 | abstract class ServiceProvider extends \Illuminate\Support\ServiceProvider |
||
21 | { |
||
22 | protected $packagePath; |
||
23 | protected $packageName; |
||
24 | |||
25 | /** |
||
26 | * Bootstrap the application services. |
||
27 | */ |
||
28 | public function boot() |
||
29 | { |
||
30 | // |
||
31 | } |
||
32 | |||
33 | /** |
||
34 | * Register the application services. |
||
35 | */ |
||
36 | public function register() |
||
37 | { |
||
38 | $this->packagePath = $this->getPackagePath(); |
||
39 | $this->packageName = $this->getPackageName(); |
||
40 | |||
41 | $this->registerAssetPublisher(); |
||
42 | |||
43 | $this->registerConfigPublisher(); |
||
44 | |||
45 | $this->registerViewPublisher(); |
||
46 | |||
47 | $this->registerMigrationPublisher(); |
||
48 | |||
49 | $this->registerSeedPublisher(); |
||
50 | |||
51 | $this->registerTranslationPublisher(); |
||
52 | |||
53 | $this->registerViewLoader(); |
||
54 | |||
55 | $this->registerRouteLoader(); |
||
56 | |||
57 | $this->registerTranslationLoader(); |
||
58 | } |
||
59 | |||
60 | /** |
||
61 | * Get the services provided by the provider. |
||
62 | * |
||
63 | * @return array |
||
64 | */ |
||
65 | public function provides() |
||
66 | { |
||
67 | return [ |
||
68 | 'publisher.asset', |
||
69 | 'publisher.config', |
||
70 | 'publisher.views', |
||
71 | 'publisher.migrations', |
||
72 | 'publisher.seeds', |
||
73 | 'publisher.translations', |
||
74 | 'loader.views', |
||
75 | 'loader.routes', |
||
76 | 'loader.translations', |
||
77 | ]; |
||
78 | } |
||
79 | |||
80 | /** |
||
81 | * Register configuration paths to be published by the publish command. |
||
82 | */ |
||
83 | protected function publishConfig() |
||
84 | { |
||
85 | $this->publishes( |
||
86 | $this->app['publisher.config']->getFileList($this->packagePath), |
||
87 | 'config' |
||
88 | ); |
||
89 | } |
||
90 | |||
91 | /** |
||
92 | * Register migration paths to be published by the publish command. |
||
93 | */ |
||
94 | protected function publishMigrations() |
||
95 | { |
||
96 | $this->publishes( |
||
97 | $this->app['publisher.migrations']->getFileList($this->packagePath), |
||
98 | 'migrations' |
||
99 | ); |
||
100 | } |
||
101 | |||
102 | /** |
||
103 | * Register views paths to be published by the publish command. |
||
104 | */ |
||
105 | protected function publishViews() |
||
106 | { |
||
107 | $this->publishes( |
||
108 | $this->app['publisher.views']->getFileList($this->packagePath), |
||
109 | 'views' |
||
110 | ); |
||
111 | } |
||
112 | |||
113 | /** |
||
114 | * Register assets paths to be published by the publish command. |
||
115 | */ |
||
116 | protected function publishAssets() |
||
117 | { |
||
118 | $this->publishes( |
||
119 | $this->app['publisher.asset']->getFileList($this->packagePath), |
||
120 | 'assets' |
||
121 | ); |
||
122 | } |
||
123 | |||
124 | /** |
||
125 | * Register seeds paths to be published by the publish command. |
||
126 | */ |
||
127 | protected function publishSeeds() |
||
128 | { |
||
129 | $this->publishes( |
||
130 | $this->app['publisher.seeds']->getFileList($this->packagePath), |
||
131 | 'seeds' |
||
132 | ); |
||
133 | } |
||
134 | |||
135 | /** |
||
136 | * Register a view file namespace. |
||
137 | */ |
||
138 | protected function loadViews() |
||
139 | { |
||
140 | $this->loadViewsFrom( |
||
141 | $this->app['loader.views']->getFileList($this->packagePath), |
||
142 | $this->packageName |
||
143 | ); |
||
144 | } |
||
145 | |||
146 | /** |
||
147 | * Register a translation file namespace. |
||
148 | */ |
||
149 | protected function loadTranslations() |
||
150 | { |
||
151 | $this->loadTranslationsFrom( |
||
152 | $this->app['loader.translations']->getFileList($this->packagePath), |
||
153 | $this->packageName |
||
154 | ); |
||
155 | } |
||
156 | |||
157 | /** |
||
158 | * Register a route file namespace. |
||
159 | */ |
||
160 | protected function loadRoutes() |
||
161 | { |
||
162 | if (!$this->app->routesAreCached()) { |
||
163 | require $this->app['loader.routes']->getFileList($this->packagePath); |
||
164 | } |
||
165 | } |
||
166 | |||
167 | /** |
||
168 | * Merge the given configuration with the existing configuration. |
||
169 | */ |
||
170 | protected function mergeConfig() |
||
171 | { |
||
172 | $this->mergeConfigFrom( |
||
173 | $this->packagePath.'/resources/config/'.$this->getFileName($this->packageName), |
||
174 | $this->packageName |
||
175 | ); |
||
176 | } |
||
177 | |||
178 | /** |
||
179 | * Get the default package path. |
||
180 | * |
||
181 | * @return string |
||
182 | */ |
||
183 | protected function getPackagePath() |
||
187 | |||
188 | /** |
||
189 | * Get the default package name. |
||
190 | * |
||
191 | * @return string |
||
192 | */ |
||
193 | abstract protected function getPackageName(); |
||
194 | |||
195 | /** |
||
196 | * Register the asset publisher service and command. |
||
197 | */ |
||
198 | protected function registerAssetPublisher() |
||
199 | { |
||
200 | $packagePath = $this->packagePath; |
||
201 | $packageName = $this->packageName; |
||
202 | |||
203 | $this->app->singleton('publisher.asset', function (Application $app) use ($packagePath, $packageName) { |
||
204 | $publicPath = $app->publicPath(); |
||
205 | |||
206 | $publisher = new Publisher\AssetPublisher($app->make('files'), $publicPath); |
||
207 | |||
208 | $publisher->setPackagePath($packagePath); |
||
209 | $publisher->setPackageName($packageName); |
||
210 | |||
211 | return $publisher; |
||
212 | }); |
||
213 | } |
||
214 | |||
215 | /** |
||
216 | * Register the configuration publisher class and command. |
||
217 | */ |
||
218 | protected function registerConfigPublisher() |
||
219 | { |
||
220 | $packagePath = $this->packagePath; |
||
221 | $packageName = $this->packageName; |
||
222 | |||
223 | $this->app->singleton('publisher.config', function (Application $app) use ($packagePath, $packageName) { |
||
224 | $path = $app->configPath(); |
||
225 | |||
226 | $publisher = new Publisher\ConfigPublisher($app->make('files'), $path); |
||
227 | |||
228 | $publisher->setPackagePath($packagePath); |
||
229 | $publisher->setPackageName($packageName); |
||
230 | |||
231 | return $publisher; |
||
232 | }); |
||
233 | } |
||
234 | |||
235 | /** |
||
236 | * Register the view publisher class and command. |
||
237 | */ |
||
238 | protected function registerViewPublisher() |
||
239 | { |
||
240 | $packagePath = $this->packagePath; |
||
241 | $packageName = $this->packageName; |
||
242 | |||
243 | $this->app->singleton('publisher.views', function (Application $app) use ($packagePath, $packageName) { |
||
244 | $viewPath = $app->basePath().'/resources/views/vendor'; |
||
245 | |||
246 | $publisher = new Publisher\ViewPublisher($app->make('files'), $viewPath); |
||
247 | |||
248 | $publisher->setPackagePath($packagePath); |
||
249 | $publisher->setPackageName($packageName); |
||
250 | |||
251 | return $publisher; |
||
252 | }); |
||
253 | } |
||
254 | |||
255 | /** |
||
256 | * Register the migration publisher class and command. |
||
257 | */ |
||
258 | protected function registerMigrationPublisher() |
||
259 | { |
||
260 | $packagePath = $this->packagePath; |
||
261 | $packageName = $this->packageName; |
||
262 | |||
263 | $this->app->singleton('publisher.migrations', function (Application $app) use ($packagePath, $packageName) { |
||
264 | $viewPath = $app->databasePath().'/migrations'; |
||
|
|||
265 | |||
266 | $publisher = new Publisher\MigrationPublisher($app->make('files'), $viewPath); |
||
267 | |||
268 | $publisher->setPackagePath($packagePath); |
||
269 | $publisher->setPackageName($packageName); |
||
270 | |||
271 | return $publisher; |
||
272 | }); |
||
273 | } |
||
274 | |||
275 | /** |
||
276 | * Register the migration publisher class and command. |
||
277 | */ |
||
278 | protected function registerSeedPublisher() |
||
279 | { |
||
280 | $packagePath = $this->packagePath; |
||
281 | $packageName = $this->packageName; |
||
282 | |||
283 | $this->app->singleton('publisher.seeds', function (Application $app) use ($packagePath, $packageName) { |
||
284 | $viewPath = $app->databasePath().'/seeds'; |
||
285 | |||
286 | $publisher = new Publisher\SeedPublisher($app->make('files'), $viewPath); |
||
287 | |||
288 | $publisher->setPackagePath($packagePath); |
||
289 | $publisher->setPackageName($packageName); |
||
290 | |||
291 | return $publisher; |
||
292 | }); |
||
293 | } |
||
294 | |||
295 | /** |
||
296 | * Register the migration publisher class and command. |
||
297 | */ |
||
298 | protected function registerTranslationPublisher() |
||
299 | { |
||
300 | $packagePath = $this->packagePath; |
||
301 | $packageName = $this->packageName; |
||
302 | |||
303 | $this->app->singleton('publisher.translations', function (Application $app) use ($packagePath, $packageName) { |
||
304 | $viewPath = $app->basePath().'/resources/lang/vendor'; |
||
305 | |||
306 | $publisher = new Publisher\TranslationPublisher($app->make('files'), $viewPath); |
||
307 | |||
308 | $publisher->setPackagePath($packagePath); |
||
309 | $publisher->setPackageName($packageName); |
||
310 | |||
311 | return $publisher; |
||
312 | }); |
||
313 | } |
||
314 | |||
315 | /** |
||
316 | * Register the view loader class and command. |
||
317 | */ |
||
318 | protected function registerViewLoader() |
||
319 | { |
||
320 | $packagePath = $this->packagePath; |
||
321 | |||
322 | $this->app->singleton('loader.views', function (Application $app) use ($packagePath) { |
||
323 | $publisher = new Loader\ViewLoader($app->make('files')); |
||
324 | |||
325 | $publisher->setPackagePath($packagePath); |
||
326 | |||
327 | return $publisher; |
||
328 | }); |
||
329 | } |
||
330 | |||
331 | /** |
||
332 | * Register the view loader class and command. |
||
333 | */ |
||
334 | protected function registerRouteLoader() |
||
346 | |||
347 | /** |
||
348 | * Register the view loader class and command. |
||
349 | */ |
||
350 | protected function registerTranslationLoader() |
||
351 | { |
||
352 | $packagePath = $this->packagePath; |
||
353 | |||
354 | $this->app->singleton('loader.translations', function (Application $app) use ($packagePath) { |
||
355 | $publisher = new Loader\TranslationLoader($app->make('files')); |
||
356 | |||
357 | $publisher->setPackagePath($packagePath); |
||
358 | |||
359 | return $publisher; |
||
360 | }); |
||
361 | } |
||
362 | |||
363 | /** |
||
364 | * @param $file |
||
365 | * |
||
366 | * @return string |
||
367 | */ |
||
368 | protected function getFileName($file) |
||
378 | } |
||
379 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.