]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/config/services.yml
Merge pull request #3215 from wallabag/fix-3192
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Resources / config / services.yml
1 services:
2 wallabag_core.helper.detect_active_theme:
3 class: Wallabag\CoreBundle\Helper\DetectActiveTheme
4 arguments:
5 - "@security.token_storage"
6 - "%wallabag_core.theme%"
7
8 # custom form type
9 wallabag_core.form.type.config:
10 class: Wallabag\CoreBundle\Form\Type\ConfigType
11 arguments:
12 - "%liip_theme.themes%"
13 - "%wallabag_core.languages%"
14 tags:
15 - { name: form.type }
16
17 wallabag_core.filter.type.entry:
18 class: Wallabag\CoreBundle\Form\Type\EntryFilterType
19 arguments:
20 - "@wallabag_core.entry_repository"
21 - "@security.token_storage"
22 tags:
23 - { name: form.type }
24
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:
30 - "@doctrine"
31
32 wallabag_core.subscriber.table_prefix:
33 class: Wallabag\CoreBundle\Event\Subscriber\TablePrefixSubscriber
34 arguments:
35 - "%database_table_prefix%"
36 tags:
37 - { name: doctrine.event_subscriber }
38
39 wallabag_core.graby:
40 class: Graby\Graby
41 arguments:
42 -
43 error_message: '%wallabag_core.fetching_error_message%'
44 error_message_title: '%wallabag_core.fetching_error_message_title%'
45 - "@wallabag_core.guzzle.http_client"
46 - "@wallabag_core.graby.config_builder"
47 calls:
48 - [ setLogger, [ "@logger" ] ]
49 tags:
50 - { name: monolog.logger, channel: graby }
51
52 wallabag_core.graby.config_builder:
53 class: Graby\SiteConfig\ConfigBuilder
54 arguments:
55 - {}
56 - "@logger"
57
58 wallabag_core.guzzle.http_client:
59 class: GuzzleHttp\ClientInterface
60 factory: ["@wallabag_core.guzzle.http_client_factory", buildHttpClient]
61
62 wallabag_core.guzzle_authenticator.config_builder:
63 class: Wallabag\CoreBundle\GuzzleSiteAuthenticator\GrabySiteConfigBuilder
64 arguments:
65 - "@wallabag_core.graby.config_builder"
66 - "%sites_credentials%"
67 - '@logger'
68 tags:
69 - { name: monolog.logger, channel: graby }
70
71 # service alias override
72 bd_guzzle_site_authenticator.site_config_builder:
73 alias: wallabag_core.guzzle_authenticator.config_builder
74
75 wallabag_core.guzzle.http_client_factory:
76 class: Wallabag\CoreBundle\Helper\HttpClientFactory
77 arguments:
78 - "@wallabag_core.guzzle.cookie_jar"
79 - '@=service(''craue_config'').get(''restricted_access'')'
80 - '@logger'
81 calls:
82 - ["addSubscriber", ["@bd_guzzle_site_authenticator.authenticator_subscriber"]]
83
84 wallabag_core.guzzle.cookie_jar:
85 class: GuzzleHttp\Cookie\FileCookieJar
86 arguments: ["%kernel.cache_dir%/cookiejar.json"]
87
88 wallabag_core.content_proxy:
89 class: Wallabag\CoreBundle\Helper\ContentProxy
90 arguments:
91 - "@wallabag_core.graby"
92 - "@wallabag_core.rule_based_tagger"
93 - "@validator"
94 - "@logger"
95 - '%wallabag_core.fetching_error_message%'
96
97 wallabag_core.tags_assigner:
98 class: Wallabag\CoreBundle\Helper\TagsAssigner
99 arguments:
100 - "@wallabag_core.tag_repository"
101
102 wallabag_core.rule_based_tagger:
103 class: Wallabag\CoreBundle\Helper\RuleBasedTagger
104 arguments:
105 - "@rulerz"
106 - "@wallabag_core.tag_repository"
107 - "@wallabag_core.entry_repository"
108 - "@logger"
109
110 # repository as a service
111 wallabag_core.entry_repository:
112 class: Wallabag\CoreBundle\Repository\EntryRepository
113 factory: [ "@doctrine.orm.default_entity_manager", getRepository ]
114 arguments:
115 - WallabagCoreBundle:Entry
116
117 wallabag_core.tag_repository:
118 class: Wallabag\CoreBundle\Repository\TagRepository
119 factory: [ "@doctrine.orm.default_entity_manager", getRepository ]
120 arguments:
121 - WallabagCoreBundle:Tag
122
123 wallabag_core.helper.entries_export:
124 class: Wallabag\CoreBundle\Helper\EntriesExport
125 arguments:
126 - '%domain_name%'
127 - src/Wallabag/CoreBundle/Resources/public/themes/_global/img/appicon/apple-touch-icon-152.png
128
129 wallabag.operator.array.matches:
130 class: Wallabag\CoreBundle\Operator\PHP\Matches
131 tags:
132 - { name: rulerz.operator, target: native, operator: matches }
133
134 wallabag.operator.doctrine.matches:
135 class: Wallabag\CoreBundle\Operator\Doctrine\Matches
136 tags:
137 - { name: rulerz.operator, target: doctrine, operator: matches, inline: true }
138
139 wallabag.operator.array.notmatches:
140 class: Wallabag\CoreBundle\Operator\PHP\NotMatches
141 tags:
142 - { name: rulerz.operator, target: native, operator: notmatches }
143
144 wallabag.operator.doctrine.notmatches:
145 class: Wallabag\CoreBundle\Operator\Doctrine\NotMatches
146 tags:
147 - { name: rulerz.operator, target: doctrine, operator: notmatches, inline: true }
148
149 wallabag_core.helper.redirect:
150 class: Wallabag\CoreBundle\Helper\Redirect
151 arguments:
152 - "@router"
153 - "@security.token_storage"
154
155 wallabag_core.helper.prepare_pager_for_entries:
156 class: Wallabag\CoreBundle\Helper\PreparePagerForEntries
157 arguments:
158 - "@security.token_storage"
159 - "@router"
160
161 wallabag_core.redis.client:
162 class: Predis\Client
163 arguments:
164 -
165 scheme: '%redis_scheme%'
166 host: '%redis_host%'
167 port: '%redis_port%'
168 path: '%redis_path%'
169 password: '%redis_password%'
170
171 wallabag_core.exception_controller:
172 class: Wallabag\CoreBundle\Controller\ExceptionController
173 arguments:
174 - '@twig'
175 - '%kernel.debug%'
176
177 wallabag_core.subscriber.sqlite_cascade_delete:
178 class: Wallabag\CoreBundle\Event\Subscriber\SQLiteCascadeDeleteSubscriber
179 arguments:
180 - "@doctrine"
181 tags:
182 - { name: doctrine.event_subscriber }
183
184 wallabag_core.subscriber.download_images:
185 class: Wallabag\CoreBundle\Event\Subscriber\DownloadImagesSubscriber
186 arguments:
187 - "@doctrine.orm.default_entity_manager"
188 - "@wallabag_core.entry.download_images"
189 - '@=service(''craue_config'').get(''download_images_enabled'')'
190 - "@logger"
191 tags:
192 - { name: kernel.event_subscriber }
193
194 wallabag_core.entry.download_images:
195 class: Wallabag\CoreBundle\Helper\DownloadImages
196 arguments:
197 - "@wallabag_core.entry.download_images.client"
198 - "%kernel.root_dir%/../web/assets/images"
199 - '%domain_name%'
200 - "@logger"
201
202 wallabag_core.entry.download_images.client:
203 class: GuzzleHttp\Client