]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/CoreBundle/Resources/config/services.yml
Force user-agent for .slashdot.org
[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\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 http_client:
45 user_agents:
46 'lifehacker.com': 'PHP/5.2'
47 'gawker.com': 'PHP/5.2'
48 'deadspin.com': 'PHP/5.2'
49 'kotaku.com': 'PHP/5.2'
50 'jezebel.com': 'PHP/5.2'
51 'io9.com': 'PHP/5.2'
52 'jalopnik.com': 'PHP/5.2'
53 'gizmodo.com': 'PHP/5.2'
54 '.wikipedia.org': 'Mozilla/5.2'
55 '.fok.nl': 'Googlebot/2.1'
56 'getpocket.com': 'PHP/5.2'
57 'iansommerville.com': 'PHP/5.2'
58 '.slashdot.org': 'PHP/5.2'
59 calls:
60 - [ setLogger, [ "@logger" ] ]
61 tags:
62 - { name: monolog.logger, channel: graby }
63
64 wallabag_core.content_proxy:
65 class: Wallabag\CoreBundle\Helper\ContentProxy
66 arguments:
67 - "@wallabag_core.graby"
68 - "@wallabag_core.rule_based_tagger"
69 - "@wallabag_core.tag_repository"
70 - "@logger"
71
72 wallabag_core.rule_based_tagger:
73 class: Wallabag\CoreBundle\Helper\RuleBasedTagger
74 arguments:
75 - "@rulerz"
76 - "@wallabag_core.tag_repository"
77 - "@wallabag_core.entry_repository"
78
79 # repository as a service
80 wallabag_core.entry_repository:
81 class: Wallabag\CoreBundle\Repository\EntryRepository
82 factory: [ "@doctrine.orm.default_entity_manager", getRepository ]
83 arguments:
84 - WallabagCoreBundle:Entry
85
86 wallabag_core.tag_repository:
87 class: Wallabag\CoreBundle\Repository\TagRepository
88 factory: [ "@doctrine.orm.default_entity_manager", getRepository ]
89 arguments:
90 - WallabagCoreBundle:Tag
91
92 wallabag_core.helper.entries_export:
93 class: Wallabag\CoreBundle\Helper\EntriesExport
94 arguments:
95 - '@=service(''craue_config'').get(''wallabag_url'')'
96 - src/Wallabag/CoreBundle/Resources/public/themes/_global/img/appicon/apple-touch-icon-152.png
97
98 wallabag.operator.array.matches:
99 class: Wallabag\CoreBundle\Operator\PHP\Matches
100 tags:
101 - { name: rulerz.operator, executor: rulerz.executor.array, operator: matches }
102
103 wallabag.operator.doctrine.matches:
104 class: Wallabag\CoreBundle\Operator\Doctrine\Matches
105 tags:
106 - { name: rulerz.operator, executor: rulerz.executor.doctrine, operator: matches, inline: true }
107
108 wallabag_core.helper.redirect:
109 class: Wallabag\CoreBundle\Helper\Redirect
110 arguments:
111 - "@router"
112
113 wallabag_core.helper.prepare_pager_for_entries:
114 class: Wallabag\CoreBundle\Helper\PreparePagerForEntries
115 arguments:
116 - "@security.token_storage"
117 - "@router"
118
119 wallabag_core.redis.client:
120 class: Predis\Client
121 arguments:
122 -
123 scheme: '%redis_scheme%'
124 host: '%redis_host%'
125 port: '%redis_port%'
126 path: '%redis_path%'
127
128 wallabag_core.exception_controller:
129 class: Wallabag\CoreBundle\Controller\ExceptionController
130 arguments:
131 - '@twig'
132 - '%kernel.debug%'