cacheActorService = $cacheActorService; } public function create(string $streamId, string $actorId, string $type, string $subType = '') { $qb = $this->getStreamDestInsertSql(); $qb->setValue('stream_id', $qb->createNamedParameter($qb->prim($streamId))); $qb->setValue('actor_id', $qb->createNamedParameter($qb->prim($actorId))); $qb->setValue('type', $qb->createNamedParameter($type)); $qb->setValue('subtype', $qb->createNamedParameter($subType)); try { $qb->executeStatement(); } catch (DBException $e) { } } public function generateStreamDest(Stream $stream): void { if ($this->generateStreamNotification($stream)) { return; } if ($this->generateStreamDirect($stream)) { return; } $this->generateStreamHome($stream); } private function generateStreamHome(Stream $stream): bool { $recipients = [ 'to' => array_merge($stream->getToAll(), [$stream->getAttributedTo()]), 'cc' => array_merge($stream->getCcArray(), $stream->getBccArray()) ]; foreach (array_keys($recipients) as $subtype) { foreach ($recipients[$subtype] as $actorId) { if ($actorId === '') { continue; } $this->create($stream->getId(), $actorId, 'recipient', $subtype); } } return true; } private function generateStreamDirect(Stream $stream): bool { try { $author = $this->cacheActorService->getFromId($stream->getAttributedTo()); } catch (Exception $e) { return false; } $all = array_merge( $stream->getToAll(), [$stream->getAttributedTo()], $stream->getCcArray(), $stream->getBccArray() ); foreach ($all as $item) { if ($item === Stream::CONTEXT_PUBLIC || $item === $author->getFollowers()) { return false; } } foreach ($all as $actorId) { if ($actorId === '') { continue; } $this->create($stream->getId(), $actorId, 'dm'); } return true; } private function generateStreamNotification(Stream $stream): bool { if ($stream->getType() !== SocialAppNotification::TYPE) { return false; } foreach ($stream->getToAll() as $actorId) { if ($actorId === '') { continue; } $this->create($stream->getId(), $actorId, 'notif'); } return true; } public function emptyStreamDest(): void { $qb = $this->getQueryBuilder(); $qb->delete(self::TABLE_STREAM_DEST); $qb->executeStatement(); } /** * @param string $actorId * * @return StreamDest[] */ public function getRelatedToActor(Person $actor): array { $qb = $this->getStreamDestSelectSql(); $orX = $qb->expr()->orX(); $orX->add($qb->exprLimitToDBField('actor_id', $qb->prim($actor->getId()))); $orX->add($qb->exprLimitToDBField('actor_id', $qb->prim($actor->getFollowers()))); $orX->add($qb->exprLimitToDBField('actor_id', $qb->prim($actor->getFollowing()))); $qb->where($orX); return $this->getStreamDestsFromRequest($qb); } /** * @param string $actorId */ public function deleteRelatedToActor(string $actorId): void { $qb = $this->getStreamDestDeleteSql(); $qb->limitToActorId($qb->prim($actorId)); $qb->executeStatement(); } /** * @param string $actorId */ public function moveActor(string $actorId, string $newId): void { $qb = $this->getStreamDestUpdateSql(); $qb->set('actor_id', $qb->createNamedParameter($qb->prim($newId))); $qb->limitToActorId($qb->prim($actorId)); $qb->executeStatement(); } }