X-Git-Url: https://git.rapsys.eu/userbundle/blobdiff_plain/c10ada0bebaf63162b0db1866f643984bdadbb30..0929c559670ac8d386a047789712e6164a640326:/Entity/User.php?ds=sidebyside diff --git a/Entity/User.php b/Entity/User.php index 549b176..cd32f1e 100644 --- a/Entity/User.php +++ b/Entity/User.php @@ -12,6 +12,7 @@ namespace Rapsys\UserBundle\Entity; use Doctrine\Common\Collections\ArrayCollection; +use Doctrine\ORM\Event\PreUpdateEventArgs; use Symfony\Component\Security\Core\User\UserInterface; use Rapsys\UserBundle\Entity\Civility; @@ -31,11 +32,6 @@ class User implements UserInterface, \Serializable { */ protected $mail; - /** - * @var string - */ - protected $pseudonym; - /** * @var string */ @@ -87,9 +83,20 @@ class User implements UserInterface, \Serializable { * @param string $mail The user mail */ public function __construct(string $mail) { + //Extract names from mail + $names = explode(' ', ucwords(trim(preg_replace('/[^a-zA-Z]+/', ' ', current(explode('@', $mail)))))); + + //Set defaults $this->mail = $mail; + $this->forename = $names[0]; + $this->surname = $names[1]??$names[0]; + $this->password = $mail; $this->active = false; $this->disabled = false; + $this->created = new \DateTime('now'); + $this->updated = new \DateTime('now'); + + //Set collections $this->groups = new ArrayCollection(); } @@ -120,32 +127,10 @@ class User implements UserInterface, \Serializable { * * @return string */ - public function getMail(): ?string { + public function getMail(): string { return $this->mail; } - /** - * Set pseudonym - * - * @param string $pseudonym - * - * @return User - */ - public function setPseudonym(string $pseudonym): User { - $this->pseudonym = $pseudonym; - - return $this; - } - - /** - * Get pseudonym - * - * @return string - */ - public function getPseudonym(): ?string { - return $this->pseudonym; - } - /** * Set forename * @@ -164,7 +149,7 @@ class User implements UserInterface, \Serializable { * * @return string */ - public function getForename(): ?string { + public function getForename(): string { return $this->forename; } @@ -186,7 +171,7 @@ class User implements UserInterface, \Serializable { * * @return string */ - public function getSurname(): ?string { + public function getSurname(): string { return $this->surname; } @@ -416,10 +401,15 @@ class User implements UserInterface, \Serializable { */ public function eraseCredentials(): void {} + /** + * {@inheritdoc} + */ public function serialize(): string { return serialize([ $this->id, $this->mail, + $this->forename, + $this->surname, $this->password, $this->active, $this->disabled, @@ -428,10 +418,15 @@ class User implements UserInterface, \Serializable { ]); } + /** + * {@inheritdoc} + */ public function unserialize($serialized) { list( $this->id, $this->mail, + $this->forename, + $this->surname, $this->password, $this->active, $this->disabled, @@ -465,7 +460,7 @@ class User implements UserInterface, \Serializable { /** * {@inheritdoc} */ - public function preUpdate(\Doctrine\ORM\Event\PreUpdateEventArgs $eventArgs) { + public function preUpdate(PreUpdateEventArgs $eventArgs) { //Check that we have an user instance if (($user = $eventArgs->getEntity()) instanceof User) { //Set updated value