mirror of
https://github.com/nextcloud/app_api.git
synced 2026-01-13 20:19:21 +00:00
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>
67 lines
1.8 KiB
PHP
67 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\AppAPI\Db\TextProcessing;
|
|
|
|
use OCP\AppFramework\Db\DoesNotExistException;
|
|
use OCP\AppFramework\Db\MultipleObjectsReturnedException;
|
|
use OCP\AppFramework\Db\QBMapper;
|
|
use OCP\DB\Exception;
|
|
use OCP\DB\QueryBuilder\IQueryBuilder;
|
|
use OCP\IDBConnection;
|
|
|
|
/**
|
|
* @template-extends QBMapper<TextProcessingProvider>
|
|
*/
|
|
class TextProcessingProviderMapper extends QBMapper {
|
|
public function __construct(IDBConnection $db) {
|
|
parent::__construct($db, 'ex_text_processing');
|
|
}
|
|
|
|
/**
|
|
* @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();
|
|
}
|
|
|
|
/**
|
|
* @param string $appId
|
|
* @param string $name
|
|
*
|
|
* @throws DoesNotExistException
|
|
* @throws Exception
|
|
* @throws MultipleObjectsReturnedException
|
|
*
|
|
* @return TextProcessingProvider
|
|
*/
|
|
public function findByAppidName(string $appId, string $name): TextProcessingProvider {
|
|
$qb = $this->db->getQueryBuilder();
|
|
return $this->findEntity($qb->select('*')
|
|
->from($this->tableName)
|
|
->where($qb->expr()->eq('appid', $qb->createNamedParameter($appId), IQueryBuilder::PARAM_STR))
|
|
->andWhere($qb->expr()->eq('name', $qb->createNamedParameter($name), IQueryBuilder::PARAM_STR))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @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();
|
|
}
|
|
}
|