X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FResources%2Fconfig%2Fservices.yml;h=80f737f8aa3eb32bdaf9758a233dcf6ac99e33e9;hb=619cc45359ead519b64129181a07e14160fbbfcb;hp=8e21b0528aeb95c701f5095a6f625be988a207d0;hpb=add597bad95b30dbecab3aecc8362a1ccd427976;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index 8e21b052..80f737f8 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml @@ -2,7 +2,7 @@ services: wallabag_core.helper.detect_active_theme: class: Wallabag\CoreBundle\Helper\DetectActiveTheme arguments: - - @security.token_storage + - "@security.token_storage" - %theme% # default theme from parameters.yml # custom form type @@ -22,7 +22,7 @@ services: wallabag_core.form.type.forgot_password: class: Wallabag\CoreBundle\Form\Type\ForgotPasswordType arguments: - - @doctrine + - "@doctrine" tags: - { name: form.type, alias: forgot_password } @@ -31,7 +31,7 @@ services: tags: - { name: request.param_converter, converter: username_rsstoken_converter } arguments: - - @doctrine + - "@doctrine" wallabag_core.table_prefix_subscriber: class: Wallabag\CoreBundle\Subscriber\TablePrefixSubscriber @@ -45,19 +45,41 @@ services: arguments: - { error_message: false } 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.graby" + - "@wallabag_core.rule_based_tagger" + - "@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.registration_confirmed: class: Wallabag\CoreBundle\EventListener\RegistrationConfirmedListener arguments: - - @doctrine.orm.entity_manager + - "@doctrine.orm.entity_manager" - %theme% - %items_on_page% - %rss_limit% @@ -70,3 +92,13 @@ services: arguments: - %wallabag_url% - src/Wallabag/CoreBundle/Resources/views/themes/_global/public/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 }