Newer
Older
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
* @author Thomas Müller <thomas.mueller@tmit.eu>
*
* This code is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License, version 3,
* as published by the Free Software Foundation.
*
* 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, version 3,
* along with this program. If not, see <http://www.gnu.org/licenses/>
use OCP\AppFramework\Db\QBMapper;
use OCP\DB\QueryBuilder\IQueryBuilder;
/**
* @template-extends QBMapper<CollectedAddress>
*/
class CollectedAddressMapper extends QBMapper {
public function __construct(IDBConnection $db) {
parent::__construct($db, 'mail_coll_addresses');
}
/**
* Find email addresses by query string
*
* @param string $userId
* @param string $query
* @return CollectedAddress[]
*/
public function findMatching($userId, $query) {
$qb = $this->db->getQueryBuilder();
$dbQuery = $qb
->select('*')
->from($this->getTableName())
->where($qb->expr()->eq('user_id', $qb->createNamedParameter($userId)))
->andWhere($qb->expr()->orX(
$qb->expr()->iLike('email', $qb->createNamedParameter("%$query%")),
$qb->expr()->iLike('display_name', $qb->createNamedParameter("%$query%"))
));
return $this->findEntities($dbQuery);
*/
public function exists(string $userId, ?string $email) {
$qb = $this->db->getQueryBuilder();
$dbQuery = $qb
->select('*')
->from($this->getTableName())
->where($qb->expr()->eq('user_id', $qb->createNamedParameter($userId)))
->andWhere($qb->expr()->iLike('email', $qb->createNamedParameter($email)));
return count($this->findEntities($dbQuery)) > 0;
public function getTotal() {
/* @var $qb IQueryBuilder */
$qb = $this->db->getQueryBuilder();
$qb->select($qb->createFunction('COUNT(*)'))
->from($this->getTableName());
$result = $qb->execute();
$result->closeCursor();
return $count;
}
/**
* @param int|null $minId
*/
public function getChunk($minId = null) {
/* @var $qb IQueryBuilder */
$qb = $this->db->getQueryBuilder();
$query = $qb->select('*')
->from($this->getTableName())
->orderBy('id')
->setMaxResults(100);
if ($minId !== null) {
$query = $query->where($qb->expr()->gte('id',
$qb->createNamedParameter($minId)));
}
return $this->findEntities($query);
}
public function deleteOrphans(): void {
$qb1 = $this->db->getQueryBuilder();
$idsQuery = $qb1->selectDistinct('c.id')
->from($this->getTableName(), 'c')
->leftJoin('c', 'mail_accounts', 'a', $qb1->expr()->eq('c.user_id', 'a.user_id'))
->where($qb1->expr()->isNull('a.id'));
$result = $idsQuery->execute();
$ids = array_map(function (array $row) {
return (int)$row['id'];
}, $result->fetchAll());
$result->closeCursor();
$qb2 = $this->db->getQueryBuilder();
$query = $qb2
->delete($this->getTableName())
->where($qb2->expr()->in('id', $qb2->createNamedParameter($ids, IQueryBuilder::PARAM_INT_ARRAY), IQueryBuilder::PARAM_INT_ARRAY));
$query->execute();
}