<?php
namespace App\Entity;
use ApiPlatform\Metadata\ApiResource;
use ApiPlatform\Metadata\GET;
use ApiPlatform\Metadata\Post;
use ApiPlatform\Metadata\Put;
use App\Model\EntityTime;
use App\Repository\ProspectRepository;
use App\State\ProspectPostProcessor;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
#[ApiResource(
operations: [
new Post(processor: ProspectPostProcessor::class),
new Get(),
new Put()
],
normalizationContext: ['groups' => ['identifier:read', 'prospect:read']],
denormalizationContext: ['groups' => ['prospect:write']]
)]
#[ORM\Entity(repositoryClass: ProspectRepository::class)]
class Prospect extends EntityTime
{
#[ORM\Column(length: 60)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $firstName = null;
#[ORM\Column(length: 60)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $lastName = null;
#[ORM\Column(length: 100, nullable: true)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $companyName = null;
#[ORM\Column(length: 100, nullable: true)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $jobTitle = null; // not used
#[ORM\Column(length: 255, nullable: true)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $address = null; // not used
#[ORM\Column(length: 30, nullable: true)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $postalCode = null;
#[ORM\Column(length: 40, nullable: true)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $city = null;
#[ORM\Column(length: 40, nullable: true)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $country = null;
#[ORM\Column(length: 30, nullable: true)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $phone = null;
#[ORM\Column(length: 100)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $email = null;
#[ORM\Column]
#[Groups(['prospect:read', 'prospect:write'])]
private ?bool $isCustomer = false;
#[ORM\OneToOne(mappedBy: 'prospect', cascade: ['persist', 'remove'])]
#[Groups(['prospect:write'])]
private ?Configuration $configuration = null;
#[ORM\Column(type: Types::TEXT, nullable: true)]
#[Groups(['prospect:read', 'prospect:write'])]
private ?string $message = null; // not used
#[ORM\ManyToOne]
private ?ActivityArea $activityArea = null; // not used
public function getFirstName(): ?string
{
return $this->firstName;
}
public function setFirstName(string $firstName): self
{
$this->firstName = $firstName;
return $this;
}
public function getLastName(): ?string
{
return $this->lastName;
}
public function setLastName(string $lastName): self
{
$this->lastName = $lastName;
return $this;
}
public function getCompanyName(): ?string
{
return $this->companyName;
}
public function setCompanyName(?string $companyName): self
{
$this->companyName = $companyName;
return $this;
}
public function getJobTitle(): ?string
{
return $this->jobTitle;
}
public function setJobTitle(?string $jobTitle): self
{
$this->jobTitle = $jobTitle;
return $this;
}
public function getAddress(): ?string
{
return $this->address;
}
public function setAddress(?string $address): self
{
$this->address = $address;
return $this;
}
public function getPostalCode(): ?string
{
return $this->postalCode;
}
public function setPostalCode(?string $postalCode): self
{
$this->postalCode = $postalCode;
return $this;
}
public function getCity(): ?string
{
return $this->city;
}
public function setCity(?string $city): self
{
$this->city = $city;
return $this;
}
public function getCountry(): ?string
{
return $this->country;
}
public function setCountry(?string $country): self
{
$this->country = $country;
return $this;
}
public function getPhone(): ?string
{
return $this->phone;
}
public function setPhone(?string $phone): self
{
$this->phone = $phone;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(string $email): self
{
$this->email = $email;
return $this;
}
public function isIsCustomer(): ?bool
{
return $this->isCustomer;
}
public function setIsCustomer(bool $isCustomer): self
{
$this->isCustomer = $isCustomer;
return $this;
}
public function getConfiguration(): ?Configuration
{
return $this->configuration;
}
public function setConfiguration(?Configuration $configuration): self
{
// unset the owning side of the relation if necessary
if ($configuration === null && $this->configuration !== null) {
$this->configuration->setProspect(null);
}
// set the owning side of the relation if necessary
if ($configuration !== null && $configuration->getProspect() !== $this) {
$configuration->setProspect($this);
}
$this->configuration = $configuration;
return $this;
}
public function getMessage(): ?string
{
return $this->message;
}
public function setMessage(?string $message): self
{
$this->message = $message;
return $this;
}
public function getActivityArea(): ?ActivityArea
{
return $this->activityArea;
}
public function setActivityArea(?ActivityArea $activityArea): self
{
$this->activityArea = $activityArea;
return $this;
}
}