diff options
Diffstat (limited to 'src/Wallabag/ImportBundle/Consumer')
-rw-r--r-- | src/Wallabag/ImportBundle/Consumer/AMPQ/EntryConsumer.php (renamed from src/Wallabag/ImportBundle/Consumer/AMPQ/PocketConsumer.php) | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/Wallabag/ImportBundle/Consumer/AMPQ/PocketConsumer.php b/src/Wallabag/ImportBundle/Consumer/AMPQ/EntryConsumer.php index 239e7446..8a8cf45d 100644 --- a/src/Wallabag/ImportBundle/Consumer/AMPQ/PocketConsumer.php +++ b/src/Wallabag/ImportBundle/Consumer/AMPQ/EntryConsumer.php | |||
@@ -5,23 +5,23 @@ namespace Wallabag\ImportBundle\Consumer\AMPQ; | |||
5 | use Doctrine\ORM\EntityManager; | 5 | use Doctrine\ORM\EntityManager; |
6 | use OldSound\RabbitMqBundle\RabbitMq\ConsumerInterface; | 6 | use OldSound\RabbitMqBundle\RabbitMq\ConsumerInterface; |
7 | use PhpAmqpLib\Message\AMQPMessage; | 7 | use PhpAmqpLib\Message\AMQPMessage; |
8 | use Wallabag\ImportBundle\Import\PocketImport; | 8 | use Wallabag\ImportBundle\Import\AbstractImport; |
9 | use Wallabag\UserBundle\Repository\UserRepository; | 9 | use Wallabag\UserBundle\Repository\UserRepository; |
10 | use Psr\Log\LoggerInterface; | 10 | use Psr\Log\LoggerInterface; |
11 | use Psr\Log\NullLogger; | 11 | use Psr\Log\NullLogger; |
12 | 12 | ||
13 | class PocketConsumer implements ConsumerInterface | 13 | class EntryConsumer implements ConsumerInterface |
14 | { | 14 | { |
15 | private $em; | 15 | private $em; |
16 | private $userRepository; | 16 | private $userRepository; |
17 | private $pocketImport; | 17 | private $import; |
18 | private $logger; | 18 | private $logger; |
19 | 19 | ||
20 | public function __construct(EntityManager $em, UserRepository $userRepository, PocketImport $pocketImport, LoggerInterface $logger = null) | 20 | public function __construct(EntityManager $em, UserRepository $userRepository, AbstractImport $import, LoggerInterface $logger = null) |
21 | { | 21 | { |
22 | $this->em = $em; | 22 | $this->em = $em; |
23 | $this->userRepository = $userRepository; | 23 | $this->userRepository = $userRepository; |
24 | $this->pocketImport = $pocketImport; | 24 | $this->import = $import; |
25 | $this->logger = $logger ?: new NullLogger(); | 25 | $this->logger = $logger ?: new NullLogger(); |
26 | } | 26 | } |
27 | 27 | ||
@@ -41,9 +41,9 @@ class PocketConsumer implements ConsumerInterface | |||
41 | return; | 41 | return; |
42 | } | 42 | } |
43 | 43 | ||
44 | $this->pocketImport->setUser($user); | 44 | $this->import->setUser($user); |
45 | 45 | ||
46 | $entry = $this->pocketImport->parseEntry($storedEntry); | 46 | $entry = $this->import->parseEntry($storedEntry); |
47 | 47 | ||
48 | if (null === $entry) { | 48 | if (null === $entry) { |
49 | $this->logger->warning('Unable to parse entry', ['entry' => $storedEntry]); | 49 | $this->logger->warning('Unable to parse entry', ['entry' => $storedEntry]); |