* @ORM\OneToMany(targetEntity="App\Entity\UserSystem\U2FKey", mappedBy="user", cascade={"REMOVE"}, orphanRemoval=true) */ protected $u2fKeys; /** * @var Currency|null The currency the user wants to see prices in. * Dont use fetch=EAGER here, this will cause problems with setting the currency setting. * TODO: This is most likely a bug in doctrine/symfony related to the UniqueEntity constraint (it makes a db call). * TODO: Find a way to use fetch EAGER (this improves performance a bit) * @ORM\ManyToOne(targetEntity="App\Entity\PriceInformations\Currency") * @ORM\JoinColumn(name="currency_id", referencedColumnName="id") * @Selectable() */ protected $currency = null; /** @var PermissionsEmbed * @ORM\Embedded(class="PermissionsEmbed", columnPrefix="perms_") * @ValidPermission() */ protected $permissions; /** * @var DateTime The time until the password reset token is valid. * @ORM\Column(type="datetime", nullable=true) */ protected $pw_reset_expires = null; public function __construct() { parent::__construct(); $this->permissions = new PermissionsEmbed(); $this->u2fKeys = new ArrayCollection(); } /** * Returns a string representation of this user (the full name). * E.g. 'Jane Doe (j.doe) [DISABLED]. * * @return string */ public function __toString() { $tmp = $this->isDisabled() ? ' [DISABLED]' : ''; return $this->getFullName(true).$tmp; } /** * Checks if the current user, is the user which represents the not logged in (anonymous) users. * * @return bool true if this user is the anonymous user */ public function isAnonymousUser(): bool { return $this->id === static::ID_ANONYMOUS && 'anonymous' === $this->name; } /** * A visual identifier that represents this user. * * @see UserInterface */ public function getUsername(): string { return (string) $this->name; } /** * @see UserInterface */ public function getRoles(): array { $roles = []; //$roles = $this->roles; // guarantee every user at least has ROLE_USER $roles[] = 'ROLE_USER'; return array_unique($roles); } public function setRoles(array $roles): self { //$this->roles = $roles; return $this; } /** * @see UserInterface * Gets the password hash for this entity. */ public function getPassword(): string { return (string) $this->password; } /** * Sets the password hash for this user. * * @return User */ public function setPassword(string $password): self { $this->password = $password; return $this; } /** * @see UserInterface */ public function getSalt(): void { // not needed when using the "bcrypt" algorithm in security.yaml } /** * @see UserInterface */ public function eraseCredentials(): void { // If you store any temporary, sensitive data on the user, clear it here // $this->plainPassword = null; } /** * Gets the currency the user prefers when showing him prices. * * @return Currency|null The currency the user prefers, or null if the global currency should be used. */ public function getCurrency(): ?Currency { return $this->currency; } /** * Sets the currency the users prefers to see prices in. * * @return User */ public function setCurrency(?Currency $currency): self { $this->currency = $currency; return $this; } /** * Checks if this user is disabled (user cannot login any more). * * @return bool True, if the user is disabled. */ public function isDisabled(): bool { return $this->disabled; } /** * Sets the status if a user is disabled. * * @param bool $disabled True if the user should be disabled. * * @return User */ public function setDisabled(bool $disabled): self { $this->disabled = $disabled; return $this; } /** * Returns the ID as an string, defined by the element class. * This should have a form like P000014, for a part with ID 14. * * @return string The ID as a string; */ public function getIDString(): string { return 'U'.sprintf('%06d', $this->getID()); } public function getPermissions(): PermissionsEmbed { return $this->permissions; } /** * Check if the user needs a password change. * * @return bool */ public function isNeedPwChange(): bool { return $this->need_pw_change; } /** * Set the status, if the user needs a password change. * * @return User */ public function setNeedPwChange(bool $need_pw_change): self { $this->need_pw_change = $need_pw_change; return $this; } /** * Returns the encrypted password reset token. * * @return string|null */ public function getPwResetToken(): ?string { return $this->pw_reset_token; } /** * Sets the encrypted password reset token. * * @return User */ public function setPwResetToken(?string $pw_reset_token): self { $this->pw_reset_token = $pw_reset_token; return $this; } /** * Gets the datetime when the password reset token expires. * * @return DateTime */ public function getPwResetExpires(): DateTime { return $this->pw_reset_expires; } /** * Sets the datetime when the password reset token expires. * * @return User */ public function setPwResetExpires(DateTime $pw_reset_expires): self { $this->pw_reset_expires = $pw_reset_expires; return $this; } /************************************************ * Getters ************************************************/ /** * Returns the full name in the format FIRSTNAME LASTNAME [(USERNAME)]. * Example: Max Muster (m.muster). * * @param bool $including_username include the username in the full name * * @return string a string with the full name of this user */ public function getFullName(bool $including_username = false): string { if ($including_username) { return sprintf('%s %s (%s)', $this->getFirstName(), $this->getLastName(), $this->getName()); } return sprintf('%s %s', $this->getFirstName(), $this->getLastName()); } /** * Change the username of this user. * * @param string $new_name The new username. * * @return $this */ public function setName(string $new_name): NamedDBElement { // Anonymous user is not allowed to change its username if (! $this->isAnonymousUser()) { $this->name = $new_name; } return $this; } /** * Get the first name of the user. * * @return string|null */ public function getFirstName(): ?string { return $this->first_name; } /** * Change the first name of the user. * * @param string $first_name The new first name * * @return $this */ public function setFirstName(?string $first_name): self { $this->first_name = $first_name; return $this; } /** * Get the last name of the user. * * @return string|null */ public function getLastName(): ?string { return $this->last_name; } /** * Change the last name of the user. * * @param string $last_name The new last name * * @return $this */ public function setLastName(?string $last_name): self { $this->last_name = $last_name; return $this; } /** * Gets the department of this user. * * @return string */ public function getDepartment(): ?string { return $this->department; } /** * Change the department of the user. * * @param string $department The new department * * @return User */ public function setDepartment(?string $department): self { $this->department = $department; return $this; } /** * Get the email of the user. * * @return string */ public function getEmail(): ?string { return $this->email; } /** * Change the email of the user. * * @param string $email The new email adress * * @return $this */ public function setEmail(?string $email): self { $this->email = $email; return $this; } /** * Gets the language the user prefers (as 2 letter ISO code). * * @return string|null The 2 letter ISO code of the preferred language (e.g. 'en' or 'de'). * If null is returned, the user has not specified a language and the server wide language should be used. */ public function getLanguage(): ?string { return $this->language; } /** * Change the language the user prefers. * * @param string|null $language The new language as 2 letter ISO code (e.g. 'en' or 'de'). * Set to null, to use the system wide language. * * @return User */ public function setLanguage(?string $language): self { $this->language = $language; return $this; } /** * Gets the timezone of the user. * * @return string|null The timezone of the user (e.g. 'Europe/Berlin') or null if the user has not specified * a timezone (then the global one should be used) */ public function getTimezone(): ?string { return $this->timezone; } /** * Change the timezone of this user. * * @return $this */ public function setTimezone(?string $timezone): self { $this->timezone = $timezone; return $this; } /** * Gets the theme the users wants to see. See self::AVAILABLE_THEMES for valid values. * * @return string|null The name of the theme the user wants to see, or null if the system wide should be used. */ public function getTheme(): ?string { return $this->theme; } /** * Change the theme the user wants to see. * * @param string|null $theme The name of the theme (See See self::AVAILABLE_THEMES for valid values). Set to null * if the system wide theme should be used. * * @return $this */ public function setTheme(?string $theme): self { $this->theme = $theme; return $this; } /** * Gets the group to which this user belongs to. * * @return Group|null The group of this user. Null if this user does not have a group. */ public function getGroup(): ?Group { return $this->group; } /** * Sets the group of this user. * * @param Group|null $group The new group of this user. Set to null if this user should not have a group. * * @return $this */ public function setGroup(?Group $group): self { $this->group = $group; return $this; } /** * Return true if the user should do two-factor authentication. * * @return bool */ public function isGoogleAuthenticatorEnabled(): bool { return $this->googleAuthenticatorSecret ? true : false; } /** * Return the user name that should be shown in Google Authenticator. * * @return string */ public function getGoogleAuthenticatorUsername(): string { return $this->getUsername(); } /** * Return the Google Authenticator secret * When an empty string is returned, the Google authentication is disabled. * * @return string|null */ public function getGoogleAuthenticatorSecret(): ?string { return $this->googleAuthenticatorSecret; } /** * Sets the secret used for Google Authenticator. Set to null to disable Google Authenticator. * * @return $this */ public function setGoogleAuthenticatorSecret(?string $googleAuthenticatorSecret): self { $this->googleAuthenticatorSecret = $googleAuthenticatorSecret; return $this; } /** * Check if the given code is a valid backup code. * * @param string $code The code that should be checked. * * @return bool True if the backup code is valid. */ public function isBackupCode(string $code): bool { return in_array($code, $this->backupCodes, true); } /** * Invalidate a backup code. * * @param string $code The code that should be invalidated */ public function invalidateBackupCode(string $code): void { $key = array_search($code, $this->backupCodes, true); if (false !== $key) { unset($this->backupCodes[$key]); } } /** * Returns the list of all valid backup codes. * * @return string[] An array with all backup codes */ public function getBackupCodes(): array { return $this->backupCodes ?? []; } /** * Set the backup codes for this user. Existing backup codes are overridden. * * @param string[] $codes An array containing the backup codes * * @return $this * * @throws Exception If an error with the datetime occurs */ public function setBackupCodes(array $codes): self { $this->backupCodes = $codes; if (empty($codes)) { $this->backupCodesGenerationDate = null; } else { $this->backupCodesGenerationDate = new DateTime(); } return $this; } /** * Return the date when the backup codes were generated. * * @return DateTime|null */ public function getBackupCodesGenerationDate(): ?DateTime { return $this->backupCodesGenerationDate; } /** * Return version for the trusted device token. Increase version to invalidate all trusted token of the user. * * @return int The version of trusted device token */ public function getTrustedTokenVersion(): int { return $this->trustedDeviceCookieVersion; } /** * Invalidate all trusted device tokens at once, by incrementing the token version. * You have to flush the changes to database afterwards. */ public function invalidateTrustedDeviceTokens(): void { ++$this->trustedDeviceCookieVersion; } /** * Check if U2F is enabled. * * @return bool */ public function isU2FAuthEnabled(): bool { return count($this->u2fKeys) > 0; } /** * Get all U2F Keys that are associated with this user. * * @return Collection */ public function getU2FKeys(): Collection { return $this->u2fKeys; } /** * Add a U2F key to this user. */ public function addU2FKey(TwoFactorKeyInterface $key): void { $this->u2fKeys->add($key); } /** * Remove a U2F key from this user. */ public function removeU2FKey(TwoFactorKeyInterface $key): void { $this->u2fKeys->removeElement($key); } public function getPreferredTwoFactorProvider(): ?string { //If U2F is available then prefer it if ($this->isU2FAuthEnabled()) { return 'u2f_two_factor'; } //Otherwise use other methods return null; } }