* @copyright 2018, Maxence Lange * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * 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 * along with this program. If not, see . * */ namespace OCA\Social\Db; use DateTime; use OCA\Social\Exceptions\NoteNotFoundException; use OCA\Social\Model\ActivityPub\Note; use OCA\Social\Service\ActivityService; use OCA\Social\Service\ConfigService; use OCA\Social\Service\MiscService; use OCP\DB\QueryBuilder\IQueryBuilder; use OCP\IDBConnection; class NotesRequest extends NotesRequestBuilder { /** * NotesRequest constructor. * * @param IDBConnection $connection * @param ConfigService $configService * @param MiscService $miscService */ public function __construct( IDBConnection $connection, ConfigService $configService, MiscService $miscService ) { parent::__construct($connection, $configService, $miscService); } /** * Insert a new Note in the database. * * @param Note $note * * @return int */ public function save(Note $note): int { $dTime = new DateTime(); $dTime->setTimestamp($note->getPublishedTime()); $qb = $this->getNotesInsertSql(); $qb->setValue('id', $qb->createNamedParameter($note->getId())) ->setValue('to', $qb->createNamedParameter($note->getTo())) ->setValue( 'to_array', $qb->createNamedParameter( json_encode($note->getToArray(), JSON_UNESCAPED_SLASHES) ) ) ->setValue( 'cc', $qb->createNamedParameter( json_encode($note->getCcArray(), JSON_UNESCAPED_SLASHES) ) ) ->setValue( 'bcc', $qb->createNamedParameter( json_encode($note->getBccArray()), JSON_UNESCAPED_SLASHES ) ) ->setValue('content', $qb->createNamedParameter($note->getContent())) ->setValue('summary', $qb->createNamedParameter($note->getSummary())) ->setValue('published', $qb->createNamedParameter($note->getPublished())) ->setValue( 'published_time', $qb->createNamedParameter($dTime, IQueryBuilder::PARAM_DATE) ) ->setValue('attributed_to', $qb->createNamedParameter($note->getAttributedTo())) ->setValue('in_reply_to', $qb->createNamedParameter($note->getInReplyTo())) ->setValue('source', $qb->createNamedParameter($note->getSource())) ->setValue( 'instances', $qb->createNamedParameter( json_encode($note->getInstancePaths(), JSON_UNESCAPED_SLASHES) ) ) ->setValue('local', $qb->createNamedParameter(($note->isLocal()) ? '1' : '0')) ->setValue( 'creation', $qb->createNamedParameter(new DateTime('now'), IQueryBuilder::PARAM_DATE) ); $qb->execute(); return $qb->getLastInsertId(); } /** * @param string $id * * @return Note * @throws NoteNotFoundException */ public function getNoteById(string $id): Note { if ($id === '') { throw new NoteNotFoundException(); }; $qb = $this->getNotesSelectSql(); $this->limitToIdString($qb, $id); $cursor = $qb->execute(); $data = $cursor->fetch(); $cursor->closeCursor(); if ($data === false) { throw new NoteNotFoundException(); } return $this->parseNotesSelectSql($data); } /** * @param string $actorId * @param int $since * @param int $limit * * @return array */ public function getHomeNotesForActorId(string $actorId, int $since = 0, int $limit = 5): array { $qb = $this->getNotesSelectSql(); $this->rightJoinFollowing($qb); $this->limitToActorId($qb, $actorId, 'f'); $qb->orWhere($this->exprLimitToDBField($qb, 'attributed_to', $actorId)); $this->limitPaginate($qb, $since, $limit); $this->leftJoinCacheActors($qb, 'attributed_to'); $notes = []; $cursor = $qb->execute(); while ($data = $cursor->fetch()) { $notes[] = $this->parseNotesSelectSql($data); } $cursor->closeCursor(); return $notes; } /** * @param int $since * @param int $limit * @param bool $localOnly * * @return array */ public function getPublicNotes(int $since = 0, int $limit = 5, bool $localOnly = true): array { $qb = $this->getNotesSelectSql(); $this->limitToRecipient($qb, ActivityService::TO_PUBLIC); $this->limitPaginate($qb, $since, $limit); if ($localOnly) { $this->limitToLocal($qb, true); } $this->leftJoinCacheActors($qb, 'attributed_to'); $notes = []; $cursor = $qb->execute(); while ($data = $cursor->fetch()) { $notes[] = $this->parseNotesSelectSql($data); } $cursor->closeCursor(); return $notes; } /** * @param string $actorId * @param int $since * @param int $limit * * @return array */ public function getDirectNotesForActorId(string $actorId, int $since = 0, int $limit = 5 ): array { $qb = $this->getNotesSelectSql(); $this->limitToRecipient($qb, $actorId, true); $this->limitPaginate($qb, $since, $limit); $this->leftJoinCacheActors($qb, 'attributed_to'); $notes = []; $cursor = $qb->execute(); while ($data = $cursor->fetch()) { $notes[] = $this->parseNotesSelectSql($data); } $cursor->closeCursor(); return $notes; } /** * @param string $id */ public function deleteNoteById(string $id) { $qb = $this->getNotesDeleteSql(); $this->limitToIdString($qb, $id); $qb->execute(); } }