The Symfony Security component provides a flexible security framework that allows you to load users from configuration, a database, or anywhere else you can imagine. The FOSUserBundle builds on top of this to make it quick and easy to store users in a database, as well as functionality for registration, reset password and a profile page.
So, if you need to persist and fetch the users in your system to and from a database, then you're in the right place.
For a video tutorial, check out FOSUserBundle FTW by KnpUniversity.
This version of the bundle requires Symfony 2.8+. If you are using an older Symfony version, please use the 1.3.x releases of the bundle.
If you wish to use default texts provided in this bundle, you have to make sure you have translator enabled in your config.
# app/config/config.yml
framework:
translator: ~
For more information about translations, check Symfony documentation.
Installation is a quick (I promise!) 7 step process:
- Download FOSUserBundle using composer
- Enable the Bundle
- Create your User class
- Configure your application's security.yml
- Configure the FOSUserBundle
- Import FOSUserBundle routing
- Update your database schema
Require the bundle with composer:
$ composer require friendsofsymfony/user-bundle "^3.0"
Composer will install the bundle to your project's vendor/friendsofsymfony/user-bundle
directory.
If you encounter installation errors pointing at a lack of configuration parameters, such as The child node "db_driver" at path "fos_user" must be configured
, you should complete the configuration in Step 5 first and then re-run this step.
Enable the bundle in the kernel:
<?php
// app/AppKernel.php
public function registerBundles()
{
$bundles = array(
// ...
new FOS\UserBundle\FOSUserBundle(),
// ...
);
}
The goal of this bundle is to persist some User
class to a database (MySql,
MongoDB, etc). Your first job, then, is to create the User
class
for your application. This class can look and act however you want: add any
properties or methods you find useful. This is your User
class.
The bundle provides base classes which are already mapped for most fields to make it easier to create your entity. Here is how you use it:
- Extend the base
User
class (from theModel
folder if you are using any of the doctrine variants) - Map the
id
field. It must be protected as it is inherited from the parent class.
Caution!
When you extend from the mapped superclass provided by the bundle, don't redefine the mapping for the other fields as it is provided by the bundle.
In the following sections, you'll see examples of how your User
class should
look, depending on how you're storing your users (Doctrine ORM or MongoDB ODM).
Note
The doc uses a bundle named AppBundle
according to the Symfony best
practices. However, you can of course place your user class in the bundle
you want.
Caution!
If you override the __construct() method in your User class, be sure to call parent::__construct(), as the base User class depends on this to initialize some fields.
If you're persisting your users via the Doctrine ORM, then your User
class
should live in the Entity
namespace of your bundle and look like this to
start:
.. configuration-block:: .. code-block:: php-annotations <?php // src/AppBundle/Entity/User.php namespace AppBundle\Entity; use FOS\UserBundle\Model\User as BaseUser; use Doctrine\ORM\Mapping as ORM; /** * @ORM\Entity * @ORM\Table(name="fos_user") */ class User extends BaseUser { /** * @ORM\Id * @ORM\Column(type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ protected $id; public function __construct() { parent::__construct(); // your own logic } } .. code-block:: yaml # src/AppBundle/Resources/config/doctrine/User.orm.yml AppBundle\Entity\User: type: entity table: fos_user id: id: type: integer generator: strategy: AUTO .. code-block:: xml <?xml version="1.0" encoding="utf-8"?> <!-- src/AppBundle/Resources/config/doctrine/User.orm.xml --> <doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd"> <entity name="AppBundle\Entity\User" table="fos_user"> <id name="id" type="integer" column="id"> <generator strategy="AUTO"/> </id> </entity> </doctrine-mapping>
Caution!
user
is a reserved keyword in the SQL standard. If you need to use reserved words, surround them with backticks, e.g. @ORM\Table(name="`user`")
If you're persisting your users via the Doctrine MongoDB ODM, then your User
class should live in the Document
namespace of your bundle and look like
this to start:
<?php
// src/AppBundle/Document/User.php
namespace AppBundle\Document;
use FOS\UserBundle\Model\User as BaseUser;
use Doctrine\ODM\MongoDB\Mapping\Annotations as MongoDB;
/**
* @MongoDB\Document
*/
class User extends BaseUser
{
/**
* @MongoDB\Id(strategy="auto")
*/
protected $id;
public function __construct()
{
parent::__construct();
// your own logic
}
}
Note
Support for the CouchDB ODM is deprecated as the Doctrine CouchDB ODM is unmaintained.
If you're persisting your users via the Doctrine CouchDB ODM, then your User
class should live in the CouchDocument
namespace of your bundle and look
like this to start:
<?php
// src/AppBundle/CouchDocument/User.php
namespace AppBundle\CouchDocument;
use FOS\UserBundle\Model\User as BaseUser;
use Doctrine\ODM\CouchDB\Mapping\Annotations as CouchDB;
/**
* @CouchDB\Document
*/
class User extends BaseUser
{
/**
* @CouchDB\Id
*/
protected $id;
public function __construct()
{
parent::__construct();
// your own logic
}
}
In order for Symfony's security component to use the FOSUserBundle, you must
tell it to do so in the security.yml
file. The security.yml
file is where the
basic security configuration for your application is contained.
Below is a minimal example of the configuration necessary to use the FOSUserBundle in your application:
# app/config/security.yml
security:
encoders:
FOS\UserBundle\Model\UserInterface: auto
role_hierarchy:
ROLE_ADMIN: ROLE_USER
ROLE_SUPER_ADMIN: ROLE_ADMIN
providers:
fos_userbundle:
id: fos_user.user_provider.username
firewalls:
main:
pattern: ^/
user_checker: fos_user.user_checker
form_login:
provider: fos_userbundle
csrf_token_generator: security.csrf.token_manager
logout: true
anonymous: true
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 }
Under the providers
section, you are making the bundle's packaged user provider
service available via the alias fos_userbundle
. The id of the bundle's user
provider service is fos_user.user_provider.username
.
Next, take a look at and examine the firewalls
section. Here we have
declared a firewall named main
. By specifying form_login
, you have
told the Symfony Framework that any time a request is made to this firewall
that leads to the user needing to authenticate himself, the user will be
redirected to a form where he will be able to enter his credentials. It should
come as no surprise then that you have specified the user provider service
we declared earlier as the provider for the firewall to use as part of the
authentication process.
Note
Although we have used the form login mechanism in this example, the FOSUserBundle user provider service is compatible with many other authentication methods as well. Please read the Symfony Security component documentation for more information on the other types of authentication methods.
The access_control
section is where you specify the credentials necessary for
users trying to access specific parts of your application. The bundle requires
that the login form and all the routes used to create a user and reset the password
be available to unauthenticated users but use the same firewall as
the pages you want to secure with the bundle. This is why you have specified that
any request matching the /login
pattern or starting with /register
or
/resetting
have been made available to anonymous users. You have also specified
that any request beginning with /admin
will require a user to have the
ROLE_ADMIN
role.
For more information on configuring the security.yml
file please read the Symfony
security component documentation.
Note
Pay close attention to the name, main
, that we have given to the
firewall which the FOSUserBundle is configured in. You will use this
in the next step when you configure the FOSUserBundle.
Now that you have properly configured your application's security.yml
to work
with the FOSUserBundle, the next step is to configure the bundle to work with
the specific needs of your application.
Add the following configuration to your config.yml
file according to which type
of datastore you are using.
.. configuration-block:: .. code-block:: yaml # app/config/config.yml fos_user: db_driver: orm # other valid values are 'mongodb', 'couchdb' and 'custom' firewall_name: main user_class: AppBundle\Entity\User from_email: address: "%mailer_user%" sender_name: "%mailer_user%" .. code-block:: xml <!-- app/config/config.xml --> <!-- other valid 'db-driver' values are 'mongodb', 'couchdb' and 'custom' --> <fos_user:config db-driver="orm" firewall-name="main" user-class="AppBundle\Entity\User" />
Only four configuration's nodes are required to use the bundle:
- The type of datastore you are using (
orm
,mongodb
,couchdb
orcustom`
). - The firewall name which you configured in Step 4.
- The fully qualified class name (FQCN) of the
User
class which you created in Step 3. - The default email address to use when the bundle send a registration confirmation to the user.
Note
FOSUserBundle uses a compiler pass to register mappings for the base User model classes with the object manager that you configured it to use. (Unless specified explicitly, this is the default manager of your doctrine configuration.)
Now that you have activated and configured the bundle, all that is left to do is import the FOSUserBundle routing files.
By importing the routing files you will have ready made pages for things such as logging in, creating users, etc.
.. configuration-block:: .. code-block:: yaml # app/config/routing.yml fos_user: resource: "@FOSUserBundle/Resources/config/routing/all.xml" .. code-block:: xml <!-- app/config/routing.xml --> <import resource="@FOSUserBundle/Resources/config/routing/all.xml"/>
Note
In order to use the built-in email functionality (confirmation of the account, resetting of the password), you must activate and configure the SwiftmailerBundle.
Now that the bundle is configured, the last thing you need to do is update your
database schema because you have added a new entity, the User
class which you
created in Step 4.
For ORM run the following command.
$ php bin/console doctrine:schema:update --force
For MongoDB users you can run the following command to create the indexes.
$ php bin/console doctrine:mongodb:schema:create --index
Note
If you use the Symfony 2.x structure in your project, use app/console
instead of bin/console
in the commands.
You now can log in at http://app.com/app_dev.php/login
!
Now that you have completed the basic installation and configuration of the FOSUserBundle, you are ready to learn about more advanced features and usages of the bundle.
The following documents are available:
.. toctree:: :maxdepth: 1 overriding_templates controller_events overriding_forms user_manager command_line_tools logging_by_username_or_email form_type emails doctrine overriding_validation canonicalizer custom_storage_layer routing configuration_reference adding_invitation_registration