Skip to content
Snippets Groups Projects
MailAccountMapper.php 3.84 KiB
Newer Older
declare(strict_types=1);
Christoph Wurst's avatar
Christoph Wurst committed
 * @author Christoph Wurst <christoph@winzerhof-wurst.at>
 * @author Christoph Wurst <wurst.christoph@gmail.com>
 * @author Lukas Reschke <lukas@owncloud.com>
 * @author Thomas Müller <thomas.mueller@tmit.eu>
Christoph Wurst's avatar
Christoph Wurst committed
 * 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.
Christoph Wurst's avatar
Christoph Wurst committed
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Christoph Wurst's avatar
Christoph Wurst committed
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
Christoph Wurst's avatar
Christoph Wurst committed
 * 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\DoesNotExistException;
use OCP\AppFramework\Db\MultipleObjectsReturnedException;
use OCP\AppFramework\Db\QBMapper;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;
use OCP\IUser;
/**
 * @template-extends QBMapper<MailAccount>
 */
class MailAccountMapper extends QBMapper {
Lukas Reschke's avatar
Lukas Reschke committed
	/**
	 * @param IDBConnection $db
Lukas Reschke's avatar
Lukas Reschke committed
	 */
	public function __construct(IDBConnection $db) {
Thomas Müller's avatar
Thomas Müller committed
		parent::__construct($db, 'mail_accounts');
	}

	/** Finds an Mail Account by id
	 *
	 * @param string $userId
Thomas Müller's avatar
Thomas Müller committed
	 * @param int $accountId
	 * @return MailAccount
	 *
	 * @throws DoesNotExistException
	public function find(string $userId, int $accountId): MailAccount {
		$qb = $this->db->getQueryBuilder();
		$query = $qb
			->select('*')
			->from($this->getTableName())
			->where($qb->expr()->eq('user_id', $qb->createNamedParameter($userId)))
			->andWhere($qb->expr()->eq('id', $qb->createNamedParameter($accountId)));
		return $this->findEntity($query);
	 * Finds an mail account by id
	 *
	 * @return MailAccount
	 * @throws DoesNotExistException
	 */
	public function findById(int $id): MailAccount {
		$qb = $this->db->getQueryBuilder();
		$query = $qb
			->select('*')
			->from($this->getTableName())
			->where($qb->expr()->eq('id', $qb->createNamedParameter($id)));

		return $this->findEntity($query);
	}

	/**
	 * Finds all Mail Accounts by user id existing for this user
	 * @param string $userId the id of the user that we want to find
	 * @return MailAccount[]
	 */
	public function findByUserId(string $userId): array {
		$qb = $this->db->getQueryBuilder();
		$query = $qb
			->select('*')
			->from($this->getTableName())
			->where($qb->expr()->eq('user_id', $qb->createNamedParameter($userId)));
		return $this->findEntities($query);
	/**
	 * @throws DoesNotExistException
	 * @throws MultipleObjectsReturnedException
	 */
	public function findProvisionedAccount(IUser $user): MailAccount {
		$qb = $this->db->getQueryBuilder();

		$query = $qb
			->select('*')
			->from($this->getTableName())
			->where(
				$qb->expr()->eq('user_id', $qb->createNamedParameter($user->getUID())),
				$qb->expr()->eq('provisioned', $qb->createNamedParameter(true, IQueryBuilder::PARAM_BOOL))
			);

		return $this->findEntity($query);
	}

	/**
	 * Saves an User Account into the database
Thomas Müller's avatar
Thomas Müller committed
	 * @param MailAccount $account
Thomas Müller's avatar
Thomas Müller committed
	 * @return MailAccount
	public function save(MailAccount $account): MailAccount {
		if ($account->getId() === null) {
Thomas Müller's avatar
Thomas Müller committed
			return $this->insert($account);
		}

		return $this->update($account);
	}

	public function deleteProvisionedAccounts(): void {
		$qb = $this->db->getQueryBuilder();

		$delete = $qb->delete($this->getTableName())
			->where($qb->expr()->eq('provisioned', $qb->createNamedParameter(true, IQueryBuilder::PARAM_BOOL)));

		$delete->execute();
	public function getAllAccounts(): array {
		$qb = $this->db->getQueryBuilder();
		$query = $qb
			->select('*')
			->from($this->getTableName());

		return $this->findEntities($query);
	}