rhrebecek/nette-identity-doctrine

This package is abandoned and no longer maintained. No replacement package was suggested.

Integration of entities implementing IIdentity in Nette 2

Installs: 576

Dependents: 0

Suggesters: 0

Security: 0

Watchers: 1

Forks: 10

Type:nette-addon

This package has no released version yet, and little information is available.


README

Nette addon for using Doctrine 2 entities directly as Nette identity

Motivation

If you are using Nette 2 and Doctrine 2 together, you will sooner or later want to use some of your entities also as identity, because it is practical.

Fortunately, this addon is here to help you with this task!

Requirements

  • PHP 5.3.2 or newer
  • Nette 2.0 or newer
  • Doctrine ORM 2.3 or newer

Installation

  1. Add "majkl578/nette-identity-doctrine" to your dependencies in composer.json. Don't forget to run composer update.
  2. Register extension to start using this addon.

    1. In Nette 2.0, add the following call just before the call $configurator->createContainer():
    Majkl578\NetteAddons\Doctrine2Identity\DI\IdentityExtension::register($configurator);
    1. In Nette 2.1, register it in your configuration file in extensions section:
    doctrine2identity: Majkl578\NetteAddons\Doctrine2Identity\DI\IdentityExtension
    
  3. Delete cache.

You're done. ;)

Usage

Imagine you have an application where you're implementing authentication. All you have is a regular entity for the user in your application. Now you want to implement the authentication itself - you need to have an identity. The only thing you have to do is to implement Nette\Security\IIdentity on your user entity, so you get something like this:

/**
 * @ORM\Entity
 */
class UserEntity implements IIdentity
{
    /** @ORM\Column(type="integer") @ORM\Id @ORM\GeneratedValue */
    private $id;

    /** @ORM\Column */
    private $name;

    ... other properties, getters & setters

    /* implementation of IIdentity */
    public function getId()
    {
        return $this->id;
    }

    public function getRoles()
    {
        return [];
    }
}

(Notice the empty getRoles() method. That is due to the requirement of IIdentity. If you don't use authorization, unfortunately, it can't be omitted, sorry.)

That's all. Everything is automatic! And you can even use entities with composite identifiers!

Issues

In case of any problems, just leave an issue here on GitHub (or, better, send a pull request).