X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FResources%2Fconfig%2Fservices.yml;h=4b7751fe9efeb8bb756fc26a6bd4dd49730b9489;hb=535bfcbe80de5d697b768c3a657214fdeff0eac3;hp=c734a3a57784ed817acc2d624e07b4b014ce567e;hpb=ba7b9d48d407f87690a3fdc199b37714d2a52897;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index c734a3a5..4b7751fe 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml @@ -1,30 +1,138 @@ services: - wallabag_core.twig.extension: - class: Wallabag\CoreBundle\Twig\Extension\WallabagExtension + wallabag_core.helper.detect_active_theme: + class: Wallabag\CoreBundle\Helper\DetectActiveTheme + arguments: + - "@security.token_storage" + - "%wallabag_core.theme%" + + # custom form type + wallabag_core.form.type.config: + class: Wallabag\CoreBundle\Form\Type\ConfigType + arguments: + - "%liip_theme.themes%" + - "%wallabag_core.languages%" + tags: + - { name: form.type } + + wallabag_core.filter.type.entry: + class: Wallabag\CoreBundle\Form\Type\EntryFilterType + arguments: + - "@wallabag_core.entry_repository" + - "@security.token_storage" tags: - - { name: twig.extension } + - { name: form.type } - wsse.security.authentication.provider: - class: Wallabag\CoreBundle\Security\Authentication\Provider\WsseProvider - public: false - arguments: ['', '%kernel.cache_dir%/security/nonces'] + wallabag_core.param_converter.username_rsstoken_converter: + class: Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter + tags: + - { name: request.param_converter, converter: username_rsstoken_converter } + arguments: + - "@doctrine" - wsse.security.authentication.listener: - class: Wallabag\CoreBundle\Security\Firewall\WsseListener - public: false + wallabag_core.subscriber.table_prefix: + class: Wallabag\CoreBundle\Event\Subscriber\TablePrefixSubscriber + arguments: + - "%database_table_prefix%" tags: - - { name: monolog.logger, channel: wsse } - arguments: ['@security.context', '@security.authentication.manager', '@logger'] + - { name: doctrine.event_subscriber } - wallabag_core.helper.detect_active_theme: - class: Wallabag\CoreBundle\Helper\DetectActiveTheme + wallabag_core.graby: + class: Graby\Graby arguments: - - @security.context - - %theme% # default theme from parameters.yml + - + error_message: '%wallabag_core.fetching_error_message%' + http_client: + user_agents: + 'lifehacker.com': 'PHP/5.2' + 'gawker.com': 'PHP/5.2' + 'deadspin.com': 'PHP/5.2' + 'kotaku.com': 'PHP/5.2' + 'jezebel.com': 'PHP/5.2' + 'io9.com': 'PHP/5.2' + 'jalopnik.com': 'PHP/5.2' + 'gizmodo.com': 'PHP/5.2' + '.wikipedia.org': 'Mozilla/5.2' + '.fok.nl': 'Googlebot/2.1' + 'getpocket.com': 'PHP/5.2' + 'iansommerville.com': 'PHP/5.2' + calls: + - [ setLogger, [ "@logger" ] ] + tags: + - { name: monolog.logger, channel: graby } - wallabag_core.form.type.config: - class: Wallabag\CoreBundle\Form\Type\ConfigType + wallabag_core.content_proxy: + class: Wallabag\CoreBundle\Helper\ContentProxy + arguments: + - "@wallabag_core.graby" + - "@wallabag_core.rule_based_tagger" + - "@wallabag_core.tag_repository" + - "@logger" + + wallabag_core.rule_based_tagger: + class: Wallabag\CoreBundle\Helper\RuleBasedTagger + arguments: + - "@rulerz" + - "@wallabag_core.tag_repository" + - "@wallabag_core.entry_repository" + + # repository as a service + wallabag_core.entry_repository: + class: Wallabag\CoreBundle\Repository\EntryRepository + factory: [ "@doctrine.orm.default_entity_manager", getRepository ] + arguments: + - WallabagCoreBundle:Entry + + wallabag_core.tag_repository: + class: Wallabag\CoreBundle\Repository\TagRepository + factory: [ "@doctrine.orm.default_entity_manager", getRepository ] + arguments: + - WallabagCoreBundle:Tag + + wallabag_core.helper.entries_export: + class: Wallabag\CoreBundle\Helper\EntriesExport + arguments: + - "@craue_config" + - src/Wallabag/CoreBundle/Resources/public/themes/_global/img/appicon/apple-touch-icon-152.png + + wallabag.operator.array.matches: + class: Wallabag\CoreBundle\Operator\PHP\Matches + tags: + - { name: rulerz.operator, executor: rulerz.executor.array, operator: matches } + + wallabag.operator.doctrine.matches: + class: Wallabag\CoreBundle\Operator\Doctrine\Matches + tags: + - { name: rulerz.operator, executor: rulerz.executor.doctrine, operator: matches, inline: true } + + wallabag_core.helper.redirect: + class: Wallabag\CoreBundle\Helper\Redirect + arguments: + - "@router" + + wallabag_core.helper.prepare_pager_for_entries: + class: Wallabag\CoreBundle\Helper\PreparePagerForEntries + arguments: + - "@security.token_storage" + - "@router" + + wallabag_core.redis.client: + class: Predis\Client + arguments: + - + scheme: '%redis_scheme%' + host: '%redis_host%' + port: '%redis_port%' + path: '%redis_path%' + + wallabag_core.exception_controller: + class: Wallabag\CoreBundle\Controller\ExceptionController + arguments: + - '@twig' + - '%kernel.debug%' + + wallabag_core.subscriber.sqlite_cascade_delete: + class: Wallabag\CoreBundle\Event\Subscriber\SQLiteCascadeDeleteSubscriber arguments: - - %liip_theme.themes% + - "@doctrine" tags: - - { name: form.type, alias: config } + - { name: doctrine.event_subscriber }