streamRequest = $streamRequest; $this->cacheActorsRequest = $cacheActorsRequest; $this->pushService = $pushService; } /** * @throws ItemNotFoundException */ public function getItemById(string $id): ACore { try { return $this->streamRequest->getStreamById($id); } catch (StreamNotFoundException $e) { throw new ItemNotFoundException(); } } /** * @throws InvalidOriginException|ItemAlreadyExistsException */ public function activity(Acore $activity, ACore $item): void { /** @var Note $item */ if ($activity->getType() === Create::TYPE) { $activity->checkOrigin($item->getId()); $activity->checkOrigin($item->getAttributedTo()); $item->setActivityId($activity->getId()); $this->save($item); } if ($activity->getType() === Delete::TYPE) { $activity->checkOrigin($item->getId()); $this->delete($item); } } public function save(ACore $item): void { /** @var Note $note */ $note = $item; try { $this->streamRequest->getStreamById($note->getId()); } catch (StreamNotFoundException $e) { $this->streamRequest->save($note); $this->updateDetails($note); $this->generateNotification($note); $this->pushService->onNewStream($note->getId()); } } public function delete(ACore $item): void { /** @var Note $item */ $this->streamRequest->deleteById($item->getId(), Note::TYPE); } public function updateDetails(Note $stream): void { if ($stream->getInReplyTo() === '') { return; } try { $orig = $this->streamRequest->getStreamById($stream->getInReplyTo()); $count = $this->streamRequest->countRepliesTo($stream->getInReplyTo()); $orig->setDetailInt('replies', $count); $this->streamRequest->updateDetails($orig); } catch (StreamNotFoundException $e) { } } private function generateNotification(Note $note): void { $mentions = $note->getTags('Mention'); if (empty($mentions)) { return; } /** @var SocialAppNotificationInterface $notificationInterface */ $notificationInterface = AP::$activityPub->getInterfaceFromType(SocialAppNotification::TYPE); $post = $this->streamRequest->getStreamById($note->getId(), false, ACore::FORMAT_LOCAL); foreach ($mentions as $mention) { try { $recipient = $this->cacheActorsRequest->getFromId($this->get('href', $mention)); if (!$recipient->isLocal()) { // only interested on local throw new CacheActorDoesNotExistException(); } } catch (CacheActorDoesNotExistException $e) { continue; } /** @var SocialAppNotification $notification */ $notification = AP::$activityPub->getItemFromType(SocialAppNotification::TYPE); $notification->setDetailItem('post', $post); $notification->addDetail('account', $post->getActor()->getAccount()); $notification->setAttributedTo($recipient->getId()) ->setSubType(Mention::TYPE) ->setId($post->getId() . '/notification+mention') ->setSummary('{account} mentioned you in a post') ->setObjectId($post->getId()) ->setTo($recipient->getId()) ->setLocal(true); $notificationInterface->save($notification); } } }