<?php
// src/AppBundle/Entity/User.php
namespace App\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use FOS\UserBundle\Model\User as BaseUser;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\HttpFoundation\File\File;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
/**
* @ORM\Entity
* @ORM\Table(name="fos_user", uniqueConstraints={@ORM\UniqueConstraint(name="user_code_idx", columns={"code"})})
* @ORM\HasLifecycleCallbacks
* @UniqueEntity(fields="usernameCanonical", errorPath="username", message="fos_user.username.already_used")
* @ORM\AttributeOverrides({
* @ORM\AttributeOverride(name="email", column=@ORM\Column(type="string", name="email", length=255, unique=false, nullable=true)),
* @ORM\AttributeOverride(name="emailCanonical", column=@ORM\Column(type="string", name="email_canonical", length=255, unique=false, nullable=true))
* })
*/
class User extends BaseUser
{
use \Knp\DoctrineBehaviors\Model\Blameable\Blameable;
use \Knp\DoctrineBehaviors\Model\Timestampable\Timestampable;
const TYPE_WORKER = 1;
const TYPE_CUSTOMER = 0;
const ROLE_ADMIN = 'ROLE_ADMIN';
const ROLE_CUSTOMER = 'ROLE_CUSTOMER';
const ROLE_CUSTOMER_UNREGISTERED = 'ROLE_CUSTOMER_UNREGISTERED';
const ROLE_CUSTOMER_REGISTERED = 'ROLE_CUSTOMER_REGISTERED';
/**
* @ORM\Id
* @ORM\Column(type="integer")
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
public function __construct()
{
parent::__construct();
$this->comments = new ArrayCollection();
$this->notifications = new ArrayCollection();
$this->manageLanguages = new ArrayCollection();
// your own logic
$this->orders = new ArrayCollection();
}
public function getFullName()
{
return $this->firstname.' '.$this->surname;
}
public function isAdmin()
{
return $this->userGroup && $this->userGroup->getId() === 2 ? true : false;
}
/**
* Generate $length random code
* @param int $length (number of chars
* @return string
*/
public function generateCode($length) {
$code = md5(uniqid(rand(), true));
$kod = substr($code, 0, $length);
return $kod;
}
/**
* @var string
*
* @ORM\Column(name="code", type="string", length=255, nullable=true)
*/
private $code;
/**
* @var string
*
* @ORM\Column(name="login", type="string", length=255, nullable=true)
*/
private $login;
/**
* @var string
*
* @ORM\Column(name="firstname", type="string", length=255, nullable=true)
*/
private $firstname;
/**
* @var string
*
* @ORM\Column(name="phone", type="string", length=255, nullable=true)
*/
private $phone;
/**
* @var string
*
* @ORM\Column(name="first_login", type="integer", length=1, nullable=true, options={"default" = 1})
*/
private $firstLogin = 1;
/**
* @var string
*
* @ORM\Column(name="profile_picture", type="string", length=255, nullable=true)
*/
private $profilePicture;
/**
* @var string
*
* @ORM\Column(name="fb_token", type="string", length=255, nullable=true)
*/
private $fbToken;
/**
* @var string
*
* @ORM\Column(name="fb_name", type="string", length=255, nullable=true)
*/
private $fbName;
/**
* @var string
*
* @ORM\Column(name="fb_id", type="string", length=255, nullable=true)
*/
private $fbId;
/**
* @var string
*
* @ORM\Column(name="surname", type="string", length=255, nullable=true)
*/
private $surname;
/**
* @var string
*
* @ORM\Column(name="street_housenum", type="string", length=255, nullable=true)
*/
protected $streetHousenum;
/**
* @ORM\OneToMany(targetEntity="App\Entity\ProductComment", mappedBy="user", cascade={"all"})
*/
protected $comments;
/**
* @ORM\OneToMany(targetEntity="App\Entity\Order", mappedBy="user", cascade={"all"})
*/
protected $orders;
/**
* @ORM\OneToMany(targetEntity="App\Entity\Notification", mappedBy="user", cascade={"all"})
*/
protected $notifications;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Address", cascade={"all"})
* @ORM\JoinColumn(name="address_id", referencedColumnName="id", onDelete="CASCADE")
*/
protected $address;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Address", cascade={"all"})
* @ORM\JoinColumn(name="invoice_address_id", referencedColumnName="id", onDelete="CASCADE")
*/
protected $invoiceAddress;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Address", cascade={"all"})
* @ORM\JoinColumn(name="default_address_id", referencedColumnName="id", onDelete="CASCADE")
*/
protected $defaultAddress;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Address", cascade={"all"})
* @ORM\JoinColumn(name="default_invoice_address_id", referencedColumnName="id", onDelete="CASCADE")
*/
protected $defaultInvoiceAddress;
/**
* @Doctrine\ORM\Mapping\ManyToOne(targetEntity="App\Entity\Language")
* @Doctrine\ORM\Mapping\JoinColumn(name="lang_id", referencedColumnName="id")
*/
protected $language;
/**
* Pracownik obsługujący sklep czy klient w sklepie internetowym?
* @Doctrine\ORM\Mapping\Column(name="user_type", type="boolean", options={"default"=0}, nullable=true)
*/
protected $type;
/**
* @Doctrine\ORM\Mapping\Column(name="registered", type="boolean", options={"default"=0}, nullable=true)
*/
protected $registered;
/**
* @Doctrine\ORM\Mapping\Column(name="different_invoice_address", type="boolean", options={"default"=0}, nullable=true)
*/
protected $differentInvoiceAddress;
/**
* @Doctrine\ORM\Mapping\Column(name="different_delivery_address", type="boolean", options={"default"=0}, nullable=true)
*/
protected $differentDeliveryAddress;
/**
* @Doctrine\ORM\Mapping\Column(name="term_condition_agree", type="boolean", options={"default"=0}, nullable=true)
*/
protected $termConditionAgree;
/**
* @Doctrine\ORM\Mapping\Column(name="opinion_agree", type="boolean", options={"default"=0}, nullable=true)
*/
protected $opinionAgree;
/**
* @Doctrine\ORM\Mapping\Column(name="marketing_agree", type="boolean", options={"default"=0}, nullable=true)
*/
protected $marketingAgree;
/**
* @Doctrine\ORM\Mapping\Column(name="agree_all_select", type="boolean", options={"default"=0}, nullable=true)
*/
protected $agreeAllSelect;
/**
* @var string
*
* @ORM\Column(name="street", type="string", length=255, nullable=true)
*/
protected $street;
/**
* @var string
*
* @ORM\Column(name="citycode", type="string", length=255, nullable=true)
*/
protected $citycode;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Country")
* @ORM\JoinColumn(name="country_id", referencedColumnName="id")
*/
protected $country;
/**
* @var string
*
* @ORM\Column(name="city", type="string", length=255, nullable=true)
*/
protected $city;
/**
* @Doctrine\ORM\Mapping\ManyToOne(targetEntity="App\Entity\UserGroup", inversedBy="users")
* @Doctrine\ORM\Mapping\JoinColumn(name="userGroup", referencedColumnName="id")
*/
protected $userGroup;
/**
* Wersje językowe, którymi może zarządzać
* @Doctrine\ORM\Mapping\ManyToMany(targetEntity="App\Entity\Language")
* @Doctrine\ORM\Mapping\JoinTable(name="user_managed_languages",
* joinColumns={@Doctrine\ORM\Mapping\JoinColumn(name="user_id", referencedColumnName="id")},
* inverseJoinColumns={@Doctrine\ORM\Mapping\JoinColumn(name="language_id", referencedColumnName="id")}
* )
**/
protected $manageLanguages;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\RoJudet")
*/
private $roJudet;
/**
* Kiedy ostatni raz było zmieniane hasło
* @Doctrine\ORM\Mapping\Column(type="datetime", nullable=true)
*/
protected $passwordChangedAt;
/**
* Wysłanie e-maila potwierdzającego założenie konta
* @Doctrine\ORM\Mapping\Column(type="datetime", nullable=true)
*/
protected $confirmationEmailAt;
/**
* @var string
*
* @ORM\Column(name="register_confirmation_token", type="string", length=255, nullable=true)
*/
protected $registerConfirmationToken;
/**
* @Doctrine\ORM\Mapping\Column(name="confirmed", type="boolean", nullable=true, options={"default" = 0})
*/
protected $confirmed = false;
/**
* @Doctrine\ORM\Mapping\Column(name="consent_feedback", type="boolean", nullable=true)
*/
protected $consentFeedback = false;
/**
* @return bool
*/
public function isConsentFeedback(): bool
{
return $this->consentFeedback;
}
/**
* @param bool $consentFeedback
*/
public function setConsentFeedback(bool $consentFeedback)
{
$this->consentFeedback = $consentFeedback;
}
/**
* Set code
*
* @param string $code
*
* @return User
*/
public function setCode($code)
{
$this->code = $code;
return $this;
}
/**
* Get code
*
* @return string
*/
public function getCode()
{
return $this->code;
}
/**
* Set login
*
* @param string $login
*
* @return User
*/
public function setLogin($login)
{
$this->login = $login;
return $this;
}
/**
* Get login
*
* @return string
*/
public function getLogin()
{
return $this->login;
}
/**
* Set firstname
*
* @param string $firstname
*
* @return User
*/
public function setFirstname($firstname)
{
$this->firstname = $firstname;
return $this;
}
/**
* Get firstname
*
* @return string
*/
public function getFirstname()
{
return $this->firstname;
}
/**
* Set firstLogin
*
* @param integer $firstLogin
*
* @return User
*/
public function setFirstLogin($firstLogin)
{
$this->firstLogin = $firstLogin;
return $this;
}
/**
* Get firstLogin
*
* @return integer
*/
public function getFirstLogin()
{
return $this->firstLogin;
}
/**
* Set profilePicture
*
* @param string $profilePicture
*
* @return User
*/
public function setProfilePicture($profilePicture)
{
$this->profilePicture = $profilePicture;
return $this;
}
/**
* Get profilePicture
*
* @return string
*/
public function getProfilePicture()
{
return $this->profilePicture;
}
/**
* Set fbToken
*
* @param string $fbToken
*
* @return User
*/
public function setFbToken($fbToken)
{
$this->fbToken = $fbToken;
return $this;
}
/**
* Get fbToken
*
* @return string
*/
public function getFbToken()
{
return $this->fbToken;
}
/**
* Set fbName
*
* @param string $fbName
*
* @return User
*/
public function setFbName($fbName)
{
$this->fbName = $fbName;
return $this;
}
/**
* Get fbName
*
* @return string
*/
public function getFbName()
{
return $this->fbName;
}
/**
* Set fbId
*
* @param string $fbId
*
* @return User
*/
public function setFbId($fbId)
{
$this->fbId = $fbId;
return $this;
}
/**
* Get fbId
*
* @return string
*/
public function getFbId()
{
return $this->fbId;
}
/**
* Set surname
*
* @param string $surname
*
* @return User
*/
public function setSurname($surname)
{
$this->surname = $surname;
return $this;
}
/**
* Get surname
*
* @return string
*/
public function getSurname()
{
return $this->surname;
}
/**
* Add comment
*
* @param \App\Entity\ProductComment $comment
*
* @return User
*/
public function addComment(\App\Entity\ProductComment $comment)
{
$this->comments[] = $comment;
return $this;
}
/**
* Remove comment
*
* @param \App\Entity\ProductComment $comment
*/
public function removeComment(\App\Entity\ProductComment $comment)
{
$this->comments->removeElement($comment);
}
/**
* Get comments
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getComments()
{
return $this->comments;
}
/**
* Add notification
*
* @param \App\Entity\Notification $notification
*
* @return User
*/
public function addNotification(\App\Entity\Notification $notification)
{
$this->notifications[] = $notification;
return $this;
}
/**
* Remove notification
*
* @param \App\Entity\Notification $notification
*/
public function removeNotification(\App\Entity\Notification $notification)
{
$this->notifications->removeElement($notification);
}
/**
* Get notifications
*
* @return \Doctrine\Common\Collections\Collection
*/
public function getNotifications()
{
return $this->notifications;
}
/**
* Set address
*
* @param \App\Entity\Address $address
*
* @return User
*/
public function setAddress(\App\Entity\Address $address = null)
{
$this->address = $address;
return $this;
}
/**
* Get address
*
* @return \App\Entity\Address
*/
public function getAddress()
{
return $this->address;
}
/**
* Set language
*
* @param \App\Entity\Language $language
*
* @return User
*/
public function setLanguage(\App\Entity\Language $language = null)
{
$this->language = $language;
return $this;
}
/**
* Get language
*
* @return \App\Entity\Language
*/
public function getLanguage()
{
return $this->language;
}
/**
* Set phone
*
* @param string $phone
*
* @return User
*/
public function setPhone($phone)
{
$this->phone = $phone;
return $this;
}
/**
* Get phone
*
* @return string
*/
public function getPhone()
{
return $this->phone;
}
/**
* Set differentInvoiceAddress
*
* @param boolean $differentInvoiceAddress
*
* @return User
*/
public function setDifferentInvoiceAddress($differentInvoiceAddress)
{
$this->differentInvoiceAddress = $differentInvoiceAddress;
return $this;
}
/**
* Get differentInvoiceAddress
*
* @return boolean
*/
public function getDifferentInvoiceAddress()
{
return $this->differentInvoiceAddress;
}
/**
* Set invoiceAddress
*
* @param \App\Entity\Address $invoiceAddress
*
* @return User
*/
public function setInvoiceAddress(\App\Entity\Address $invoiceAddress = null)
{
$this->invoiceAddress = $invoiceAddress;
return $this;
}
/**
* Get invoiceAddress
*
* @return \App\Entity\Address
*/
public function getInvoiceAddress()
{
return $this->invoiceAddress;
}
/**
* Set differentDeliveryAddress
*
* @param boolean $differentDeliveryAddress
*
* @return User
*/
public function setDifferentDeliveryAddress($differentDeliveryAddress)
{
$this->differentDeliveryAddress = $differentDeliveryAddress;
return $this;
}
/**
* Get differentDeliveryAddress
*
* @return boolean
*/
public function getDifferentDeliveryAddress()
{
return $this->differentDeliveryAddress;
}
/**
* Set street
*
* @param string $street
*
* @return User
*/
public function setStreet($street)
{
$this->street = $street;
return $this;
}
/**
* Get street
*
* @return string
*/
public function getStreet()
{
return $this->street;
}
/**
* Set citycode
*
* @param string $citycode
*
* @return User
*/
public function setCitycode($citycode)
{
$this->citycode = $citycode;
return $this;
}
/**
* Get citycode
*
* @return string
*/
public function getCitycode()
{
return $this->citycode;
}
/**
* Set city
*
* @param string $city
*
* @return User
*/
public function setCity($city)
{
$this->city = $city;
return $this;
}
/**
* Get city
*
* @return string
*/
public function getCity()
{
return $this->city;
}
/**
* Set country
*
* @param \App\Entity\Country $country
*
* @return User
*/
public function setCountry(\App\Entity\Country $country = null)
{
$this->country = $country;
return $this;
}
/**
* Get country
*
* @return \App\Entity\Country
*/
public function getCountry()
{
return $this->country;
}
/**
* Set streetHousenum
*
* @param string $streetHousenum
*
* @return User
*/
public function setStreetHousenum($streetHousenum)
{
$this->streetHousenum = $streetHousenum;
return $this;
}
/**
* Get streetHousenum
*
* @return string
*/
public function getStreetHousenum()
{
return $this->streetHousenum;
}
/**
* Set termConditionAgree
*
* @param boolean $termConditionAgree
*
* @return User
*/
public function setTermConditionAgree($termConditionAgree)
{
$this->termConditionAgree = $termConditionAgree;
return $this;
}
/**
* Get termConditionAgree
*
* @return boolean
*/
public function getTermConditionAgree()
{
return $this->termConditionAgree;
}
/**
* Set opinionAgree
*
* @param boolean $opinionAgree
*
* @return User
*/
public function setOpinionAgree($opinionAgree)
{
$this->opinionAgree = $opinionAgree;
return $this;
}
/**
* Get opinionAgree
*
* @return boolean
*/
public function getOpinionAgree()
{
return $this->opinionAgree;
}
/**
* Set marketingAgree
*
* @param boolean $marketingAgree
*
* @return User
*/
public function setMarketingAgree($marketingAgree)
{
$this->marketingAgree = $marketingAgree;
return $this;
}
/**
* Get marketingAgree
*
* @return boolean
*/
public function getMarketingAgree()
{
return $this->marketingAgree;
}
/**
* Set agreeAllSelect
*
* @param boolean $agreeAllSelect
*
* @return User
*/
public function setAgreeAllSelect($agreeAllSelect)
{
$this->agreeAllSelect = $agreeAllSelect;
return $this;
}
/**
* Get agreeAllSelect
*
* @return boolean
*/
public function getAgreeAllSelect()
{
return $this->agreeAllSelect;
}
/**
* Get enabled
*
* @return boolean
*/
public function getEnabled()
{
return $this->enabled;
}
/**
* Set registered
*
* @param boolean $registered
*
* @return User
*/
public function setRegistered($registered)
{
$this->registered = $registered;
return $this;
}
/**
* Get registered
*
* @return boolean
*/
public function getRegistered()
{
return $this->registered;
}
public function getId(): ?int
{
return $this->id;
}
public function getType(): ?bool
{
return $this->type;
}
public function setType(?bool $type): self
{
$this->type = $type;
return $this;
}
public function getUserGroup(): ?UserGroup
{
return $this->userGroup;
}
public function setUserGroup(?UserGroup $userGroup): self
{
$this->userGroup = $userGroup;
return $this;
}
public function getManageLanguagesIds() {
$ids = [];
foreach ($this->getManageLanguages() as $manageLanguage) {
$ids[] = $manageLanguage->getId();
}
return $ids;
}
public function getManageLanguagesLocales() {
$ids = [];
foreach ($this->getManageLanguages() as $manageLanguage) {
$ids[] = $manageLanguage->getLocale();
}
return $ids;
}
/**
* @return Collection|Language[]
*/
public function getManageLanguages(): Collection
{
return $this->manageLanguages;
}
public function addManageLanguage(Language $manageLanguage): self
{
if (!$this->manageLanguages->contains($manageLanguage)) {
$this->manageLanguages[] = $manageLanguage;
}
return $this;
}
public function removeManageLanguage(Language $manageLanguage): self
{
if ($this->manageLanguages->contains($manageLanguage)) {
$this->manageLanguages->removeElement($manageLanguage);
}
return $this;
}
/**
* Set roJudet
*
* @param \App\Entity\RoJudet $roJudet
*
* @return User
*/
public function setRoJudet(\App\Entity\RoJudet $roJudet = null)
{
$this->roJudet = $roJudet;
return $this;
}
/**
* Get roJudet
*
* @return \App\Entity\RoJudet
*/
public function getRoJudet()
{
return $this->roJudet;
}
/**
* @return mixed
*/
public function getPasswordChangedAt()
{
return $this->passwordChangedAt;
}
/**
* @param mixed $passwordChangedAt
*/
public function setPasswordChangedAt($passwordChangedAt)
{
$this->passwordChangedAt = $passwordChangedAt;
}
public function getConsentFeedback(): ?bool
{
return $this->consentFeedback;
}
public function getDefaultAddress(): ?Address
{
return $this->defaultAddress;
}
public function setDefaultAddress(?Address $defaultAddress): self
{
$this->defaultAddress = $defaultAddress;
return $this;
}
public function getDefaultInvoiceAddress(): ?Address
{
return $this->defaultInvoiceAddress;
}
public function setDefaultInvoiceAddress(?Address $defaultInvoiceAddress): self
{
$this->defaultInvoiceAddress = $defaultInvoiceAddress;
return $this;
}
/**
* @return mixed
*/
public function getConfirmationEmailAt()
{
return $this->confirmationEmailAt;
}
/**
* @param mixed $confirmationEmailAt
*/
public function setConfirmationEmailAt($confirmationEmailAt)
{
$this->confirmationEmailAt = $confirmationEmailAt;
}
/**
* @return bool
*/
public function isConfirmed()
{
return $this->confirmed;
}
/**
* @param bool $confirmed
*/
public function setConfirmed($confirmed)
{
$this->confirmed = $confirmed;
}
/**
* @return string
*/
public function getRegisterConfirmationToken()
{
return $this->registerConfirmationToken;
}
/**
* @param string $registerConfirmationToken
*/
public function setRegisterConfirmationToken($registerConfirmationToken)
{
$this->registerConfirmationToken = $registerConfirmationToken;
}
public function getConfirmed(): ?bool
{
return $this->confirmed;
}
/**
* @return Collection|Order[]
*/
public function getOrders(): Collection
{
return $this->orders;
}
public function addOrder(Order $order): self
{
if (!$this->orders->contains($order)) {
$this->orders[] = $order;
$order->setUser($this);
}
return $this;
}
public function removeOrder(Order $order): self
{
if ($this->orders->removeElement($order)) {
// set the owning side to null (unless already changed)
if ($order->getUser() === $this) {
$order->setUser(null);
}
}
return $this;
}
public function ordersCount() {
$c = 0;
/** @var $order Order */
foreach ($this->getOrders() as $order) {
if ($order->getStatus() && $order->getStatus()->getId() != 1) {
$c = $c + 1;
}
}
return $c;
}
public function ordersValue() {
$c = 0;
/** @var $order Order */
foreach ($this->getOrders() as $order) {
if ($order->getStatus() && $order->getStatus()->getId() != 1) {
$c = $c + $order->getTotalCostBrutto();
}
}
return $c;
}
}