X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FResources%2Fconfig%2Fservices.yml;h=a36f33922e8805ecd00d7727ddb13293f084c898;hb=refs%2Fpull%2F1049%2Fhead;hp=4cf46b33984e7f59d35e0b3d2b305597954108b7;hpb=c3510620ad0718d2ab1f856e3a838360a5ade314;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index 4cf46b33..a36f3392 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml @@ -2,8 +2,8 @@ services: wallabag_core.helper.detect_active_theme: class: Wallabag\CoreBundle\Helper\DetectActiveTheme arguments: - - @security.token_storage - - %theme% # default theme from parameters.yml + - "@security.token_storage" + - %wallabag_core.theme% # custom form type wallabag_core.form.type.config: @@ -12,26 +12,22 @@ services: - %liip_theme.themes% - %wallabag_core.languages% tags: - - { name: form.type, alias: config } + - { name: form.type } - wallabag_core.form.registration: - class: Wallabag\CoreBundle\Form\Type\RegistrationType - tags: - - { name: form.type, alias: wallabag_user_registration } - - wallabag_core.form.type.forgot_password: - class: Wallabag\CoreBundle\Form\Type\ForgotPasswordType + wallabag_core.filter.type.entry: + class: Wallabag\CoreBundle\Form\Type\EntryFilterType arguments: - - @doctrine + - "@wallabag_core.entry_repository" + - "@security.token_storage" tags: - - { name: form.type, alias: forgot_password } + - { name: form.type } wallabag_core.param_converter.username_rsstoken_converter: class: Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter tags: - { name: request.param_converter, converter: username_rsstoken_converter } arguments: - - @doctrine + - "@doctrine" wallabag_core.table_prefix_subscriber: class: Wallabag\CoreBundle\Subscriber\TablePrefixSubscriber @@ -43,44 +39,78 @@ services: wallabag_core.graby: class: Graby\Graby arguments: - - { error_message: false } + - + error_message: "wallabag can't retrieve contents for this article. Please report this issue to us." + 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 ] ] + - [ setLogger, [ "@logger" ] ] tags: - { name: monolog.logger, channel: graby } wallabag_core.content_proxy: class: Wallabag\CoreBundle\Helper\ContentProxy arguments: - - @wallabag_core.graby - - @wallabag_core.rule_based_tagger + - "@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 + - "@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_service: doctrine.orm.default_entity_manager - factory_method: getRepository + factory: [ "@doctrine.orm.default_entity_manager", getRepository ] arguments: - WallabagCoreBundle:Tag wallabag_core.registration_confirmed: class: Wallabag\CoreBundle\EventListener\RegistrationConfirmedListener arguments: - - @doctrine.orm.entity_manager - - %theme% - - %items_on_page% - - %rss_limit% - - %language% + - "@doctrine.orm.entity_manager" + - %wallabag_core.theme% + - %wallabag_core.items_on_page% + - %wallabag_core.rss_limit% + - %wallabag_core.language% tags: - { name: kernel.event_subscriber } wallabag_core.helper.entries_export: class: Wallabag\CoreBundle\Helper\EntriesExport arguments: - - %wallabag_url% - - src/Wallabag/CoreBundle/Resources/views/themes/_global/public/img/appicon/apple-touch-icon-152.png + - "@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 }