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;
*/
protected $mail;
- /**
- * @var string
- */
- protected $pseudonym;
-
/**
* @var string
*/
/**
* Constructor
+ *
+ * @param string $mail The user mail
*/
- public function __construct() {
+ 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();
}
*
* @return User
*/
- public function setMail(string $mail) {
+ public function setMail(string $mail): User {
$this->mail = $mail;
return $this;
*
* @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) {
- $this->pseudonym = $pseudonym;
-
- return $this;
- }
-
- /**
- * Get pseudonym
- *
- * @return string
- */
- public function getPseudonym(): ?string {
- return $this->pseudonym;
- }
-
/**
* Set forename
*
*
* @return User
*/
- public function setForename(string $forename) {
+ public function setForename(string $forename): User {
$this->forename = $forename;
return $this;
*
* @return string
*/
- public function getForename(): ?string {
+ public function getForename(): string {
return $this->forename;
}
*
* @return User
*/
- public function setSurname(string $surname) {
+ public function setSurname(string $surname): User {
$this->surname = $surname;
return $this;
*
* @return string
*/
- public function getSurname(): ?string {
+ public function getSurname(): string {
return $this->surname;
}
*
* @return User
*/
- public function setPassword(string $password) {
+ public function setPassword(string $password): User {
$this->password = $password;
return $this;
*
* @return User
*/
- public function setActive(bool $active) {
+ public function setActive(bool $active): User {
$this->active = $active;
return $this;
*
* @return User
*/
- public function setDisabled(bool $disabled) {
+ public function setDisabled(bool $disabled): User {
$this->disabled = $disabled;
return $this;
*
* @return User
*/
- public function setCreated(\DateTime $created) {
+ public function setCreated(\DateTime $created): User {
$this->created = $created;
return $this;
*
* @return User
*/
- public function setUpdated(\DateTime $updated) {
+ public function setUpdated(\DateTime $updated): User {
$this->updated = $updated;
return $this;
/**
* Set civility
*/
- public function setCivility(Civility $civility) {
+ public function setCivility(Civility $civility): User {
$this->civility = $civility;
return $this;
*/
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,
]);
}
+ /**
+ * {@inheritdoc}
+ */
public function unserialize($serialized) {
list(
$this->id,
$this->mail,
+ $this->forename,
+ $this->surname,
$this->password,
$this->active,
$this->disabled,
/**
* {@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