ImportSourceSql: new import provider

fixes #9678
This commit is contained in:
Thomas Gelf 2015-07-21 15:18:16 +02:00
parent cab2348a28
commit 6ca8e8a7d6

View File

@ -0,0 +1,46 @@
<?php
namespace Icinga\Module\Director\Import;
use Icinga\Module\Director\Web\Form\QuickForm;
use Icinga\Module\Director\Web\Hook\ImportSourceHook;
use Icinga\Data\Db\DbConnection;
use Icinga\Web\Form;
class ImportSourceSql extends ImportSourceHook
{
protected $db;
public function fetchData()
{
return $this->db()->fetchAll($this->settings['query']);
}
public function listColumns()
{
return array_keys((array) current($this->fetchData()));
}
public static function addSettingsFormFields(QuickForm $form)
{
$form->addElement('text', 'resource', array(
'label' => 'Resouce name',
'required' => true,
));
$form->addElement('text', 'query', array(
'label' => 'DB Query',
'required' => true,
));
return $form;
}
protected function db()
{
if ($this->db === null) {
$this->db = DbConnection::fromResourceName($this->settings['resource'])->getDbAdapter();
}
return $this->db;
}
}