Files
nextcloud-app-api/lib/Db/Console/ExAppOccCommandMapper.php
Andrey Borysenko 3b06bd789f fix(occ): incorrect type of field in ExAppOccCommand (#278)
Should fix incorrect type handling by different DBMS during ExApp occ
command registration.

Signed-off-by: Andrey Borysenko <andrey18106x@gmail.com>
Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
2024-04-23 21:12:15 +03:00

64 lines
1.6 KiB
PHP

<?php
declare(strict_types=1);
namespace OCA\AppAPI\Db\Console;
use OCP\AppFramework\Db\QBMapper;
use OCP\DB\Exception;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;
/**
* @template-extends QBMapper<ExAppOccCommand>
*/
class ExAppOccCommandMapper extends QBMapper {
public function __construct(IDBConnection $db) {
parent::__construct($db, 'ex_occ_commands');
}
/**
* @throws Exception
*/
public function findAllEnabled(): array {
$qb = $this->db->getQueryBuilder();
$result = $qb->select('exs.*')
->from($this->tableName, 'exs')
->innerJoin('exs', 'ex_apps', 'exa', $qb->expr()->eq('exa.appid', 'exs.appid'))
->where(
$qb->expr()->eq('exa.enabled', $qb->createNamedParameter(1, IQueryBuilder::PARAM_INT))
)
->executeQuery();
return $result->fetchAll();
}
public function removeByAppIdOccName(string $appId, string $name): bool {
$qb = $this->db->getQueryBuilder();
$qb->delete($this->tableName)
->where(
$qb->expr()->eq('appid', $qb->createNamedParameter($appId, IQueryBuilder::PARAM_STR)),
$qb->expr()->eq('name', $qb->createNamedParameter($name, IQueryBuilder::PARAM_STR))
);
try {
$result = $qb->executeStatement();
if ($result) {
return true;
}
} catch (Exception) {
}
return false;
}
/**
* @throws Exception
*/
public function removeAllByAppId(string $appId): int {
$qb = $this->db->getQueryBuilder();
$qb->delete($this->tableName)
->where(
$qb->expr()->eq('appid', $qb->createNamedParameter($appId, IQueryBuilder::PARAM_STR))
);
return $qb->executeStatement();
}
}