feedService = $feedService; } /** * @return void */ protected function configure() { $this->setName('news:updater:update-user') ->addArgument( 'user-id', InputArgument::REQUIRED, 'user id of a user, string' ) ->setDescription('Console API for updating a single user\'s feed'); } protected function execute(InputInterface $input, OutputInterface $output): int { $userId = $input->getArgument('user-id'); $feeds = $this->feedService->findAllForUser($userId); $updateErrors = false; foreach ($feeds as $feed) { try { $updated_feed = $this->feedService->fetch($feed); if ($updated_feed->getUpdateErrorCount() !== 0) { $output->writeln($updated_feed->getLastUpdateError()); $updateErrors = true; } } catch (Exception $e) { $output->writeln( 'Could not update feed with id ' . $feed->getId() . '. ' . $e->getMessage() . ' ' ); return 1; } } if ($updateErrors) { return 255; } return 0; } }