]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/CoreBundle/Resources/config/services.yml
Improved Guzzle subscribers extensibility
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / config / services.yml
CommitLineData
7ffb1e80 1services:
32da2a70
J
2 wallabag_core.helper.detect_active_theme:
3 class: Wallabag\CoreBundle\Helper\DetectActiveTheme
4 arguments:
619cc453 5 - "@security.token_storage"
624a7c6d 6 - "%wallabag_core.theme%"
32da2a70 7
6894d48e 8 # custom form type
32da2a70
J
9 wallabag_core.form.type.config:
10 class: Wallabag\CoreBundle\Form\Type\ConfigType
11 arguments:
624a7c6d
NL
12 - "%liip_theme.themes%"
13 - "%wallabag_core.languages%"
32da2a70 14 tags:
5c895a7f 15 - { name: form.type }
0c83fd59 16
1d76102a 17 wallabag_core.filter.type.entry:
b0b893ea 18 class: Wallabag\CoreBundle\Form\Type\EntryFilterType
1d76102a
JB
19 arguments:
20 - "@wallabag_core.entry_repository"
21 - "@security.token_storage"
22 tags:
23 - { name: form.type }
24
0c83fd59
J
25 wallabag_core.param_converter.username_rsstoken_converter:
26 class: Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter
27 tags:
28 - { name: request.param_converter, converter: username_rsstoken_converter }
29 arguments:
619cc453 30 - "@doctrine"
164bd801 31
ac8cf632 32 wallabag_core.subscriber.table_prefix:
535bfcbe 33 class: Wallabag\CoreBundle\Event\Subscriber\TablePrefixSubscriber
772d8c4b 34 arguments:
624a7c6d 35 - "%database_table_prefix%"
bd0f3d32
JB
36 tags:
37 - { name: doctrine.event_subscriber }
fad31615
JB
38
39 wallabag_core.graby:
40 class: Graby\Graby
558d9aab 41 arguments:
e71c376d 42 -
2297d60f 43 error_message: '%wallabag_core.fetching_error_message%'
7aab0ecf
BD
44 - "@wallabag_core.guzzle.http_client"
45 - "@wallabag_core.graby.config_builder"
c929c88f 46 calls:
619cc453 47 - [ setLogger, [ "@logger" ] ]
c929c88f
JB
48 tags:
49 - { name: monolog.logger, channel: graby }
558d9aab 50
7aab0ecf
BD
51 wallabag_core.graby.config_builder:
52 class: Graby\SiteConfig\ConfigBuilder
53 arguments:
54 - {}
55 - "@logger"
56
57 wallabag_core.guzzle.http_client:
58 class: GuzzleHttp\ClientInterface
59 factory: ["@wallabag_core.guzzle.http_client_factory", buildHttpClient]
60
61 wallabag_core.guzzle_authenticator.config_builder:
62 class: Wallabag\CoreBundle\GuzzleSiteAuthenticator\GrabySiteConfigBuilder
63 arguments:
64 - "@wallabag_core.graby.config_builder"
65 - "%sites_credentials%"
66
67 # service alias override
68 bd_guzzle_site_authenticator.site_config_builder:
69 alias: wallabag_core.guzzle_authenticator.config_builder
70
71 wallabag_core.guzzle.http_client_factory:
72 class: Wallabag\CoreBundle\Helper\HttpClientFactory
73 arguments:
7aab0ecf 74 - "@wallabag_core.guzzle.cookie_jar"
d64bf795 75 - '@=service(''craue_config'').get(''restricted_access'')'
7bf6b555 76 - '@logger'
5b914b04
BD
77 calls:
78 - ["addSubscriber", ["@bd_guzzle_site_authenticator.authenticator_subscriber"]]
7aab0ecf
BD
79
80 wallabag_core.guzzle.cookie_jar:
81 class: GuzzleHttp\Cookie\FileCookieJar
82 arguments: ["%kernel.cache_dir%/cookiejar.json"]
83
558d9aab
JB
84 wallabag_core.content_proxy:
85 class: Wallabag\CoreBundle\Helper\ContentProxy
86 arguments:
619cc453
JB
87 - "@wallabag_core.graby"
88 - "@wallabag_core.rule_based_tagger"
c2656f96 89 - "@wallabag_core.tag_repository"
619cc453 90 - "@logger"
29dca432 91 - '%wallabag_core.fetching_error_message%'
c3510620
KG
92
93 wallabag_core.rule_based_tagger:
94 class: Wallabag\CoreBundle\Helper\RuleBasedTagger
95 arguments:
619cc453
JB
96 - "@rulerz"
97 - "@wallabag_core.tag_repository"
98 - "@wallabag_core.entry_repository"
625acf33 99
5a4bbcc9 100 # repository as a service
625acf33
KG
101 wallabag_core.entry_repository:
102 class: Wallabag\CoreBundle\Repository\EntryRepository
5c895a7f 103 factory: [ "@doctrine.orm.default_entity_manager", getRepository ]
625acf33
KG
104 arguments:
105 - WallabagCoreBundle:Entry
c3510620
KG
106
107 wallabag_core.tag_repository:
108 class: Wallabag\CoreBundle\Repository\TagRepository
5c895a7f 109 factory: [ "@doctrine.orm.default_entity_manager", getRepository ]
c3510620
KG
110 arguments:
111 - WallabagCoreBundle:Tag
fcb1fba5 112
add597ba
JB
113 wallabag_core.helper.entries_export:
114 class: Wallabag\CoreBundle\Helper\EntriesExport
115 arguments:
4b3c983a 116 - '@=service(''craue_config'').get(''wallabag_url'')'
30d81a47 117 - src/Wallabag/CoreBundle/Resources/public/themes/_global/img/appicon/apple-touch-icon-152.png
a6e27f74
KG
118
119 wallabag.operator.array.matches:
120 class: Wallabag\CoreBundle\Operator\PHP\Matches
121 tags:
177c5510 122 - { name: rulerz.operator, target: native, operator: matches }
a6e27f74
KG
123
124 wallabag.operator.doctrine.matches:
125 class: Wallabag\CoreBundle\Operator\Doctrine\Matches
126 tags:
177c5510 127 - { name: rulerz.operator, target: doctrine, operator: matches, inline: true }
af497a64 128
fdd725f5
NL
129 wallabag.operator.array.notmatches:
130 class: Wallabag\CoreBundle\Operator\PHP\NotMatches
131 tags:
132 - { name: rulerz.operator, target: native, operator: notmatches }
133
134 wallabag.operator.doctrine.notmatches:
135 class: Wallabag\CoreBundle\Operator\Doctrine\NotMatches
136 tags:
137 - { name: rulerz.operator, target: doctrine, operator: notmatches, inline: true }
138
af497a64
NL
139 wallabag_core.helper.redirect:
140 class: Wallabag\CoreBundle\Helper\Redirect
141 arguments:
142 - "@router"
a42f38d9 143 - "@security.token_storage"
891456ba
NL
144
145 wallabag_core.helper.prepare_pager_for_entries:
146 class: Wallabag\CoreBundle\Helper\PreparePagerForEntries
147 arguments:
148 - "@security.token_storage"
149 - "@router"
b3437d58
JB
150
151 wallabag_core.redis.client:
152 class: Predis\Client
153 arguments:
154 -
6d204f53 155 scheme: '%redis_scheme%'
b3437d58
JB
156 host: '%redis_host%'
157 port: '%redis_port%'
6d204f53 158 path: '%redis_path%'
c1683778 159 password: '%redis_password%'
40e21962
JB
160
161 wallabag_core.exception_controller:
162 class: Wallabag\CoreBundle\Controller\ExceptionController
163 arguments:
164 - '@twig'
165 - '%kernel.debug%'
191564b7
JB
166
167 wallabag_core.subscriber.sqlite_cascade_delete:
535bfcbe 168 class: Wallabag\CoreBundle\Event\Subscriber\SQLiteCascadeDeleteSubscriber
191564b7
JB
169 arguments:
170 - "@doctrine"
171 tags:
172 - { name: doctrine.event_subscriber }
7f559418
JB
173
174 wallabag_core.subscriber.download_images:
175 class: Wallabag\CoreBundle\Event\Subscriber\DownloadImagesSubscriber
176 arguments:
e0597476 177 - "@doctrine.orm.default_entity_manager"
7f559418 178 - "@wallabag_core.entry.download_images"
e0597476 179 - '@=service(''craue_config'').get(''download_images_enabled'')'
7f559418
JB
180 - "@logger"
181 tags:
e0597476 182 - { name: kernel.event_subscriber }
7f559418
JB
183
184 wallabag_core.entry.download_images:
185 class: Wallabag\CoreBundle\Helper\DownloadImages
186 arguments:
187 - "@wallabag_core.entry.download_images.client"
188 - "%kernel.root_dir%/../web/assets/images"
e0597476 189 - '@=service(''craue_config'').get(''wallabag_url'')'
7f559418
JB
190 - "@logger"
191
192 wallabag_core.entry.download_images.client:
193 class: GuzzleHttp\Client