* @copyright 2018 * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ namespace OCA\FullTextSearch\Db; use OCA\FullTextSearch\Model\ExtendedIndex; use OCA\FullTextSearch\Service\ConfigService; use OCA\FullTextSearch\Service\MiscService; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; use OCP\IL10N; class IndexesRequestBuilder extends CoreRequestBuilder { /** * WebsitesRequestBuilder constructor. * * {@inheritdoc} */ public function __construct( IL10N $l10n, IDBConnection $connection, ConfigService $configService, MiscService $miscService ) { parent::__construct($l10n, $connection, $configService, $miscService); } /** * Base of the Sql Insert request * * @return IQueryBuilder */ protected function getIndexesInsertSql() { $qb = $this->dbConnection->getQueryBuilder(); $qb->insert(self::TABLE_INDEXES); return $qb; } /** * Base of the Sql Update request * * @return IQueryBuilder */ protected function getIndexesUpdateSql() { $qb = $this->dbConnection->getQueryBuilder(); $qb->update(self::TABLE_INDEXES); return $qb; } /** * Base of the Sql Select request for Shares * * @return IQueryBuilder */ protected function getIndexesSelectSql() { $qb = $this->dbConnection->getQueryBuilder(); /** @noinspection PhpMethodParametersCountMismatchInspection */ $qb->select( 'li.owner_id', 'li.provider_id', 'li.document_id', 'li.source', 'li.status', 'li.options', 'li.err', 'li.message', 'li.indexed' ) ->from(self::TABLE_INDEXES, 'li'); $this->defaultSelectAlias = 'li'; return $qb; } /** * Base of the Sql Delete request * * @return IQueryBuilder */ protected function getIndexesDeleteSql() { $qb = $this->dbConnection->getQueryBuilder(); $qb->delete(self::TABLE_INDEXES); return $qb; } /** * @param array $data * * @return ExtendedIndex */ protected function parseIndexesSelectSql($data) { $index = new ExtendedIndex($data['provider_id'], $data['document_id']); $index->setStatus($data['status']) ->setSource($data['source']) ->setOptions(json_decode($data['options'], true)) ->setError($data['err']) ->setMessage($data['message']) ->setOwnerId($data['owner_id']) ->setLastIndex($data['indexed']); return $index; } }