wallabag/src/Wallabag/CoreBundle/Command/TagAllCommand.php

78 lines
2.2 KiB
PHP
Raw Normal View History

<?php
namespace Wallabag\CoreBundle\Command;
use Doctrine\ORM\NoResultException;
2022-08-28 00:01:46 +00:00
use Doctrine\Persistence\ManagerRegistry;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
2017-07-28 22:30:22 +00:00
use Symfony\Component\Console\Style\SymfonyStyle;
use Wallabag\CoreBundle\Helper\RuleBasedTagger;
2022-08-28 14:59:43 +00:00
use Wallabag\UserBundle\Entity\User;
use Wallabag\UserBundle\Repository\UserRepository;
class TagAllCommand extends ContainerAwareCommand
{
protected function configure()
{
$this
->setName('wallabag:tag:all')
->setDescription('Tag all entries using the tagging rules.')
->addArgument(
'username',
InputArgument::REQUIRED,
'User to tag entries for.'
)
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
2017-07-28 22:30:22 +00:00
$io = new SymfonyStyle($input, $output);
try {
$user = $this->getUser($input->getArgument('username'));
} catch (NoResultException $e) {
2017-07-28 22:30:22 +00:00
$io->error(sprintf('User "%s" not found.', $input->getArgument('username')));
return 1;
}
$tagger = $this->getContainer()->get(RuleBasedTagger::class);
2017-07-28 22:30:22 +00:00
$io->text(sprintf('Tagging entries for user <info>%s</info>...', $user->getUserName()));
$entries = $tagger->tagAllForUser($user);
$io->text('Persist ' . \count($entries) . ' entries... ');
2016-10-09 16:31:30 +00:00
2022-11-23 14:51:33 +00:00
$em = $this->getContainer()->get('doctrine')->getManager();
foreach ($entries as $entry) {
$em->persist($entry);
}
$em->flush();
2017-07-28 22:30:22 +00:00
$io->success('Done.');
return 0;
}
/**
* Fetches a user from its username.
*
* @param string $username
*
2022-08-28 14:59:43 +00:00
* @return User
*/
private function getUser($username)
{
return $this->getContainer()->get(UserRepository::class)->findOneByUserName($username);
}
private function getDoctrine()
{
2022-08-28 00:01:46 +00:00
return $this->getContainer()->get(ManagerRegistry::class);
}
}