first version

This commit is contained in:
Bastian Allgeier
2019-01-13 23:17:34 +01:00
commit 01277f79f2
595 changed files with 82913 additions and 0 deletions

131
kirby/src/Form/OptionsApi.php Executable file
View File

@@ -0,0 +1,131 @@
<?php
namespace Kirby\Form;
use Kirby\Cms\Nest;
use Kirby\Cms\Structure;
use Kirby\Exception\InvalidArgumentException;
use Kirby\Exception\LogicException;
use Kirby\Toolkit\Query;
use Kirby\Toolkit\Properties;
use Kirby\Toolkit\Str;
/**
* The OptionsApi class handles fetching options
* from any REST API with valid JSON data.
*/
class OptionsApi
{
use Properties;
protected $data;
protected $fetch;
protected $options;
protected $text = '{{ item.value }}';
protected $url;
protected $value = '{{ item.key }}';
public function __construct(array $props)
{
$this->setProperties($props);
}
public function data(): array
{
return $this->data;
}
public function fetch()
{
return $this->fetch;
}
protected function field(string $field, array $data)
{
$value = $this->$field();
return Str::template($value, $data);
}
public function options(): array
{
if (is_array($this->options) === true) {
return $this->options;
}
$content = @file_get_contents($this->url());
if (empty($content) === true) {
return [];
}
$data = json_decode($content, true);
if (is_array($data) === false) {
throw new InvalidArgumentException('Invalid options format');
}
$result = (new Query($this->fetch(), Nest::create($data)))->result();
$options = [];
foreach ($result as $item) {
$data = array_merge($this->data(), ['item' => $item]);
$options[] = [
'text' => $this->field('text', $data),
'value' => $this->field('value', $data),
];
}
return $options;
}
protected function setData(array $data)
{
$this->data = $data;
return $this;
}
protected function setFetch(string $fetch = null)
{
$this->fetch = $fetch;
return $this;
}
protected function setText($text = null)
{
$this->text = $text;
return $this;
}
protected function setUrl($url)
{
$this->url = $url;
return $this;
}
protected function setValue($value = null)
{
$this->value = $value;
return $this;
}
public function text()
{
return $this->text;
}
public function toArray(): array
{
return $this->options();
}
public function url(): string
{
return Str::template($this->url, $this->data());
}
public function value()
{
return $this->value;
}
}