eventDispatcher = $eventDispatcher; $this->userSession = $userSession; $this->timeFactory = $timeFactory; $this->service = $service; } /** * Keep the status alive * * @param string $status Only online, away * * @return DataResponse|DataResponse, array{}> * 200: Status successfully updated * 204: User has no status to keep alive * 400: Invalid status to update */ #[NoAdminRequired] #[ApiRoute(verb: 'PUT', url: '/api/v1/heartbeat')] public function heartbeat(string $status): DataResponse { if (!\in_array($status, [IUserStatus::ONLINE, IUserStatus::AWAY], true)) { return new DataResponse([], Http::STATUS_BAD_REQUEST); } $user = $this->userSession->getUser(); if ($user === null) { return new DataResponse([], Http::STATUS_INTERNAL_SERVER_ERROR); } $event = new UserLiveStatusEvent( $user, $status, $this->timeFactory->getTime() ); $this->eventDispatcher->dispatchTyped($event); $userStatus = $event->getUserStatus(); if (!$userStatus) { return new DataResponse([], Http::STATUS_NO_CONTENT); } /** @psalm-suppress UndefinedInterfaceMethod */ return new DataResponse($this->formatStatus($userStatus->getInternal())); } private function formatStatus(UserStatus $status): array { return [ 'userId' => $status->getUserId(), 'message' => $status->getCustomMessage(), 'messageId' => $status->getMessageId(), 'messageIsPredefined' => $status->getMessageId() !== null, 'icon' => $status->getCustomIcon(), 'clearAt' => $status->getClearAt(), 'status' => $status->getStatus(), 'statusIsUserDefined' => $status->getIsUserDefined(), ]; } }