Files
librenms-librenms/app/Console/Commands/Traits/CompletesConfigArgument.php
Jellyfrog 009d69a48d Use Collection instead of collect() (#14527)
* Use Collection instead of collect()

* wip
2022-11-05 10:04:36 +01:00

95 lines
3.1 KiB
PHP

<?php
/**
* CompletesConfigArgument.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 <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2020 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace App\Console\Commands\Traits;
use App\Console\Commands\InternalHttpRequest;
use App\Models\User;
use Illuminate\Support\Str;
use LibreNMS\Util\DynamicConfig;
use LibreNMS\Util\DynamicConfigItem;
trait CompletesConfigArgument
{
public function completeArgument($name, $value, $previous)
{
if ($name == 'setting') {
return (new DynamicConfig())->all()->keys()->filter(function ($setting) use ($value) {
return Str::startsWith($setting, $value);
})->toArray();
} elseif ($name == 'value') {
$config = (new DynamicConfig())->get($previous);
switch ($config->getType()) {
case 'select-dynamic':
return $this->suggestionsForSelectDynamic($config, $value);
case 'select':
return $this->suggestionsForSelect($config, $value);
}
}
return false;
}
protected function suggestionsForSelect(DynamicConfigItem $config, ?string $value): array
{
$options = new \Illuminate\Support\Collection($config['options']);
$keyStartsWith = $options->filter(function ($description, $key) use ($value) {
return Str::startsWith($key, $value);
});
// try to see if it matches a value (aka key)
if ($keyStartsWith->isNotEmpty()) {
return $keyStartsWith->keys()->all();
}
// last chance to try to find by the description
return $options->filter(function ($description, $key) use ($value) {
return Str::contains($description, $value);
})->keys()->all();
}
protected function suggestionsForSelectDynamic(DynamicConfigItem $config, ?string $value): array
{
// need auth to make http request
if ($admin = User::adminOnly()->first()) {
$target = $config['options']['target'];
$data = ['limit' => 10];
if ($value) {
$data['term'] = $value; // filter in sql
}
// make "http" request
$results = (new InternalHttpRequest())
->actingAs($admin)
->json('GET', route("ajax.select.$target"), $data)->json('results');
return array_column($results, 'id');
}
return [];
}
}