forked from Alex/Pterodactyl-Panel
52 lines
1.8 KiB
PHP
52 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* Pterodactyl - Panel
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
*
|
|
* This software is licensed under the terms of the MIT license.
|
|
* https://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
namespace Pterodactyl\Traits\Commands;
|
|
|
|
use Pterodactyl\Exceptions\PterodactylException;
|
|
|
|
trait EnvironmentWriterTrait
|
|
{
|
|
/**
|
|
* Update the .env file for the application using the passed in values.
|
|
*
|
|
* @param array $values
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\PterodactylException
|
|
*/
|
|
public function writeToEnvironment(array $values = [])
|
|
{
|
|
$path = base_path('.env');
|
|
if (! file_exists($path)) {
|
|
throw new PterodactylException('Cannot locate .env file, was this software installed correctly?');
|
|
}
|
|
|
|
$saveContents = file_get_contents($path);
|
|
collect($values)->each(function ($value, $key) use (&$saveContents) {
|
|
$key = strtoupper($key);
|
|
// If the key value is not sorrounded by quotation marks, and contains anything that could reasonably
|
|
// cause environment parsing issues, wrap it in quotes before writing it. This also adds slashes to the
|
|
// value to ensure quotes within it don't cause us issues.
|
|
if (! preg_match('/^\"(.*)\"$/', $value) && preg_match('/([^\w.\-+\/])+/', $value)) {
|
|
$value = sprintf('"%s"', addslashes($value));
|
|
}
|
|
|
|
$saveValue = sprintf('%s=%s', $key, $value);
|
|
|
|
if (preg_match_all('/^' . $key . '=(.*)$/m', $saveContents) < 1) {
|
|
$saveContents = $saveContents . PHP_EOL . $saveValue;
|
|
} else {
|
|
$saveContents = preg_replace('/^' . $key . '=(.*)$/m', $saveValue, $saveContents);
|
|
}
|
|
});
|
|
|
|
file_put_contents($path, $saveContents);
|
|
}
|
|
}
|