# Learn more about services, parameters and containers at
# https://symfony.com/doc/current/service_container.html
parameters:
    #parameter_name: value

services:
    # default configuration for services in *this* file
    _defaults:
        # automatically injects dependencies in your services
        autowire: true
        # automatically registers your services as commands, event subscribers, etc.
        autoconfigure: true
        # this means you cannot fetch services directly from the container via $container->get()
        # if you need to do this, you can override this setting on individual services
        public: false

    # makes classes in src/AppBundle available to be used as services
    # this creates a service per class whose id is the fully-qualified class name
    AppBundle\:
        resource: '../../src/AppBundle/*'
        # you can exclude directories or files
        # but if a service is unused, it's removed anyway
        exclude: '../../src/AppBundle/{Entity,Repository,Tests}'

    # controllers are imported separately to make sure they're public
    # and have a tag that allows actions to type-hint services
    AppBundle\Controller\:
        resource: '../../src/AppBundle/Controller'
        public: true
        tags: ['controller.service_arguments']

    # add more services, or override services that need manual wiring
    # AppBundle\Service\ExampleService:
    #     arguments:
    #         $someArgument: 'some_value'

    AppBundle\Service\ActivityListener:
        tags:
        - { name: 'kernel.event_listener', event: 'kernel.controller', method: onCoreController }

    AppBundle\Service\Search:
        arguments:
        - "@doctrine.orm.entity_manager"

    AppBundle\Service\UniciteCollections:
        arguments:
        - "@doctrine.orm.entity_manager"

    AppBundle\Service\Mail:
        arguments:
        - "@mailer"
        - "@twig"
        - '%mail_from%'
        - '%mail_reply%'
        - '%mail_name%'

    AppBundle\Service\Mattermost:
        arguments:
            $url: '%mattermost_url%'

    AppBundle\Service\UserManager:
        arguments:
        - "@doctrine.orm.entity_manager"
        - "@security.password_encoder"

    AppBundle\Service\FilmCreationListener:
        arguments:
            - "@AppBundle\\Service\\Mattermost"
            - "@session"
        tags:
        - { name: doctrine.event_listener, event: postPersist }

    AppBundle\Service\NoteListener:
        arguments:
            - "@AppBundle\\Service\\NoteMoyenne"
        tags:
        - { name: doctrine.event_listener, event: postPersist }
        - { name: doctrine.event_listener, event: postUpdate }
        - { name: doctrine.event_listener, event: postRemove }