* @author Christoph Wurst * @author Lukas Reschke * @author Thomas Müller * * Mail * * 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 * */ namespace OCA\Mail\Db; use OCP\AppFramework\Db\Mapper; use OCP\IDb; class MailAccountMapper extends Mapper { /** * @param IDb $db */ public function __construct(IDb $db) { parent::__construct($db, 'mail_accounts'); } /** Finds an Mail Account by id * * @param int $userId * @param int $accountId * @return MailAccount */ public function find($userId, $accountId) { $sql = 'SELECT * FROM `' . $this->getTableName() . '` WHERE user_id = ? and id = ?'; $params = [$userId, $accountId]; return $this->findEntity($sql, $params); } /** * Finds all Mail Accounts by user id existing for this user * @param string $userId the id of the user that we want to find * @param $userId * @return MailAccount[] */ public function findByUserId($userId) { $sql = 'SELECT * FROM ' . $this->getTableName() . ' WHERE user_id = ?'; $params = [$userId]; return $this->findEntities($sql, $params); } /** * Saves an User Account into the database * @param MailAccount $account * @return MailAccount */ public function save(MailAccount $account) { if (is_null($account->getId())) { return $this->insert($account); } else { $this->update($account); return $account; } } }