. * */ namespace Friendica\Content\Conversation\Repository; use Friendica\BaseCollection; use Friendica\Content\Conversation\Entity\Timeline as TimelineEntity; use Friendica\Content\Conversation\Factory\Timeline; use Friendica\Database\Database; use Psr\Log\LoggerInterface; class Channel extends \Friendica\BaseRepository { protected static $table_name = 'channel'; public function __construct(Database $database, LoggerInterface $logger, Timeline $factory) { parent::__construct($database, $logger, $factory); } /** * Fetch a single user channel * * @param int $id * @param int $uid * @return TimelineEntity * @throws \Friendica\Network\HTTPException\NotFoundException */ public function selectById(int $id, int $uid): TimelineEntity { return $this->_selectOne(['id' => $id, 'uid' => $uid]); } /** * Checks if the provided channel id exists for this user * * @param integer $id * @param integer $uid * @return boolean */ public function existsById(int $id, int $uid): bool { return $this->exists(['id' => $id, 'uid' => $uid]); } /** * Delete the given channel * * @param integer $id * @param integer $uid * @return boolean */ public function deleteById(int $id, int $uid): bool { return $this->db->delete('channel', ['id' => $id, 'uid' => $uid]); } /** * Fetch all user channels * * @param integer $uid * @return BaseCollection */ public function selectByUid(int $uid): BaseCollection { return $this->_select(['uid' => $uid]); } public function save(TimelineEntity $Channel): TimelineEntity { $fields = [ 'label' => $Channel->label, 'description' => $Channel->description, 'access-key' => $Channel->accessKey, 'uid' => $Channel->uid, 'circle' => $Channel->circle, 'include-tags' => $Channel->includeTags, 'exclude-tags' => $Channel->excludeTags, 'full-text-search' => $Channel->fullTextSearch, 'media-type' => $Channel->mediaType, ]; if ($Channel->code) { $this->db->update(self::$table_name, $fields, ['uid' => $Channel->uid, 'id' => $Channel->code]); } else { $this->db->insert(self::$table_name, $fields, Database::INSERT_IGNORE); $newChannelId = $this->db->lastInsertId(); $Channel = $this->selectById($newChannelId, $Channel->uid); } return $Channel; } }