1
|
|
|
<?php namespace Mascame\Artificer; |
2
|
|
|
|
3
|
|
|
use Illuminate\Support\Facades\App; |
4
|
|
|
|
5
|
|
|
/** |
6
|
|
|
* How it works: Simply we wait until app is ready to publish whatever is in the vendor's publishable files |
7
|
|
|
* |
8
|
|
|
* Class AutoPublishable |
9
|
|
|
* @package Mascame\Artificer |
10
|
|
|
*/ |
11
|
|
|
trait AutoPublishable |
12
|
|
|
{ |
13
|
|
|
/** |
14
|
|
|
* @var App |
15
|
|
|
*/ |
16
|
|
|
protected $app; |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* Should it run only in development mode? |
20
|
|
|
* |
21
|
|
|
* @var bool |
22
|
|
|
*/ |
23
|
|
|
protected $onlyDevelopment = true; |
24
|
|
|
|
25
|
|
|
/** |
26
|
|
|
* Determines if we are missing one or more publishable directories |
27
|
|
|
* |
28
|
|
|
* @var bool |
29
|
|
|
*/ |
30
|
|
|
private $needsPublish = false; |
31
|
|
|
|
32
|
|
|
/** |
33
|
|
|
* @param null $fileToCheck |
34
|
|
|
* @return mixed |
35
|
|
|
*/ |
36
|
|
|
protected function isPublished($fileToCheck = null) { |
37
|
|
|
if (! $fileToCheck) $fileToCheck = config_path($this->name); |
|
|
|
|
38
|
|
|
|
39
|
|
|
return \File::exists($fileToCheck); |
40
|
|
|
} |
41
|
|
|
|
42
|
|
|
/** |
43
|
|
|
* Add files to publishable array & autopublish them in case directory does not exist |
44
|
|
|
* |
45
|
|
|
* @param array $paths |
46
|
|
|
* @param null $group |
47
|
|
|
*/ |
48
|
|
|
protected function publishes(array $paths, $group = null) { |
49
|
|
|
parent::publishes($paths, $group); |
50
|
|
|
|
51
|
|
|
if ($this->onlyDevelopment && App::environment() != 'local') return; |
52
|
|
|
|
53
|
|
|
if ($this->needsPublish) return; |
54
|
|
|
|
55
|
|
|
foreach ($paths as $path) { |
56
|
|
|
if (! $this->isPublished($path)) { |
57
|
|
|
$this->needsPublish = true; |
58
|
|
|
return; |
59
|
|
|
} |
60
|
|
|
} |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
protected function autoPublishes(\Closure $closure) { |
64
|
|
|
$closure(); |
65
|
|
|
|
66
|
|
|
if ($this->needsPublish) { |
67
|
|
|
$this->autoPublish(); |
68
|
|
|
} |
69
|
|
|
} |
70
|
|
|
|
71
|
|
|
/** |
72
|
|
|
* Publish vendor files when app is ready |
73
|
|
|
*/ |
74
|
|
|
protected function autoPublish() { |
75
|
|
|
\Artisan::call('vendor:publish', ['--provider' => self::class]); |
76
|
|
|
|
77
|
|
|
/** |
78
|
|
|
* Little "hack" because we are not in a Controller so we can not use Redirect. |
79
|
|
|
* |
80
|
|
|
* We have to refresh (we won't have files ready for this request) |
81
|
|
|
*/ |
82
|
|
|
sleep(1); |
83
|
|
|
|
84
|
|
|
header('Location: '. \URL::current()); |
85
|
|
|
die(); |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
} |
In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:
Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion: