*/ class AppointmentConfigMapper extends QBMapper { public function __construct(IDBConnection $db) { parent::__construct($db, 'calendar_appt_configs'); } /** * @param int $id * @param string $userId * @return AppointmentConfig * @throws DoesNotExistException */ public function findByIdForUser(int $id, string $userId) : AppointmentConfig { $qb = $this->db->getQueryBuilder(); $qb->select('*') ->from($this->getTableName()) ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)) ->andWhere($qb->expr()->eq('user_id', $qb->createNamedParameter($userId, IQueryBuilder::PARAM_STR), IQueryBuilder::PARAM_STR)); return $this->findEntity($qb); } /** * @param int $id * @return AppointmentConfig * @throws DbException * @throws DoesNotExistException * @throws MultipleObjectsReturnedException */ public function findById(int $id) : AppointmentConfig { $qb = $this->db->getQueryBuilder(); $qb->select('*') ->from($this->getTableName()) ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)); return $this->findEntity($qb); } /** * @param string $token * @return AppointmentConfig * @throws DoesNotExistException */ public function findByToken(string $token) : AppointmentConfig { $qb = $this->db->getQueryBuilder(); $qb->select('*') ->from($this->getTableName()) ->where($qb->expr()->eq('token', $qb->createNamedParameter($token, IQueryBuilder::PARAM_STR), IQueryBuilder::PARAM_STR)); return $this->findEntity($qb); } /** * @param string $userId * @param string|null $visibility optionally filter for visibility * @psalm-param AppointmentConfig::VISIBILITY_* $visibility * @return AppointmentConfig[] * @throws DbException */ public function findAllForUser(string $userId, ?string $visibility = null): array { $qb = $this->db->getQueryBuilder(); $qb->select('*') ->from($this->getTableName()) ->where($qb->expr()->eq('user_id', $qb->createNamedParameter($userId, IQueryBuilder::PARAM_STR), IQueryBuilder::PARAM_STR)); if ($visibility !== null) { $qb->andWhere($qb->expr()->eq('visibility', $qb->createNamedParameter($visibility))); } return $this->findEntities($qb); } /** * @param int $id * @param string $userId * @return int * @throws DbException */ public function deleteById(int $id, string $userId): int { $qb = $this->db->getQueryBuilder(); $qb->delete($this->tableName) ->where($qb->expr()->eq('id', $qb->createNamedParameter($id, IQueryBuilder::PARAM_INT), IQueryBuilder::PARAM_INT)) ->andWhere($qb->expr()->eq('user_id', $qb->createNamedParameter($userId, IQueryBuilder::PARAM_STR), IQueryBuilder::PARAM_STR)); return $qb->executeStatement(); } public function deleteByUserId(string $uid): void { $qb = $this->db->getQueryBuilder(); $qb->delete($this->tableName) ->where($qb->expr()->eq('user_id', $qb->createNamedParameter($uid, IQueryBuilder::PARAM_STR), IQueryBuilder::PARAM_STR)); $qb->execute(); } }