Merge pull request #1519 from NL-TCH/REST-API

RestAPI installer integrated
This commit is contained in:
Bill Zimmerman
2024-03-09 14:05:30 +01:00
committed by GitHub
32 changed files with 1003 additions and 3 deletions

View File

@@ -0,0 +1,90 @@
<?php
/**
* DotEnv parser/writer class
*
* @description Reads and sets key/value pairs to .env
* @author Bill Zimmerman <billzimmerman@gmail.com>
* @license https://github.com/raspap/raspap-webgui/blob/master/LICENSE
*/
declare(strict_types=1);
namespace RaspAP\DotEnv;
class DotEnv
{
protected $envFile;
protected $data = [];
public function __construct($envFile = RASPI_CONFIG_API. '/.env')
{
$this->envFile = $envFile;
}
public function load()
{
if (!file_exists($this->envFile)) {
$this->createEnv();
}
if (file_exists($this->envFile)) {
$this->data = parse_ini_file($this->envFile);
foreach ($this->data as $key => $value) {
if (!getenv($key)) {
putenv("$key=$value");
$_ENV[$key] = $value;
}
}
} else {
throw new Exception(".env file '{$this->envFile}' not found.");
}
}
public function set($key, $value)
{
$this->data[$key] = $value;
putenv("$key=$value");
$this->store($key, $value);
}
public function get($key)
{
return getenv($key);
}
public function getAll()
{
return $this->data;
}
public function unset($key)
{
unset($_ENV[$key]);
return $this;
}
private function store($key, $value)
{
$content = file_get_contents($this->envFile);
$content = preg_replace("/^$key=.*/m", "$key=$value", $content, 1, $count);
if ($count === 0) {
// if key doesn't exist, append it
$content .= "$key=$value\n";
}
file_put_contents("/tmp/.env", $content);
system('sudo mv /tmp/.env '.$this->envFile, $result);
if ($result !== 0) {
throw new Exception("Unable to move .env file: ". $this->envFile);
}
}
protected function createEnv()
{
exec('sudo touch '. escapeshellarg($this->envFile), $output, $result);
if ($result !== 0) {
throw new Exception("Unable to create .env file: ". $this->envFile);
}
}
}