* @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 daita\MySmallPhpTools\Traits\TArrayTools; use DateTime; use Doctrine\DBAL\Query\QueryBuilder; use OCA\Social\Exceptions\InvalidResourceException; use OCA\Social\Model\ActivityPub\Note; use OCA\Social\Model\InstancePath; use OCP\DB\QueryBuilder\IQueryBuilder; class NotesRequestBuilder extends CoreRequestBuilder { use TArrayTools; /** * Base of the Sql Insert request * * @return IQueryBuilder */ protected function getNotesInsertSql(): IQueryBuilder { $qb = $this->dbConnection->getQueryBuilder(); $qb->insert(self::TABLE_SERVER_NOTES); return $qb; } /** * Base of the Sql Update request * * @return IQueryBuilder */ protected function getNotesUpdateSql(): IQueryBuilder { $qb = $this->dbConnection->getQueryBuilder(); $qb->update(self::TABLE_SERVER_NOTES); return $qb; } /** * Base of the Sql Select request for Shares * * @return IQueryBuilder */ protected function getNotesSelectSql(): IQueryBuilder { $qb = $this->dbConnection->getQueryBuilder(); /** @noinspection PhpMethodParametersCountMismatchInspection */ $qb->select( 'sn.id', 'sn.to', 'sn.to_array', 'sn.cc', 'sn.bcc', 'sn.content', 'sn.summary', 'sn.published', 'sn.published_time', 'sn.attributed_to', 'sn.in_reply_to', 'sn.source', 'sn.local', 'sn.instances', 'sn.creation' ) ->from(self::TABLE_SERVER_NOTES, 'sn'); $this->defaultSelectAlias = 'sn'; return $qb; } /** * Base of the Sql Delete request * * @return IQueryBuilder */ protected function getNotesDeleteSql(): IQueryBuilder { $qb = $this->dbConnection->getQueryBuilder(); $qb->delete(self::TABLE_SERVER_NOTES); return $qb; } /** * @param IQueryBuilder $qb */ protected function rightJoinFollowing(IQueryBuilder $qb) { if ($qb->getType() !== QueryBuilder::SELECT) { return; } $expr = $qb->expr(); $func = $qb->func(); $pf = $this->defaultSelectAlias . '.'; $orX = $expr->orX(); $orX->add($expr->eq($pf . 'to', 'f.follow_id')); $orX->add( $expr->like( $pf . 'to_array', $func->concat( $qb->createNamedParameter('%"'), $func->concat('f.follow_id', $qb->createNamedParameter('"%')) ) ) ); $orX->add( $expr->like( $pf . 'cc', $func->concat( $qb->createNamedParameter('%"'), $func->concat('f.follow_id', $qb->createNamedParameter('"%')) ) ) ); $orX->add( $expr->like( $pf . 'bcc', $func->concat( $qb->createNamedParameter('%"'), $func->concat('f.follow_id', $qb->createNamedParameter('"%')) ) ) ); $qb->rightJoin( $this->defaultSelectAlias, CoreRequestBuilder::TABLE_SERVER_FOLLOWS, 'f', $orX ); } /** * @param array $data * * @return Note */ protected function parseNotesSelectSql($data): Note { $dTime = new DateTime($this->get('published_time', $data, 'yesterday')); $note = new Note(); $note->setId($data['id']) ->setTo($data['to']) ->setToArray(json_decode($data['to_array'], true)) ->setCcArray(json_decode($data['cc'], true)) ->setBccArray(json_decode($data['bcc'])) ->setLocal(($data['local'] === '1') ? true : false) ->setPublished($data['published']); $note->setContent($data['content']) ->setPublishedTime($dTime->getTimestamp()) ->setAttributedTo($data['attributed_to']) ->setInReplyTo($data['in_reply_to']); $instances = json_decode($data['instances'], true); if (is_array($instances)) { foreach ($instances as $instance) { $note->addInstancePath(new InstancePath($instance['uri'], $instance['type'])); } } try { $actor = $this->parseCacheActorsLeftJoin($data); $note->setCompleteDetails(true); $note->setActor($actor); } catch (InvalidResourceException $e) { } return $note; } }