point-tools/src/Skobkin/Bundle/PointToolsBundle/Command/UpdateSubscriptionsCommand.php

180 lines
6.1 KiB
PHP
Raw Normal View History

<?php
namespace Skobkin\Bundle\PointToolsBundle\Command;
use Skobkin\Bundle\PointToolsBundle\Service\SubscriptionsManager;
use Skobkin\Bundle\PointToolsBundle\Service\UserApi;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
2015-05-30 22:50:35 +00:00
use Symfony\Component\Console\Input\Input;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
2015-05-30 22:50:35 +00:00
use Symfony\Component\Console\Output\Output;
use Symfony\Component\Console\Output\OutputInterface;
class UpdateSubscriptionsCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('point:update:subscriptions')
->setDescription('Update subscriptions of users subscribed to service')
->addOption(
'all-users',
null,
InputOption::VALUE_NONE,
'If set, command will check subscribers of all service users instead of service subscribers only'
)
->addOption(
'check-only',
null,
InputOption::VALUE_NONE,
'If set, command will not perform write operations in the database'
)
// @todo add option for checking only selected user
;
}
2015-05-30 22:50:35 +00:00
/**
* @param InputInterface $input
* @param OutputInterface $output
*
2015-05-30 22:50:35 +00:00
* @return bool
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
2015-05-30 22:50:35 +00:00
$log = $this->getContainer()->get('logger');
$em = $this->getContainer()->get('doctrine.orm.entity_manager');
$userRepository = $em->getRepository('SkobkinPointToolsBundle:User');
2015-05-30 22:50:35 +00:00
$log->debug('UpdateSubscriptionsCommand started.');
2015-05-30 22:50:35 +00:00
/** @var UserApi $api */
$api = $this->getContainer()->get('app.point.api_user');
/** @var SubscriptionsManager $subscriptionsManager */
$subscriptionsManager = $this->getContainer()->get('app.point.subscriptions_manager');
2015-06-02 01:59:07 +00:00
try {
$serviceUserId = $this->getContainer()->getParameter('point_id');
} catch (\InvalidArgumentException $e) {
$log->alert('Could not get point_id parameter from config file', ['exception_message' => $e->getMessage()]);
return 1;
2015-06-02 01:59:07 +00:00
}
// Beginning transaction for all changes
$em->beginTransaction();
if ($input->getOption('all-users')) {
$usersForUpdate = $userRepository->findAll();
} else {
$serviceUser = $userRepository->find($serviceUserId);
if (!$serviceUser) {
$log->info('Service user not found');
// @todo Retrieving user
2015-05-30 22:50:35 +00:00
return 1;
}
$log->info('Getting service subscribers');
try {
$usersForUpdate = $api->getUserSubscribersById($serviceUserId);
} catch (\Exception $e) {
$log->warning(
'Error while getting service subscribers. Fallback to local list.',
[
'user_login' => $serviceUser->getLogin(),
'user_id' => $serviceUser->getId(),
'message' => $e->getMessage(),
'file' => $e->getFile(),
'line' => $e->getLine()
]
);
2015-05-30 22:50:35 +00:00
$usersForUpdate = [];
2015-06-02 02:39:09 +00:00
foreach ($serviceUser->getSubscribers() as $subscription) {
$usersForUpdate[] = $subscription->getSubscriber();
}
2015-06-02 02:39:09 +00:00
if (!count($usersForUpdate)) {
$log->info('No local subscribers. Finishing.');
return 0;
}
2015-06-02 02:39:09 +00:00
}
$log->debug('Updating service subscribers');
// Updating service subscribers
try {
$subscriptionsManager->updateUserSubscribers($serviceUser, $usersForUpdate);
} catch (\Exception $e) {
$log->error(
'Error while updating service subscribers',
[
'user_login' => $serviceUser->getLogin(),
'user_id' => $serviceUser->getId(),
'message' => $e->getMessage(),
'file' => $e->getFile(),
'line' => $e->getLine()
]
);
2015-05-30 22:50:35 +00:00
return 1;
}
2015-05-30 22:50:35 +00:00
}
$log->info('Processing users subscribers');
// Updating users subscribers
foreach ($usersForUpdate as $user) {
$log->info('Processing @'.$user->getLogin());
try {
2015-06-02 01:59:07 +00:00
$userCurrentSubscribers = $api->getUserSubscribersById($user->getId());
} catch (\Exception $e) {
$log->error(
'Error while getting subscribers. Skipping.',
[
'user_login' => $user->getLogin(),
'user_id' => $user->getId(),
'message' => $e->getMessage(),
'file' => $e->getFile(),
'line' => $e->getLine()
]
);
2015-05-30 22:50:35 +00:00
continue;
}
$log->debug('Updating user subscribers');
2015-05-30 22:50:35 +00:00
try {
// Updating user subscribers
$subscriptionsManager->updateUserSubscribers($user, $userCurrentSubscribers);
} catch (\Exception $e) {
$log->error(
'Error while updating user subscribers',
[
'user_login' => $user->getLogin(),
'user_id' => $user->getId(),
'message' => $e->getMessage(),
'file' => $e->getFile(),
'line' => $e->getLine()
]
);
2015-05-30 22:50:35 +00:00
}
2015-05-31 07:49:45 +00:00
// @todo move to the config
2015-06-23 09:39:30 +00:00
usleep(500000);
}
// Flushing all changes at once to database
$em->flush();
$em->commit();
$log->debug('Finished');
return 0;
}
}