aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php
Commit message (Collapse)AuthorAgeFilesLines
* Validate imported entry to avoid error on importJeremy Benoist2019-01-031-0/+7
| | | | | We got some imports with a missing `url` field generating some errors while trying to retrieve an existing entry with that url. Introducing the `validateEntry` allow us to dismiss a message when it doesn't have an url (or other missing stuff in the future)
* Add a real configuration for CS-FixerJeremy Benoist2017-07-011-5/+5
|
* Import: we now skip messages when user is nullNicolas LÅ“uillet2017-02-201-1/+2
|
* CleanupJeremy Benoist2016-11-031-0/+1
|
* Add entry.saved event to import & restJeremy Benoist2016-11-021-1/+7
|
* Avoid RabbitMQ consumer to loopJeremy Benoist2016-10-201-2/+3
| | | | When the `parseEntry` returns null it means the entry already exists in the database. Sending `false` as return, will requeue the message which will then loop forever.
* Re-facto EntryConsumerJeremy Benoist2016-09-111-0/+74
Using an abstract method allow to share code but also can be used it we add a new broker in the future