2016-09-09 19:02:03 +00:00
|
|
|
# RabbitMQ stuff
|
|
|
|
services:
|
2022-08-27 17:26:16 +00:00
|
|
|
_defaults:
|
|
|
|
autowire: true
|
|
|
|
autoconfigure: true
|
|
|
|
public: true
|
|
|
|
|
2016-09-14 08:17:22 +00:00
|
|
|
wallabag_import.consumer.amqp.pocket:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
2016-09-09 19:02:03 +00:00
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\PocketImport'
|
2016-11-02 06:10:23 +00:00
|
|
|
- "@event_dispatcher"
|
2016-09-09 19:02:03 +00:00
|
|
|
- "@logger"
|
2016-09-14 08:17:22 +00:00
|
|
|
wallabag_import.consumer.amqp.readability:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
2016-09-09 19:02:03 +00:00
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\ReadabilityImport'
|
2016-11-02 06:10:23 +00:00
|
|
|
- "@event_dispatcher"
|
2016-09-09 19:02:03 +00:00
|
|
|
- "@logger"
|
2016-09-27 05:57:53 +00:00
|
|
|
wallabag_import.consumer.amqp.instapaper:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\InstapaperImport'
|
2016-11-02 06:10:23 +00:00
|
|
|
- "@event_dispatcher"
|
2016-09-27 05:57:53 +00:00
|
|
|
- "@logger"
|
2016-11-04 21:44:31 +00:00
|
|
|
wallabag_import.consumer.amqp.pinboard:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\PinboardImport'
|
2016-11-04 21:44:31 +00:00
|
|
|
- "@event_dispatcher"
|
|
|
|
- "@logger"
|
2021-02-08 08:08:12 +00:00
|
|
|
wallabag_import.consumer.amqp.delicious:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\DeliciousImport'
|
2021-02-08 08:08:12 +00:00
|
|
|
- "@event_dispatcher"
|
|
|
|
- "@logger"
|
2016-09-14 08:17:22 +00:00
|
|
|
wallabag_import.consumer.amqp.wallabag_v1:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
2016-09-09 19:02:03 +00:00
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\WallabagV1Import'
|
2016-11-02 06:10:23 +00:00
|
|
|
- "@event_dispatcher"
|
2016-09-09 19:02:03 +00:00
|
|
|
- "@logger"
|
2016-09-14 08:17:22 +00:00
|
|
|
wallabag_import.consumer.amqp.wallabag_v2:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
2016-09-09 19:02:03 +00:00
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\WallabagV2Import'
|
2016-11-02 06:10:23 +00:00
|
|
|
- "@event_dispatcher"
|
2016-09-09 19:02:03 +00:00
|
|
|
- "@logger"
|
2019-11-07 11:17:01 +00:00
|
|
|
wallabag_import.consumer.amqp.elcurator:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\ElcuratorImport'
|
2019-11-07 11:17:01 +00:00
|
|
|
- "@event_dispatcher"
|
|
|
|
- "@logger"
|
2016-09-21 15:47:47 +00:00
|
|
|
wallabag_import.consumer.amqp.firefox:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\FirefoxImport'
|
2016-11-02 06:10:23 +00:00
|
|
|
- "@event_dispatcher"
|
2016-09-21 15:47:47 +00:00
|
|
|
- "@logger"
|
|
|
|
wallabag_import.consumer.amqp.chrome:
|
|
|
|
class: Wallabag\ImportBundle\Consumer\AMQPEntryConsumer
|
|
|
|
arguments:
|
|
|
|
- "@doctrine.orm.entity_manager"
|
2022-04-24 14:09:34 +00:00
|
|
|
- '@Wallabag\UserBundle\Repository\UserRepository'
|
2022-04-24 14:58:37 +00:00
|
|
|
- '@Wallabag\ImportBundle\Import\ChromeImport'
|
2016-11-02 06:10:23 +00:00
|
|
|
- "@event_dispatcher"
|
2016-09-21 15:47:47 +00:00
|
|
|
- "@logger"
|