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
use Rapsys\UserBundle\Entity\Group;
use Symfony\Component\Security\Core\User\UserInterface;
use Doctrine\Common\Collections\ArrayCollection;
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 {
/**
class User implements UserInterface, \Serializable {
/**
*/
public function __construct() {
$this->active = false;
*/
public function __construct() {
$this->active = false;
* @return string
*/
public function getPassword() {
* @return string
*/
public function getPassword() {
- public function setTitle($title) {
+ public function setTitle(Title $title) {
$this->title = $title;
return $this;
$this->title = $title;
return $this;
- public function getTitle() {
+ public function getTitle(): Title {
+ /**
+ * {@inheritdoc}
+ */
public function getRoles() {
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;
}
public function getSalt() {
//No salt required with bcrypt
return null;
}
+ /**
+ * {@inheritdoc}
+ */
public function getUsername() {
return $this->mail;
}
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
$this->id,
$this->mail,
$this->password,
$this->active,
$this->created,
$this->updated
}
public function unserialize($serialized) {
}
public function unserialize($serialized) {
public function isEnabled() {
return $this->active;
}
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;
+ }