|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace SET\Http\Controllers\Installation; |
|
4
|
|
|
|
|
5
|
|
|
use Illuminate\Http\Request; |
|
6
|
|
|
use Illuminate\Support\Facades\Artisan; |
|
7
|
|
|
use RachidLaasri\LaravelInstaller\Helpers\EnvironmentManager; |
|
8
|
|
|
use SET\Http\Controllers\Controller; |
|
9
|
|
|
|
|
10
|
|
|
class EnvironmentController extends Controller |
|
11
|
|
|
{ |
|
12
|
|
|
|
|
13
|
|
|
/** |
|
14
|
|
|
* @var EnvironmentManager |
|
15
|
|
|
*/ |
|
16
|
|
|
protected $EnvironmentManager; |
|
17
|
|
|
|
|
18
|
|
|
/** |
|
19
|
|
|
* @param EnvironmentManager $environmentManager |
|
20
|
|
|
*/ |
|
21
|
|
|
public function __construct(EnvironmentManager $environmentManager) |
|
22
|
|
|
{ |
|
23
|
|
|
$this->EnvironmentManager = $environmentManager; |
|
24
|
|
|
} |
|
25
|
|
|
|
|
26
|
|
|
/** |
|
27
|
|
|
* Display the Environment page. |
|
28
|
|
|
* |
|
29
|
|
|
* @return \Illuminate\View\View |
|
30
|
|
|
*/ |
|
31
|
|
|
public function index() |
|
32
|
|
|
{ |
|
33
|
|
|
$envConfig = $this->EnvironmentManager->getEnvContent(); |
|
34
|
|
|
$fields = $this->breakApartEnv($envConfig); |
|
35
|
|
|
|
|
36
|
|
|
return view('vendor.installer.environment', compact('fields')); |
|
|
|
|
|
|
37
|
|
|
} |
|
38
|
|
|
|
|
39
|
|
|
|
|
40
|
|
|
/** |
|
41
|
|
|
* Processes the newly saved environment configuration and redirects back. |
|
42
|
|
|
* |
|
43
|
|
|
* @param Request $input |
|
44
|
|
|
* @return \Illuminate\Http\RedirectResponse |
|
45
|
|
|
*/ |
|
46
|
|
|
public function store(Request $input) |
|
47
|
|
|
{ |
|
48
|
|
|
$message = $this->EnvironmentManager->saveFile($input); |
|
49
|
|
|
|
|
50
|
|
|
Artisan::call('generate:key'); |
|
51
|
|
|
|
|
52
|
|
|
return $this->route('LaravelInstaller::requirements') |
|
|
|
|
|
|
53
|
|
|
->with(['message' => $message]); |
|
54
|
|
|
} |
|
55
|
|
|
|
|
56
|
|
|
/** |
|
57
|
|
|
* Key should be before the first = symbol and value should be after. |
|
58
|
|
|
* Each new line (\r\n) should be a new array entry. |
|
59
|
|
|
* @param $string |
|
60
|
|
|
* @return array |
|
61
|
|
|
*/ |
|
62
|
|
|
private function breakApartEnv($string) |
|
63
|
|
|
{ |
|
64
|
|
|
preg_match_all('/([^=]*?)=([^\r\n]*?)[\r\n]+/', $string, $matches); |
|
65
|
|
|
|
|
66
|
|
|
return array_combine($matches[1], $matches[2]); |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
} |
|
70
|
|
|
|