aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Command/GenerateUrlHashesCommand.php
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2019-05-29 11:14:00 +0200
committerGitHub <noreply@github.com>2019-05-29 11:14:00 +0200
commit73ec68b1ffafb792265a3805833e5cd84c966aed (patch)
tree33c6040c050f85c537f8dbf5e91d8c281db092cd /src/Wallabag/CoreBundle/Command/GenerateUrlHashesCommand.php
parent2ba365c7c49556cd23b444dc3bb8d4a8cf08809d (diff)
parent2cbee36a0184786644470a84fdd8c720cfcac58e (diff)
downloadwallabag-73ec68b1ffafb792265a3805833e5cd84c966aed.tar.gz
wallabag-73ec68b1ffafb792265a3805833e5cd84c966aed.tar.zst
wallabag-73ec68b1ffafb792265a3805833e5cd84c966aed.zip
Merge pull request #3984 from wallabag/2.4
Merge 2.4 into master
Diffstat (limited to 'src/Wallabag/CoreBundle/Command/GenerateUrlHashesCommand.php')
-rw-r--r--src/Wallabag/CoreBundle/Command/GenerateUrlHashesCommand.php99
1 files changed, 99 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Command/GenerateUrlHashesCommand.php b/src/Wallabag/CoreBundle/Command/GenerateUrlHashesCommand.php
new file mode 100644
index 00000000..8f2bff11
--- /dev/null
+++ b/src/Wallabag/CoreBundle/Command/GenerateUrlHashesCommand.php
@@ -0,0 +1,99 @@
1<?php
2
3namespace Wallabag\CoreBundle\Command;
4
5use Doctrine\ORM\NoResultException;
6use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
7use Symfony\Component\Console\Input\InputArgument;
8use Symfony\Component\Console\Input\InputInterface;
9use Symfony\Component\Console\Output\OutputInterface;
10use Wallabag\CoreBundle\Helper\UrlHasher;
11use Wallabag\UserBundle\Entity\User;
12
13class GenerateUrlHashesCommand extends ContainerAwareCommand
14{
15 /** @var OutputInterface */
16 protected $output;
17
18 protected function configure()
19 {
20 $this
21 ->setName('wallabag:generate-hashed-urls')
22 ->setDescription('Generates hashed urls for each entry')
23 ->setHelp('This command helps you to generates hashes of the url of each entry, to check through API if an URL is already saved')
24 ->addArgument('username', InputArgument::OPTIONAL, 'User to process entries');
25 }
26
27 protected function execute(InputInterface $input, OutputInterface $output)
28 {
29 $this->output = $output;
30
31 $username = (string) $input->getArgument('username');
32
33 if ($username) {
34 try {
35 $user = $this->getUser($username);
36 $this->generateHashedUrls($user);
37 } catch (NoResultException $e) {
38 $output->writeln(sprintf('<error>User "%s" not found.</error>', $username));
39
40 return 1;
41 }
42 } else {
43 $users = $this->getDoctrine()->getRepository('WallabagUserBundle:User')->findAll();
44
45 $output->writeln(sprintf('Generating hashed urls for "%d" users', \count($users)));
46
47 foreach ($users as $user) {
48 $output->writeln(sprintf('Processing user: %s', $user->getUsername()));
49 $this->generateHashedUrls($user);
50 }
51 $output->writeln('Finished generated hashed urls');
52 }
53
54 return 0;
55 }
56
57 /**
58 * @param User $user
59 */
60 private function generateHashedUrls(User $user)
61 {
62 $em = $this->getContainer()->get('doctrine.orm.entity_manager');
63 $repo = $this->getDoctrine()->getRepository('WallabagCoreBundle:Entry');
64
65 $entries = $repo->findByUser($user->getId());
66
67 $i = 1;
68 foreach ($entries as $entry) {
69 $entry->setHashedUrl(UrlHasher::hashUrl($entry->getUrl()));
70 $em->persist($entry);
71
72 if (0 === ($i % 20)) {
73 $em->flush();
74 }
75 ++$i;
76 }
77
78 $em->flush();
79
80 $this->output->writeln(sprintf('Generated hashed urls for user: %s', $user->getUserName()));
81 }
82
83 /**
84 * Fetches a user from its username.
85 *
86 * @param string $username
87 *
88 * @return User
89 */
90 private function getUser($username)
91 {
92 return $this->getDoctrine()->getRepository('WallabagUserBundle:User')->findOneByUserName($username);
93 }
94
95 private function getDoctrine()
96 {
97 return $this->getContainer()->get('doctrine');
98 }
99}