]> Raphaël G. Git Repositories - userbundle/commitdiff
Add parameter and return types
authorRaphaël Gertz <git@rapsys.eu>
Wed, 11 Dec 2019 03:31:49 +0000 (04:31 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Wed, 11 Dec 2019 03:31:49 +0000 (04:31 +0100)
Cleanup
Fix getRoles method to return a smarter array
Add getRole method that return the role for group with highest id
Add __toString magic method that returns a user representation

Entity/User.php

index df88e5ce5e4e76f3b542892654c9f14c4ba74fd2..cca45c74c28998b4086c2190910e5666c5996025 100644 (file)
@@ -6,6 +6,7 @@ namespace Rapsys\UserBundle\Entity;
 use Rapsys\UserBundle\Entity\Group;
 use Symfony\Component\Security\Core\User\UserInterface;
 use Doctrine\Common\Collections\ArrayCollection;
+use Rapsys\UserBundle\Entity\Title;
 
 class User implements UserInterface, \Serializable {
        /**
@@ -64,7 +65,7 @@ class User implements UserInterface, \Serializable {
        protected $groups;
 
        /**
-        * User constructor.
+        * Constructor
         */
        public function __construct() {
                $this->active = false;
@@ -184,6 +185,8 @@ class User implements UserInterface, \Serializable {
        /**
         * Get password
         *
+        * {@inheritdoc}
+        *
         * @return string
         */
        public function getPassword() {
@@ -259,7 +262,7 @@ class User implements UserInterface, \Serializable {
        /**
         * Set title
         */
-       public function setTitle($title) {
+       public function setTitle(Title $title) {
                $this->title = $title;
 
                return $this;
@@ -268,7 +271,7 @@ class User implements UserInterface, \Serializable {
        /**
         * Get title
         */
-       public function getTitle() {
+       public function getTitle(): Title {
                return $this->title;
        }
 
@@ -303,37 +306,72 @@ class User implements UserInterface, \Serializable {
                return $this->groups;
        }
 
+       /**
+        * {@inheritdoc}
+        */
        public function getRoles() {
-               $roles = [ 'ROLE_USER' ];
-
-               foreach($this->groups->toArray() as $group) {
-                       $roles[] = $group->getRole();
-               }
+               //Get the unique roles list by id
+               return array_unique(array_reduce(
+                       //Cast groups as array
+                       $this->groups->toArray(),
+                       //Reduce to an array of id => group tuples
+                       function ($array, $group) {
+                               $array[$group->getId()] = $group->getRole();
+                               return $array;
+                       },
+                       //Init with ROLE_USER
+                       //XXX: we assume that ROLE_USER has id 1 in database
+                       [ 1 => 'ROLE_USER' ]
+               ));
+       }
 
-               return array_unique($roles);
+       public function getRole() {
+               //Retrieve roles
+               $roles = $this->getRoles();
+
+               //Return the role with max id
+               //XXX: should be rewriten if it change in your configuration
+               return $roles[array_reduce(
+                       array_keys($roles),
+                       function($cur, $id) {
+                               if ($id > $cur) {
+                                       return $id;
+                               }
+                               return $cur;
+                       },
+                       0
+               )];
        }
 
+       /**
+        * {@inheritdoc}
+        */
        public function getSalt() {
                //No salt required with bcrypt
                return null;
        }
 
+       /**
+        * {@inheritdoc}
+        */
        public function getUsername() {
                return $this->mail;
        }
 
-       public function eraseCredentials() {
-       }
+       /**
+        * {@inheritdoc}
+        */
+       public function eraseCredentials() {}
 
-       public function serialize() {
-               return serialize(array(
+       public function serialize(): string {
+               return serialize([
                        $this->id,
                        $this->mail,
                        $this->password,
                        $this->active,
                        $this->created,
                        $this->updated
-               ));
+               ]);
        }
 
        public function unserialize($serialized) {
@@ -351,4 +389,13 @@ class User implements UserInterface, \Serializable {
        public function isEnabled() {
                return $this->active;
        }
+
+       /**
+        * Returns a string representation of the user
+        *
+        * @return string
+        */
+       public function __toString(): string {
+               return $this->title.' '.$this->forename.' '.$this->surname;
+       }
 }