activityService = $activityService; $this->requestQueueService = $requestQueueService; $this->streamQueueService = $streamQueueService; $this->configService = $configService; $this->miscService = $miscService; } /** * */ protected function configure() { parent::configure(); $this->setName('social:queue:process') ->setDescription('Process the request queue'); } /** * @param InputInterface $input * @param OutputInterface $output */ protected function execute(InputInterface $input, OutputInterface $output): int { $output->writeLn('processing requests queue'); $this->processRequestQueue($output); $output->writeLn('processing stream queue'); $this->processStreamQueue($output); return 0; } /** * @param OutputInterface $output */ private function processRequestQueue(OutputInterface $output) { $total = 0; $requests = $this->requestQueueService->getRequestStandby($total); $output->writeLn('- found a total of ' . $total . ' requests in the queue'); if ($total === 0) { return; } $output->writeLn('- ' . sizeof($requests) . ' are processable at this time'); if (sizeof($requests) === 0) { return; } $this->activityService->manageInit(); foreach ($requests as $request) { $request->setTimeout(ActivityService::TIMEOUT_SERVICE); $output->write('.'); try { $this->activityService->manageRequest($request); } catch (SocialAppConfigException $e) { } } $output->writeLn('done'); } private function processStreamQueue(OutputInterface $output) { $total = 0; $items = $this->streamQueueService->getRequestStandby($total); $output->writeLn('- found a total of ' . $total . ' not cached object in the queue'); if ($total === 0) { return; } $output->writeLn('- ' . sizeof($items) . ' are processable at this time'); if (sizeof($items) === 0) { return; } foreach ($items as $item) { $output->write('.'); $this->streamQueueService->manageStreamQueue($item); } $output->writeLn('done'); } }