Files
librenms-librenms/LibreNMS/Util/EnvHelper.php

97 lines
2.9 KiB
PHP
Raw Normal View History

2020-06-08 02:21:03 -05:00
<?php
/**
* EnvHelper.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2020 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Util;
class EnvHelper
{
/**
* Fix .env with # in them without a space before it
*/
public static function fixComments($dotenv)
{
return implode(PHP_EOL, array_map(function ($line) {
$parts = explode('=', $line, 2);
if (isset($parts[1])
&& preg_match('/(?<!\s)#/', $parts[1]) // number symbol without a space before it
&& !preg_match('/^(".*"|\'.*\')$/', $parts[1]) // not already quoted
) {
return trim($parts[0]) . '="' . trim($parts[1]) . '"';
}
return $line;
}, explode(PHP_EOL, $dotenv)));
}
/**
* Set a setting in .env file.
* Will only set non-empty unset variables
*
* @param array $settings KEY => value list of settings
* @param array $force
* @param string $file
* @return string
*/
public static function setEnv($settings, $force = [], $file = '.env')
{
$original_content = $content = file_get_contents($file);
// TODO implement force
// ensure trailing line return
if (substr($content, -1) !== PHP_EOL) {
$content .= PHP_EOL;
}
foreach ($settings as $key => $value) {
// only add non-empty settings
if (empty($value)) {
continue;
}
// quote strings with spaces
if (strpos($value, ' ') !== false) {
$value = "\"$value\"";
}
if (strpos($content, "$key=") !== false) {
// only replace ones that aren't already set for safety and uncomment
// escape $ in the replacement
$content = preg_replace("/#?$key=\n/", addcslashes("$key=$value\n", '$'), $content);
} else {
$content .= "$key=$value\n";
}
}
$content = self::fixComments($content);
// only write if the content has changed
if ($content !== $original_content) {
file_put_contents($file, $content);
}
return $content;
}
}