@@ -17,8 +17,6 @@ |
||
| 17 | 17 | |
| 18 | 18 | namespace App\Http\Controllers; |
| 19 | 19 | |
| 20 | -use App\Http\Requests; |
|
| 21 | -use App\Models\DbConfig; |
|
| 22 | 20 | use Illuminate\Http\Request; |
| 23 | 21 | use Settings; |
| 24 | 22 | |
@@ -15,13 +15,13 @@ |
||
| 15 | 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | 16 | */ |
| 17 | 17 | /** |
| 18 | - * SettingsController.php |
|
| 19 | - * |
|
| 20 | - * @package LibreNMS |
|
| 21 | - * @author Tony Murray <[email protected]> |
|
| 22 | - * @copyright 2016 Tony Murray |
|
| 23 | - * @license @license http://opensource.org/licenses/GPL-3.0 GNU Public License v3 or later |
|
| 24 | - */ |
|
| 18 | + * SettingsController.php |
|
| 19 | + * |
|
| 20 | + * @package LibreNMS |
|
| 21 | + * @author Tony Murray <[email protected]> |
|
| 22 | + * @copyright 2016 Tony Murray |
|
| 23 | + * @license @license http://opensource.org/licenses/GPL-3.0 GNU Public License v3 or later |
|
| 24 | + */ |
|
| 25 | 25 | |
| 26 | 26 | namespace App\Http\Controllers; |
| 27 | 27 | |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | |
| 50 | 50 | public function scopeKey($query, $key) |
| 51 | 51 | { |
| 52 | - return $query->where('config_name', 'LIKE', $key . '%'); |
|
| 52 | + return $query->where('config_name', 'LIKE', $key.'%'); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | public function scopeExactKey($query, $key) |
@@ -220,7 +220,7 @@ |
||
| 220 | 220 | * Clear the settings cache. |
| 221 | 221 | * If path is set, only clear the path and it's parents. |
| 222 | 222 | * |
| 223 | - * @param null $key The path to clear. |
|
| 223 | + * @param string $key The path to clear. |
|
| 224 | 224 | */ |
| 225 | 225 | public function flush($key = null) |
| 226 | 226 | { |
@@ -69,11 +69,11 @@ discard block |
||
| 69 | 69 | if (!empty($key)) { |
| 70 | 70 | if (is_string($k) && !str_contains($k, '.') && DbConfig::exactKey($key)->exists() && DbConfig::key($key)->count() == 1) { |
| 71 | 71 | // check that we aren't trying to set an array onto an existing value only setting |
| 72 | - throw new \Exception("Attempting to set array value to existing non-array value at the key '" . $key . "'"); |
|
| 72 | + throw new \Exception("Attempting to set array value to existing non-array value at the key '".$key."'"); |
|
| 73 | 73 | } |
| 74 | 74 | else { |
| 75 | 75 | // we are not at the leaf yet, add this chunk to the key and recurse |
| 76 | - $this->set($key . '.' . $k, $v); |
|
| 76 | + $this->set($key.'.'.$k, $v); |
|
| 77 | 77 | } |
| 78 | 78 | } |
| 79 | 79 | else { |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | else { |
| 86 | 86 | // make sure we can save this |
| 87 | 87 | if ($this->isReadOnly($key)) { |
| 88 | - throw new \Exception("The setting '" . $key . "' is read only"); |
|
| 88 | + throw new \Exception("The setting '".$key."' is read only"); |
|
| 89 | 89 | } |
| 90 | 90 | |
| 91 | 91 | // flush the cache and save the value in db and cache |
@@ -106,10 +106,10 @@ discard block |
||
| 106 | 106 | public function get($key, $default = null) |
| 107 | 107 | { |
| 108 | 108 | // return value from cache or fetch it and return it |
| 109 | - return Cache::tags(self::$cache_tag)->remember($key, $this->cache_time, function () use ($key, $default) { |
|
| 109 | + return Cache::tags(self::$cache_tag)->remember($key, $this->cache_time, function() use ($key, $default) { |
|
| 110 | 110 | // fetch the value from config.php first |
| 111 | - if (Config::has('config.' . $key)) { |
|
| 112 | - $config_data = Config::get('config.' . $key, $default); |
|
| 111 | + if (Config::has('config.'.$key)) { |
|
| 112 | + $config_data = Config::get('config.'.$key, $default); |
|
| 113 | 113 | if (!is_array($config_data)) { |
| 114 | 114 | // return the value from config.php if it is a value |
| 115 | 115 | return $config_data; |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | */ |
| 176 | 176 | public function has($key) |
| 177 | 177 | { |
| 178 | - return (Cache::tags(self::$cache_tag)->has($key) || Config::has('config.' . $key) || DbConfig::key($key)->exists()); |
|
| 178 | + return (Cache::tags(self::$cache_tag)->has($key) || Config::has('config.'.$key) || DbConfig::key($key)->exists()); |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | */ |
| 187 | 187 | public function isReadOnly($key) |
| 188 | 188 | { |
| 189 | - return Config::has('config.' . $key); |
|
| 189 | + return Config::has('config.'.$key); |
|
| 190 | 190 | } |
| 191 | 191 | |
| 192 | 192 | /** |
@@ -70,19 +70,16 @@ discard block |
||
| 70 | 70 | if (is_string($k) && !str_contains($k, '.') && DbConfig::exactKey($key)->exists() && DbConfig::key($key)->count() == 1) { |
| 71 | 71 | // check that we aren't trying to set an array onto an existing value only setting |
| 72 | 72 | throw new \Exception("Attempting to set array value to existing non-array value at the key '" . $key . "'"); |
| 73 | - } |
|
| 74 | - else { |
|
| 73 | + } else { |
|
| 75 | 74 | // we are not at the leaf yet, add this chunk to the key and recurse |
| 76 | 75 | $this->set($key . '.' . $k, $v); |
| 77 | 76 | } |
| 78 | - } |
|
| 79 | - else { |
|
| 77 | + } else { |
|
| 80 | 78 | // a leaf, recurse one last time |
| 81 | 79 | $this->set($k, $v); |
| 82 | 80 | } |
| 83 | 81 | } |
| 84 | - } |
|
| 85 | - else { |
|
| 82 | + } else { |
|
| 86 | 83 | // make sure we can save this |
| 87 | 84 | if ($this->isReadOnly($key)) { |
| 88 | 85 | throw new \Exception("The setting '" . $key . "' is read only"); |
@@ -122,16 +119,14 @@ discard block |
||
| 122 | 119 | if (count($db_data) == 1 && $db_data->first()->config_name == $key) { |
| 123 | 120 | // return a value if we are getting one item |
| 124 | 121 | return $db_data->first()->config_value; |
| 125 | - } |
|
| 126 | - elseif (count($db_data) >= 1) { |
|
| 122 | + } elseif (count($db_data) >= 1) { |
|
| 127 | 123 | // convert the collection to an array |
| 128 | 124 | $result = self::collectionToArray($db_data, $key); |
| 129 | 125 | |
| 130 | 126 | // if we have config_data, merge them |
| 131 | 127 | if (isset($config_data)) { |
| 132 | 128 | return array_replace_recursive($result, $config_data); |
| 133 | - } |
|
| 134 | - else { |
|
| 129 | + } else { |
|
| 135 | 130 | return $result; |
| 136 | 131 | } |
| 137 | 132 | } |
@@ -227,8 +222,7 @@ discard block |
||
| 227 | 222 | if (is_null($key)) { |
| 228 | 223 | // Clear all cache |
| 229 | 224 | Cache::tags(self::$cache_tag)->flush(); |
| 230 | - } |
|
| 231 | - else { |
|
| 225 | + } else { |
|
| 232 | 226 | // Clear specific path |
| 233 | 227 | $path = []; |
| 234 | 228 | foreach (explode('.', $key) as $element) { |