Create NetBox.php
This commit is contained in:
parent
9233d7ea02
commit
2f0b9c7e0e
1 changed files with 88 additions and 0 deletions
88
src/NetBox.php
Normal file
88
src/NetBox.php
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
<?php
|
||||
|
||||
namespace wickedsoft\NetBox;
|
||||
|
||||
class NetBox
|
||||
{
|
||||
/** @var \Illuminate\Foundation\Application */
|
||||
protected $app;
|
||||
|
||||
/** @var \wickedsoft\NetBox\Client */
|
||||
protected $client;
|
||||
|
||||
/** @var array */
|
||||
protected $panels = [];
|
||||
|
||||
/**
|
||||
* NetBox constructor.
|
||||
* @param $app
|
||||
*/
|
||||
public function __construct($app)
|
||||
{
|
||||
$this->app = $app;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $method
|
||||
* @param $args
|
||||
* @return mixed
|
||||
*/
|
||||
public function __call($method, $args)
|
||||
{
|
||||
return call_user_func_array([$this->client, $method], $args);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param null|string $name
|
||||
* @return \wickedsoft\NetBox\Client
|
||||
*/
|
||||
public function panel($name = null)
|
||||
{
|
||||
$name = $name ?: $this->getDefaultPanel();
|
||||
|
||||
return $this->panels[$name] = $this->get($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getDefaultPanel()
|
||||
{
|
||||
return $this->app['config']['netbox.default'];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
* @return \wickedsoft\NetBox\Client
|
||||
*/
|
||||
protected function get($name)
|
||||
{
|
||||
return $this->panels[$name] ?? $this->resolve($name);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
* @return \wickedsoft\NetBox\Client
|
||||
*/
|
||||
protected function resolve($name)
|
||||
{
|
||||
$config = $this->getConfig($name);
|
||||
|
||||
$this->client = new \wickedsoft\NetBox\Client();
|
||||
$this->client->setOptions([
|
||||
'base_url' => $config['url'],
|
||||
'key' => $config['key']
|
||||
]);
|
||||
|
||||
return $this->client;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
* @return array
|
||||
*/
|
||||
protected function getConfig($name)
|
||||
{
|
||||
return $this->app['config']["netbox.panels.{$name}"];
|
||||
}
|
||||
}
|
||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue