2017 © Pedro Peláez
 

symfony-bundle user-project

User Bundle

image

ardteam/user-project

User Bundle

  • Friday, October 30, 2015
  • by ardteam
  • Repository
  • 1 Watchers
  • 0 Stars
  • 8 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

USER Bundle by ArdTeam

Installation

Require the bundle in your composer.json file:, (*1)

// composer.json
{
    // ...
    require:{
        // ...
        "ardteam/user-project" : "1.0.x@dev",
        "friendsofsymfony/user-bundle": "@dev"
    }
}

Register the bundle:, (*2)

// app/AppKernel.php

public function registerBundles()
{
    return array(
        // ...
        new FOS\UserBundle\FOSUserBundle(),
        new AT\UserBundle\ATUserBundle(),
        // ...
    );
}

Install the bundle:, (*3)

$ composer update

Configuration

# Add to app/config/config.yml
doctrine:
    dbal:
        # ...
        types:
            json: Sonata\Doctrine\Types\JsonType

fos_user:
    db_driver: orm
    firewall_name: main
    user_class: AT\UserBundle\Entity\User
# Add to app/config/security.yml

security
    encoders:
        AT\UserBundle\Entity\User: sha512

    role_hierarchy:
        ROLE_ADMIN:       ROLE_USER
        ROLE_SUPER_ADMIN: [ROLE_USER, ROLE_ADMIN, ROLE_ALLOWED_TO_SWITCH]

    providers:
        fos_userbundle:
            id: fos_user.user_provider.username

    firewalls:
        # ...

        main:
           pattern: ^/
           anonymous:    true
           form_login:
               provider: fos_userbundle
               login_path: fos_user_security_login
               check_path: fos_user_security_check
           logout:
                path: fos_user_security_logout
                target: /admin/ # route après logout
            remember_me:
                key: %secret% # %secret% est un paramètre de parameters.yml

    access_control:
        # ...
        - { path: ^/login$, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/register, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/resetting, role: IS_AUTHENTICATED_ANONYMOUSLY }
        - { path: ^/admin/, role: ROLE_ADMIN } # exemple de route à sécuriser
        # ...

Import FOSUser routes, (*4)

``` yaml, (*5)

Add to app/config/routing.yml

Sécurité & Connexion

fos_user: resource: "@FOSUserBundle/Resources/config/routing/all.xml", (*6)


## Usage Create a user. For example :

$ php app/console fos:user:create --super-admin ```, (*7)

The Versions