%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/apps/app_api/lib/Db/UI/ |
Current File : //www/varak.net/nextcloud.varak.net/apps/app_api/lib/Db/UI/StyleMapper.php |
<?php declare(strict_types=1); namespace OCA\AppAPI\Db\UI; 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<Style> */ class StyleMapper extends QBMapper { public function __construct(IDBConnection $db) { parent::__construct($db, 'ex_ui_styles'); } /** * @param string $appId * @param string $type * @param string $name * @return array * @throws Exception */ public function findByAppIdTypeName(string $appId, string $type, string $name): array { $qb = $this->db->getQueryBuilder(); $result = $qb->select('path') ->from($this->tableName) ->where( $qb->expr()->eq('appid', $qb->createNamedParameter($appId, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('type', $qb->createNamedParameter($type, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('name', $qb->createNamedParameter($name, IQueryBuilder::PARAM_STR)) )->executeQuery(); return $result->fetchAll(); } /** * @param string $appId * @param string $type * @param string $name * @param string $path * * @return Style * @throws Exception * @throws DoesNotExistException * @throws MultipleObjectsReturnedException */ public function findByAppIdTypeNamePath(string $appId, string $type, string $name, string $path): Style { $qb = $this->db->getQueryBuilder(); $qb->select('*') ->from($this->tableName) ->where( $qb->expr()->eq('appid', $qb->createNamedParameter($appId, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('type', $qb->createNamedParameter($type, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('name', $qb->createNamedParameter($name, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('path', $qb->createNamedParameter($path, IQueryBuilder::PARAM_STR)) ); return $this->findEntity($qb); } /** * @throws Exception */ public function removeByAppId(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(); } /** * @throws Exception */ public function removeByTypeName(string $appId, string $type, string $name): int { $qb = $this->db->getQueryBuilder(); $qb->delete($this->tableName) ->where( $qb->expr()->eq('appid', $qb->createNamedParameter($appId, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('type', $qb->createNamedParameter($type, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('name', $qb->createNamedParameter($name, IQueryBuilder::PARAM_STR)) ); return $qb->executeStatement(); } public function removeByNameTypePath(string $appId, string $type, string $name, string $path): bool { $qb = $this->db->getQueryBuilder(); $qb->delete($this->tableName) ->where( $qb->expr()->eq('appid', $qb->createNamedParameter($appId, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('type', $qb->createNamedParameter($type, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('name', $qb->createNamedParameter($name, IQueryBuilder::PARAM_STR)), $qb->expr()->eq('path', $qb->createNamedParameter($path, IQueryBuilder::PARAM_STR)) ); try { $result = $qb->executeStatement(); if ($result) { return true; } } catch (Exception) { } return false; } }