vendor/friendsofsymfony/user-bundle/Model/User.php line 24

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the FOSUserBundle package.
  4.  *
  5.  * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace FOS\UserBundle\Model;
  11. use Doctrine\Common\Collections\ArrayCollection;
  12. use Doctrine\Common\Collections\Collection;
  13. use Symfony\Component\Security\Core\User\UserInterface as BaseUserInterface;
  14. /**
  15.  * Storage agnostic user object.
  16.  *
  17.  * @author Thibault Duplessis <thibault.duplessis@gmail.com>
  18.  * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  19.  */
  20. abstract class User implements UserInterfaceGroupableInterface
  21. {
  22.     /**
  23.      * @var mixed
  24.      */
  25.     protected $id;
  26.     /**
  27.      * @var string
  28.      */
  29.     protected $username;
  30.     /**
  31.      * @var string
  32.      */
  33.     protected $usernameCanonical;
  34.     /**
  35.      * @var string
  36.      */
  37.     protected $email;
  38.     /**
  39.      * @var string
  40.      */
  41.     protected $emailCanonical;
  42.     /**
  43.      * @var bool
  44.      */
  45.     protected $enabled;
  46.     /**
  47.      * The salt to use for hashing.
  48.      *
  49.      * @var string
  50.      */
  51.     protected $salt;
  52.     /**
  53.      * Encrypted password. Must be persisted.
  54.      *
  55.      * @var string
  56.      */
  57.     protected $password;
  58.     /**
  59.      * Plain password. Used for model validation. Must not be persisted.
  60.      *
  61.      * @var string
  62.      */
  63.     protected $plainPassword;
  64.     /**
  65.      * @var \DateTime|null
  66.      */
  67.     protected $lastLogin;
  68.     /**
  69.      * Random string sent to the user email address in order to verify it.
  70.      *
  71.      * @var string|null
  72.      */
  73.     protected $confirmationToken;
  74.     /**
  75.      * @var \DateTime|null
  76.      */
  77.     protected $passwordRequestedAt;
  78.     /**
  79.      * @var GroupInterface[]|Collection
  80.      */
  81.     protected $groups;
  82.     /**
  83.      * @var array
  84.      */
  85.     protected $roles;
  86.     /**
  87.      * User constructor.
  88.      */
  89.     public function __construct()
  90.     {
  91.         $this->enabled false;
  92.         $this->roles = [];
  93.     }
  94.     /**
  95.      * @return string
  96.      */
  97.     public function __toString()
  98.     {
  99.         return (string) $this->getUsername();
  100.     }
  101.     /**
  102.      * {@inheritdoc}
  103.      */
  104.     public function addRole($role)
  105.     {
  106.         $role strtoupper($role);
  107.         if ($role === static::ROLE_DEFAULT) {
  108.             return $this;
  109.         }
  110.         if (!in_array($role$this->rolestrue)) {
  111.             $this->roles[] = $role;
  112.         }
  113.         return $this;
  114.     }
  115.     /**
  116.      * {@inheritdoc}
  117.      */
  118.     public function serialize()
  119.     {
  120.         return serialize([
  121.             $this->password,
  122.             $this->salt,
  123.             $this->usernameCanonical,
  124.             $this->username,
  125.             $this->enabled,
  126.             $this->id,
  127.             $this->email,
  128.             $this->emailCanonical,
  129.         ]);
  130.     }
  131.     /**
  132.      * {@inheritdoc}
  133.      */
  134.     public function unserialize($serialized)
  135.     {
  136.         $data unserialize($serialized);
  137.         if (13 === count($data)) {
  138.             // Unserializing a User object from 1.3.x
  139.             unset($data[4], $data[5], $data[6], $data[9], $data[10]);
  140.             $data array_values($data);
  141.         } elseif (11 === count($data)) {
  142.             // Unserializing a User from a dev version somewhere between 2.0-alpha3 and 2.0-beta1
  143.             unset($data[4], $data[7], $data[8]);
  144.             $data array_values($data);
  145.         }
  146.         list(
  147.             $this->password,
  148.             $this->salt,
  149.             $this->usernameCanonical,
  150.             $this->username,
  151.             $this->enabled,
  152.             $this->id,
  153.             $this->email,
  154.             $this->emailCanonical
  155.         ) = $data;
  156.     }
  157.     /**
  158.      * {@inheritdoc}
  159.      */
  160.     public function eraseCredentials()
  161.     {
  162.         $this->plainPassword null;
  163.     }
  164.     /**
  165.      * {@inheritdoc}
  166.      */
  167.     public function getId()
  168.     {
  169.         return $this->id;
  170.     }
  171.     /**
  172.      * {@inheritdoc}
  173.      */
  174.     public function getUsername()
  175.     {
  176.         return $this->username;
  177.     }
  178.     /**
  179.      * {@inheritdoc}
  180.      */
  181.     public function getUsernameCanonical()
  182.     {
  183.         return $this->usernameCanonical;
  184.     }
  185.     /**
  186.      * {@inheritdoc}
  187.      */
  188.     public function getSalt()
  189.     {
  190.         return $this->salt;
  191.     }
  192.     /**
  193.      * {@inheritdoc}
  194.      */
  195.     public function getEmail()
  196.     {
  197.         return $this->email;
  198.     }
  199.     /**
  200.      * {@inheritdoc}
  201.      */
  202.     public function getEmailCanonical()
  203.     {
  204.         return $this->emailCanonical;
  205.     }
  206.     /**
  207.      * {@inheritdoc}
  208.      */
  209.     public function getPassword()
  210.     {
  211.         return $this->password;
  212.     }
  213.     /**
  214.      * {@inheritdoc}
  215.      */
  216.     public function getPlainPassword()
  217.     {
  218.         return $this->plainPassword;
  219.     }
  220.     /**
  221.      * Gets the last login time.
  222.      *
  223.      * @return \DateTime|null
  224.      */
  225.     public function getLastLogin()
  226.     {
  227.         return $this->lastLogin;
  228.     }
  229.     /**
  230.      * {@inheritdoc}
  231.      */
  232.     public function getConfirmationToken()
  233.     {
  234.         return $this->confirmationToken;
  235.     }
  236.     /**
  237.      * {@inheritdoc}
  238.      */
  239.     public function getRoles()
  240.     {
  241.         $roles $this->roles;
  242.         foreach ($this->getGroups() as $group) {
  243.             $roles array_merge($roles$group->getRoles());
  244.         }
  245.         // we need to make sure to have at least one role
  246.         $roles[] = static::ROLE_DEFAULT;
  247.         return array_values(array_unique($roles));
  248.     }
  249.     /**
  250.      * {@inheritdoc}
  251.      */
  252.     public function hasRole($role)
  253.     {
  254.         return in_array(strtoupper($role), $this->getRoles(), true);
  255.     }
  256.     /**
  257.      * {@inheritdoc}
  258.      */
  259.     public function isAccountNonExpired()
  260.     {
  261.         return true;
  262.     }
  263.     /**
  264.      * {@inheritdoc}
  265.      */
  266.     public function isAccountNonLocked()
  267.     {
  268.         return true;
  269.     }
  270.     /**
  271.      * {@inheritdoc}
  272.      */
  273.     public function isCredentialsNonExpired()
  274.     {
  275.         return true;
  276.     }
  277.     public function isEnabled()
  278.     {
  279.         return $this->enabled;
  280.     }
  281.     /**
  282.      * {@inheritdoc}
  283.      */
  284.     public function isSuperAdmin()
  285.     {
  286.         return $this->hasRole(static::ROLE_SUPER_ADMIN);
  287.     }
  288.     /**
  289.      * {@inheritdoc}
  290.      */
  291.     public function removeRole($role)
  292.     {
  293.         if (false !== $key array_search(strtoupper($role), $this->rolestrue)) {
  294.             unset($this->roles[$key]);
  295.             $this->roles array_values($this->roles);
  296.         }
  297.         return $this;
  298.     }
  299.     /**
  300.      * {@inheritdoc}
  301.      */
  302.     public function setUsername($username)
  303.     {
  304.         $this->username $username;
  305.         return $this;
  306.     }
  307.     /**
  308.      * {@inheritdoc}
  309.      */
  310.     public function setUsernameCanonical($usernameCanonical)
  311.     {
  312.         $this->usernameCanonical $usernameCanonical;
  313.         return $this;
  314.     }
  315.     /**
  316.      * {@inheritdoc}
  317.      */
  318.     public function setSalt($salt)
  319.     {
  320.         $this->salt $salt;
  321.         return $this;
  322.     }
  323.     /**
  324.      * {@inheritdoc}
  325.      */
  326.     public function setEmail($email)
  327.     {
  328.         $this->email $email;
  329.         return $this;
  330.     }
  331.     /**
  332.      * {@inheritdoc}
  333.      */
  334.     public function setEmailCanonical($emailCanonical)
  335.     {
  336.         $this->emailCanonical $emailCanonical;
  337.         return $this;
  338.     }
  339.     /**
  340.      * {@inheritdoc}
  341.      */
  342.     public function setEnabled($boolean)
  343.     {
  344.         $this->enabled = (bool) $boolean;
  345.         return $this;
  346.     }
  347.     /**
  348.      * {@inheritdoc}
  349.      */
  350.     public function setPassword($password)
  351.     {
  352.         $this->password $password;
  353.         return $this;
  354.     }
  355.     /**
  356.      * {@inheritdoc}
  357.      */
  358.     public function setSuperAdmin($boolean)
  359.     {
  360.         if (true === $boolean) {
  361.             $this->addRole(static::ROLE_SUPER_ADMIN);
  362.         } else {
  363.             $this->removeRole(static::ROLE_SUPER_ADMIN);
  364.         }
  365.         return $this;
  366.     }
  367.     /**
  368.      * {@inheritdoc}
  369.      */
  370.     public function setPlainPassword($password)
  371.     {
  372.         $this->plainPassword $password;
  373.         return $this;
  374.     }
  375.     /**
  376.      * {@inheritdoc}
  377.      */
  378.     public function setLastLogin(\DateTime $time null)
  379.     {
  380.         $this->lastLogin $time;
  381.         return $this;
  382.     }
  383.     /**
  384.      * {@inheritdoc}
  385.      */
  386.     public function setConfirmationToken($confirmationToken)
  387.     {
  388.         $this->confirmationToken $confirmationToken;
  389.         return $this;
  390.     }
  391.     /**
  392.      * {@inheritdoc}
  393.      */
  394.     public function setPasswordRequestedAt(\DateTime $date null)
  395.     {
  396.         $this->passwordRequestedAt $date;
  397.         return $this;
  398.     }
  399.     /**
  400.      * Gets the timestamp that the user requested a password reset.
  401.      *
  402.      * @return \DateTime|null
  403.      */
  404.     public function getPasswordRequestedAt()
  405.     {
  406.         return $this->passwordRequestedAt;
  407.     }
  408.     /**
  409.      * {@inheritdoc}
  410.      */
  411.     public function isPasswordRequestNonExpired($ttl)
  412.     {
  413.         return $this->getPasswordRequestedAt() instanceof \DateTime &&
  414.                $this->getPasswordRequestedAt()->getTimestamp() + $ttl time();
  415.     }
  416.     /**
  417.      * {@inheritdoc}
  418.      */
  419.     public function setRoles(array $roles)
  420.     {
  421.         $this->roles = [];
  422.         foreach ($roles as $role) {
  423.             $this->addRole($role);
  424.         }
  425.         return $this;
  426.     }
  427.     /**
  428.      * {@inheritdoc}
  429.      */
  430.     public function getGroups()
  431.     {
  432.         return $this->groups ?: $this->groups = new ArrayCollection();
  433.     }
  434.     /**
  435.      * {@inheritdoc}
  436.      */
  437.     public function getGroupNames()
  438.     {
  439.         $names = [];
  440.         foreach ($this->getGroups() as $group) {
  441.             $names[] = $group->getName();
  442.         }
  443.         return $names;
  444.     }
  445.     /**
  446.      * {@inheritdoc}
  447.      */
  448.     public function hasGroup($name)
  449.     {
  450.         return in_array($name$this->getGroupNames());
  451.     }
  452.     /**
  453.      * {@inheritdoc}
  454.      */
  455.     public function addGroup(GroupInterface $group)
  456.     {
  457.         if (!$this->getGroups()->contains($group)) {
  458.             $this->getGroups()->add($group);
  459.         }
  460.         return $this;
  461.     }
  462.     /**
  463.      * {@inheritdoc}
  464.      */
  465.     public function removeGroup(GroupInterface $group)
  466.     {
  467.         if ($this->getGroups()->contains($group)) {
  468.             $this->getGroups()->removeElement($group);
  469.         }
  470.         return $this;
  471.     }
  472.     /**
  473.      * {@inheritdoc}
  474.      */
  475.     public function isEqualTo(BaseUserInterface $user)
  476.     {
  477.         if (!$user instanceof self) {
  478.             return false;
  479.         }
  480.         if ($this->password !== $user->getPassword()) {
  481.             return false;
  482.         }
  483.         if ($this->salt !== $user->getSalt()) {
  484.             return false;
  485.         }
  486.         if ($this->username !== $user->getUsername()) {
  487.             return false;
  488.         }
  489.         return true;
  490.     }
  491. }