mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 09:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.5 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 (str_contains($value, ' ') && ! preg_match('/\"(.*)\"/', $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);
 | 
						|
    }
 | 
						|
}
 |