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