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

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