DataWizard/Application/Model/ActionBase.php

142 lines
3.7 KiB
PHP
Raw Normal View History

2021-05-05 23:20:42 +02:00
<?php
/**
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
2022-01-17 10:59:18 +01:00
*
2021-05-05 23:20:42 +02:00
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
declare(strict_types=1);
namespace D3\DataWizard\Application\Model;
use D3\DataWizard\Application\Model\Exceptions\InputUnvalidException;
use FormManager\Inputs\Checkbox;
use FormManager\Inputs\Input;
use FormManager\Inputs\Radio;
2021-11-28 01:04:46 +01:00
use OxidEsales\Eshop\Core\Database\Adapter\DatabaseInterface;
2021-05-05 23:20:42 +02:00
use OxidEsales\Eshop\Core\DatabaseProvider;
use OxidEsales\Eshop\Core\Exception\DatabaseConnectionException;
use OxidEsales\Eshop\Core\Exception\DatabaseErrorException;
use OxidEsales\Eshop\Core\Registry;
abstract class ActionBase implements QueryBase
{
protected $formElements = [];
2021-05-05 23:20:42 +02:00
/**
2021-10-31 23:16:03 +01:00
* Ensure that the translations are equally available in the frontend and the backend
2021-05-05 23:20:42 +02:00
* @return string
*/
2022-01-17 10:59:18 +01:00
public function getDescription(): string
2021-05-05 23:20:42 +02:00
{
return '';
}
2021-06-22 13:26:51 +02:00
2021-05-05 23:20:42 +02:00
/**
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
*/
public function run()
{
if ($this->hasFormElements()) {
/** @var Input $element */
foreach ($this->getFormElements() as $element) {
if (false === $element->isValid()) {
throw oxNew(InputUnvalidException::class, $this, $element);
}
}
}
2022-01-17 10:59:18 +01:00
$this->executeAction($this->getQuery());
2021-05-05 23:20:42 +02:00
}
/**
* @param array $query
*
* @return int
* @throws DatabaseConnectionException
* @throws DatabaseErrorException
*/
2022-01-17 10:59:18 +01:00
public function executeAction(array $query): int
2021-05-05 23:20:42 +02:00
{
[ $queryString, $parameters ] = $query;
$queryString = trim($queryString);
2022-01-17 10:59:18 +01:00
if (strtolower(substr($queryString, 0, 6)) === 'select') {
2021-05-05 23:20:42 +02:00
throw oxNew(
Exceptions\TaskException::class,
$this,
2022-01-17 10:59:18 +01:00
Registry::getLang()->translateString('D3_DATAWIZARD_ERR_ACTIONSELECT')
2021-05-05 23:20:42 +02:00
);
}
2022-01-17 10:59:18 +01:00
$affected = $this->d3GetDb()->execute($queryString, $parameters);
2021-06-22 13:26:51 +02:00
throw oxNew(
Exceptions\TaskException::class,
$this,
sprintf(
Registry::getLang()->translateString(
$affected === 1 ? 'D3_DATAWIZARD_ERR_ACTIONRESULT' : 'D3_DATAWIZARD_ERR_ACTIONRESULTS'
),
$affected
)
);
}
2021-11-28 01:04:46 +01:00
/**
* @return DatabaseInterface|null
* @throws DatabaseConnectionException
*/
2021-12-20 13:41:24 +01:00
public function d3GetDb(): ?DatabaseInterface
2021-11-28 01:04:46 +01:00
{
2022-01-17 10:59:18 +01:00
return DatabaseProvider::getDb(DatabaseProvider::FETCH_MODE_ASSOC);
2021-11-28 01:04:46 +01:00
}
2021-06-22 13:26:51 +02:00
/**
* @return string
*/
2022-01-17 10:59:18 +01:00
public function getButtonText(): string
2021-06-22 13:26:51 +02:00
{
return "D3_DATAWIZARD_ACTION_SUBMIT";
2021-05-05 23:20:42 +02:00
}
/**
* @param Input $input
*/
public function registerFormElement(Input $input)
{
2021-11-26 23:16:32 +01:00
if ($input instanceof Radio || $input instanceof Checkbox) {
$input->setTemplate('<p class="form-check">{{ input }} {{ label }}</p>');
$input->setAttribute('class', 'form-check-input');
} else {
$input->setTemplate('<p class="formElements">{{ label }} {{ input }}</p>');
$input->setAttribute('class', 'form-control');
}
$this->formElements[] = $input;
}
/**
* @return bool
*/
public function hasFormElements(): bool
{
return (bool) count($this->formElements);
}
/**
* @return array
*/
public function getFormElements(): array
{
return $this->formElements;
}
2022-01-17 10:59:18 +01:00
}