2016-09-09 21:02:03 +02:00
|
|
|
# Redis stuff
|
|
|
|
services:
|
2022-08-27 19:26:16 +02:00
|
|
|
_defaults:
|
|
|
|
autowire: true
|
|
|
|
autoconfigure: true
|
|
|
|
public: true
|
|
|
|
|
2016-09-09 21:02:03 +02:00
|
|
|
# readability
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.readability:
|
2016-09-09 21:02:03 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.readability"
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.readability:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2016-09-09 21:02:03 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.readability"
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.readability:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2016-09-09 21:02:03 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\ReadabilityImport'
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2016-09-27 07:57:53 +02:00
|
|
|
# instapaper
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.instapaper:
|
2016-09-27 07:57:53 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.instapaper"
|
2016-09-27 07:57:53 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.instapaper:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2016-09-27 07:57:53 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.instapaper"
|
2016-09-27 07:57:53 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.instapaper:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2016-09-27 07:57:53 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\InstapaperImport'
|
2016-09-27 07:57:53 +02:00
|
|
|
|
2016-11-04 22:44:31 +01:00
|
|
|
# pinboard
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.pinboard:
|
2016-11-04 22:44:31 +01:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.pinboard"
|
2016-11-04 22:44:31 +01:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.pinboard:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2016-11-04 22:44:31 +01:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.pinboard"
|
2016-11-04 22:44:31 +01:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.pinboard:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2016-11-04 22:44:31 +01:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\PinboardImport'
|
2016-11-04 22:44:31 +01:00
|
|
|
|
2021-02-08 09:08:12 +01:00
|
|
|
# delicious
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.delicious:
|
2021-02-08 09:08:12 +01:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.delicious"
|
2021-02-08 09:08:12 +01:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.delicious:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2021-02-08 09:08:12 +01:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.delicious"
|
2021-02-08 09:08:12 +01:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.delicious:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2021-02-08 09:08:12 +01:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\DeliciousImport'
|
2021-02-08 09:08:12 +01:00
|
|
|
|
2016-09-09 21:02:03 +02:00
|
|
|
# pocket
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.pocket:
|
2016-09-09 21:02:03 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.pocket"
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.pocket:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2016-09-09 21:02:03 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.pocket"
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.pocket:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2016-09-09 21:02:03 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\PocketImport'
|
2016-09-09 21:02:03 +02:00
|
|
|
|
|
|
|
# wallabag v1
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.wallabag_v1:
|
2016-09-09 21:02:03 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.wallabag_v1"
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.wallabag_v1:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2016-09-09 21:02:03 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.wallabag_v1"
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.wallabag_v1:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2016-09-09 21:02:03 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\WallabagV1Import'
|
2016-09-09 21:02:03 +02:00
|
|
|
|
|
|
|
# wallabag v2
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.wallabag_v2:
|
2016-09-09 21:02:03 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.wallabag_v2"
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.wallabag_v2:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2016-09-09 21:02:03 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.wallabag_v2"
|
2016-09-09 21:02:03 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.wallabag_v2:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2016-09-09 21:02:03 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\WallabagV2Import'
|
2016-09-21 17:47:47 +02:00
|
|
|
|
2019-11-07 12:17:01 +01:00
|
|
|
# elcurator
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.elcurator:
|
2019-11-07 12:17:01 +01:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.elcurator"
|
2019-11-07 12:17:01 +01:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.elcurator:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2019-11-07 12:17:01 +01:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.elcurator"
|
2019-11-07 12:17:01 +01:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.elcurator:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2019-11-07 12:17:01 +01:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\ElcuratorImport'
|
2019-11-07 12:17:01 +01:00
|
|
|
|
2016-09-21 17:47:47 +02:00
|
|
|
# firefox
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.firefox:
|
2016-09-21 17:47:47 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.firefox"
|
2016-09-21 17:47:47 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.firefox:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2016-09-21 17:47:47 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.firefox"
|
2016-09-21 17:47:47 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.firefox:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2016-09-21 17:47:47 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\FirefoxImport'
|
2016-09-21 17:47:47 +02:00
|
|
|
|
|
|
|
# chrome
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.chrome:
|
2016-09-21 17:47:47 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
2022-04-30 20:12:47 +02:00
|
|
|
$queueName: "wallabag.import.chrome"
|
2016-09-21 17:47:47 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.chrome:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2016-09-21 17:47:47 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.chrome"
|
2016-09-21 17:47:47 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.chrome:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2016-09-21 17:47:47 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\ChromeImport'
|
2023-07-26 12:49:30 +02:00
|
|
|
|
|
|
|
# shaarli
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.shaarli:
|
2023-07-26 12:49:30 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
|
|
|
$queueName: "wallabag.import.shaarli"
|
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.shaarli:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2023-07-26 12:49:30 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.shaarli"
|
2023-07-26 12:49:30 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.shaarli:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2023-07-26 12:49:30 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\ShaarliImport'
|
2023-07-26 12:49:30 +02:00
|
|
|
|
|
|
|
# pocket html
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.queue.redis.pocket_html:
|
2023-07-26 12:49:30 +02:00
|
|
|
class: Simpleue\Queue\RedisQueue
|
|
|
|
arguments:
|
|
|
|
$queueName: "wallabag.import.pocket_html"
|
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.producer.redis.pocket_html:
|
2023-12-31 21:13:25 +01:00
|
|
|
class: Wallabag\CoreBundle\Redis\Producer
|
2023-07-26 12:49:30 +02:00
|
|
|
arguments:
|
2024-01-01 17:15:20 +01:00
|
|
|
- "@wallabag_core.queue.redis.pocket_html"
|
2023-07-26 12:49:30 +02:00
|
|
|
|
2024-01-01 17:15:20 +01:00
|
|
|
wallabag_core.consumer.redis.pocket_html:
|
2023-12-31 10:03:14 +01:00
|
|
|
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
2023-07-26 12:49:30 +02:00
|
|
|
arguments:
|
2023-12-31 18:21:09 +01:00
|
|
|
$import: '@Wallabag\CoreBundle\Import\PocketHtmlImport'
|