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