mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
673 lines
17 KiB
PHP
673 lines
17 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Chill\ActivityBundle\Entity;
|
|
|
|
use Chill\ActivityBundle\Validator\Constraints as ActivityValidator;
|
|
use Chill\DocStoreBundle\Entity\StoredObject;
|
|
use Chill\MainBundle\Doctrine\Model\TrackCreationInterface;
|
|
use Chill\MainBundle\Doctrine\Model\TrackCreationTrait;
|
|
use Chill\MainBundle\Doctrine\Model\TrackUpdateInterface;
|
|
use Chill\MainBundle\Doctrine\Model\TrackUpdateTrait;
|
|
use Chill\MainBundle\Entity\Center;
|
|
use Chill\MainBundle\Entity\Embeddable\CommentEmbeddable;
|
|
use Chill\MainBundle\Entity\Embeddable\PrivateCommentEmbeddable;
|
|
use Chill\MainBundle\Entity\HasCentersInterface;
|
|
use Chill\MainBundle\Entity\HasScopesInterface;
|
|
use Chill\MainBundle\Entity\Location;
|
|
use Chill\MainBundle\Entity\Scope;
|
|
use Chill\MainBundle\Entity\User;
|
|
use Chill\PersonBundle\AccompanyingPeriod\SocialIssueConsistency\AccompanyingPeriodLinkedWithSocialIssuesEntityInterface;
|
|
use Chill\PersonBundle\Entity\AccompanyingPeriod;
|
|
use Chill\PersonBundle\Entity\Person;
|
|
use Chill\PersonBundle\Entity\SocialWork\SocialAction;
|
|
use Chill\PersonBundle\Entity\SocialWork\SocialIssue;
|
|
use Chill\ThirdPartyBundle\Entity\ThirdParty;
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Annotation\DiscriminatorMap;
|
|
use Symfony\Component\Serializer\Annotation\Groups;
|
|
use Symfony\Component\Serializer\Annotation\SerializedName;
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
/**
|
|
* Class Activity.
|
|
*/
|
|
#[DiscriminatorMap(typeProperty: 'type', mapping: ['activity' => Activity::class])]
|
|
#[ORM\Entity(repositoryClass: \Chill\ActivityBundle\Repository\ActivityRepository::class)]
|
|
#[ORM\HasLifecycleCallbacks]
|
|
#[ORM\Table(name: 'activity')]
|
|
#[ActivityValidator\ActivityValidity] // TODO see if necessary
|
|
class Activity implements AccompanyingPeriodLinkedWithSocialIssuesEntityInterface, HasCentersInterface, HasScopesInterface, TrackCreationInterface, TrackUpdateInterface
|
|
{
|
|
use TrackCreationTrait;
|
|
|
|
use TrackUpdateTrait;
|
|
|
|
final public const SENTRECEIVED_RECEIVED = 'received';
|
|
|
|
final public const SENTRECEIVED_SENT = 'sent';
|
|
|
|
#[Groups(['read'])]
|
|
#[ORM\ManyToOne(targetEntity: AccompanyingPeriod::class)]
|
|
private ?AccompanyingPeriod $accompanyingPeriod = null;
|
|
|
|
#[Groups(['read', 'docgen:read'])]
|
|
#[SerializedName('activityType')]
|
|
#[ORM\ManyToOne(targetEntity: ActivityType::class)]
|
|
#[ORM\JoinColumn(name: 'type_id')]
|
|
private ActivityType $activityType;
|
|
|
|
#[Groups(['docgen:read'])]
|
|
#[ORM\ManyToOne(targetEntity: ActivityPresence::class)]
|
|
private ?ActivityPresence $attendee = null;
|
|
|
|
#[Groups(['docgen:read'])]
|
|
#[ORM\Embedded(class: CommentEmbeddable::class, columnPrefix: 'comment_')]
|
|
private CommentEmbeddable $comment;
|
|
|
|
#[Groups(['docgen:read'])]
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::DATETIME_MUTABLE)]
|
|
private \DateTime $date;
|
|
|
|
/**
|
|
* @var Collection<int, StoredObject>
|
|
*/
|
|
#[Assert\Valid(traverse: true)]
|
|
#[ORM\ManyToMany(targetEntity: StoredObject::class, cascade: ['persist'])]
|
|
#[ORM\JoinTable(
|
|
name: 'activity_storedobject',
|
|
joinColumns: new ORM\JoinColumn(name: 'activity_id', referencedColumnName: 'id', nullable: false),
|
|
inverseJoinColumns: new ORM\InverseJoinColumn(name: 'storedobject_id', referencedColumnName: 'id', unique: true, nullable: false)
|
|
)]
|
|
private Collection $documents;
|
|
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::TIME_MUTABLE, nullable: true)]
|
|
private ?\DateTime $durationTime = null;
|
|
|
|
#[Groups(['docgen:read'])]
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::BOOLEAN, options: ['default' => false])]
|
|
private bool $emergency = false;
|
|
|
|
#[Groups(['read', 'docgen:read'])]
|
|
#[ORM\Id]
|
|
#[ORM\Column(name: 'id', type: \Doctrine\DBAL\Types\Types::INTEGER)]
|
|
#[ORM\GeneratedValue(strategy: 'AUTO')]
|
|
private ?int $id = null;
|
|
|
|
#[Groups(['read', 'docgen:read'])]
|
|
#[ORM\ManyToOne(targetEntity: Location::class)]
|
|
private ?Location $location = null;
|
|
|
|
#[ORM\ManyToOne(targetEntity: Person::class)]
|
|
private ?Person $person = null;
|
|
|
|
/**
|
|
* @var Collection<int, Person>
|
|
*/
|
|
#[Groups(['read', 'docgen:read'])]
|
|
#[ORM\ManyToMany(targetEntity: Person::class)]
|
|
private Collection $persons;
|
|
|
|
#[ORM\Embedded(class: PrivateCommentEmbeddable::class, columnPrefix: 'privateComment_')]
|
|
private PrivateCommentEmbeddable $privateComment;
|
|
|
|
/**
|
|
* @var Collection<int, ActivityReason>
|
|
*/
|
|
#[Groups(['docgen:read'])]
|
|
#[ORM\ManyToMany(targetEntity: ActivityReason::class)]
|
|
private Collection $reasons;
|
|
|
|
#[Groups(['docgen:read'])]
|
|
#[ORM\ManyToOne(targetEntity: Scope::class)]
|
|
private ?Scope $scope = null;
|
|
|
|
#[Groups(['docgen:read'])]
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::STRING, options: ['default' => ''])]
|
|
private string $sentReceived = '';
|
|
|
|
/**
|
|
* @var Collection<int, SocialAction>
|
|
*/
|
|
#[Groups(['read', 'docgen:read'])]
|
|
#[ORM\ManyToMany(targetEntity: SocialAction::class)]
|
|
#[ORM\JoinTable(name: 'chill_activity_activity_chill_person_socialaction')]
|
|
private Collection $socialActions;
|
|
|
|
/**
|
|
* @var Collection<int, SocialIssue>
|
|
*/
|
|
#[Groups(['read', 'docgen:read'])]
|
|
#[ORM\ManyToMany(targetEntity: SocialIssue::class)]
|
|
#[ORM\JoinTable(name: 'chill_activity_activity_chill_person_socialissue')]
|
|
private Collection $socialIssues;
|
|
|
|
/**
|
|
* @var Collection<int, ThirdParty>
|
|
*/
|
|
#[Groups(['read', 'docgen:read'])]
|
|
#[ORM\ManyToMany(targetEntity: ThirdParty::class)]
|
|
private Collection $thirdParties;
|
|
|
|
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::TIME_MUTABLE, nullable: true)]
|
|
private ?\DateTime $travelTime = null;
|
|
|
|
#[Groups(['docgen:read'])]
|
|
#[ORM\ManyToOne(targetEntity: User::class)]
|
|
private ?User $user = null;
|
|
|
|
/**
|
|
* @var Collection<int, User>
|
|
*/
|
|
#[Groups(['read', 'docgen:read'])]
|
|
#[ORM\ManyToMany(targetEntity: User::class)]
|
|
private Collection $users;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->reasons = new ArrayCollection();
|
|
$this->comment = new CommentEmbeddable();
|
|
$this->privateComment = new PrivateCommentEmbeddable();
|
|
$this->persons = new ArrayCollection();
|
|
$this->thirdParties = new ArrayCollection();
|
|
$this->documents = new ArrayCollection();
|
|
$this->users = new ArrayCollection();
|
|
$this->socialIssues = new ArrayCollection();
|
|
$this->socialActions = new ArrayCollection();
|
|
}
|
|
|
|
public function addDocument(StoredObject $document): self
|
|
{
|
|
$this->documents[] = $document;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Add a person to the person list.
|
|
*/
|
|
public function addPerson(?Person $person): self
|
|
{
|
|
if (null !== $person) {
|
|
if (!$this->persons->contains($person)) {
|
|
$this->persons[] = $person;
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function addReason(ActivityReason $reason): self
|
|
{
|
|
$this->reasons->add($reason);
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function addSocialAction(SocialAction $socialAction): self
|
|
{
|
|
if (!$this->socialActions->contains($socialAction)) {
|
|
$this->socialActions[] = $socialAction;
|
|
$this->ensureSocialActionConsistency();
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Add a social issue.
|
|
*
|
|
* Note: the social issue consistency (the fact that only youngest social issues
|
|
* are kept) is processed by an entity listener:
|
|
*
|
|
* @see{\Chill\PersonBundle\AccompanyingPeriod\SocialIssueConsistency\AccompanyingPeriodSocialIssueConsistencyEntityListener}
|
|
*/
|
|
public function addSocialIssue(SocialIssue $socialIssue): self
|
|
{
|
|
if (!$this->socialIssues->contains($socialIssue)) {
|
|
$this->socialIssues[] = $socialIssue;
|
|
}
|
|
|
|
if (null !== $this->getAccompanyingPeriod()) {
|
|
$this->getAccompanyingPeriod()->addSocialIssue($socialIssue);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function addThirdParty(?ThirdParty $thirdParty): self
|
|
{
|
|
if (null !== $thirdParty) {
|
|
if (!$this->thirdParties->contains($thirdParty)) {
|
|
$this->thirdParties[] = $thirdParty;
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function addUser(?User $user): self
|
|
{
|
|
if (null !== $user) {
|
|
if (!$this->users->contains($user)) {
|
|
$this->users[] = $user;
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getAccompanyingPeriod(): ?AccompanyingPeriod
|
|
{
|
|
return $this->accompanyingPeriod;
|
|
}
|
|
|
|
public function getActivityType(): ActivityType
|
|
{
|
|
return $this->activityType;
|
|
}
|
|
|
|
public function getAttendee(): ?ActivityPresence
|
|
{
|
|
return $this->attendee;
|
|
}
|
|
|
|
/**
|
|
* get the center
|
|
* center is extracted from person.
|
|
*/
|
|
public function getCenters(): iterable
|
|
{
|
|
if ($this->person instanceof Person) {
|
|
return [$this->person->getCenter()];
|
|
}
|
|
|
|
if ($this->getAccompanyingPeriod() instanceof AccompanyingPeriod) {
|
|
return $this->getAccompanyingPeriod()->getCenters() ?? [];
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
public function getComment(): CommentEmbeddable
|
|
{
|
|
return $this->comment;
|
|
}
|
|
|
|
public function getDate(): \DateTime
|
|
{
|
|
return $this->date;
|
|
}
|
|
|
|
public function getDocuments(): Collection
|
|
{
|
|
return $this->documents;
|
|
}
|
|
|
|
#[Groups(['docgen:read'])]
|
|
public function getDurationMinute(): int
|
|
{
|
|
if (null === $this->durationTime) {
|
|
return 0;
|
|
}
|
|
|
|
return (int) round(($this->durationTime->getTimestamp() + $this->durationTime->getOffset()) / 60.0, 0);
|
|
}
|
|
|
|
public function getDurationTime(): ?\DateTime
|
|
{
|
|
return $this->durationTime;
|
|
}
|
|
|
|
public function getEmergency(): bool
|
|
{
|
|
return $this->emergency;
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getLocation(): ?Location
|
|
{
|
|
return $this->location;
|
|
}
|
|
|
|
public function getPerson(): ?Person
|
|
{
|
|
return $this->person;
|
|
}
|
|
|
|
public function getPersons(): Collection
|
|
{
|
|
return $this->persons;
|
|
}
|
|
|
|
public function getPersonsAssociated(): array
|
|
{
|
|
if (null !== $this->accompanyingPeriod) {
|
|
$personsAssociated = [];
|
|
|
|
foreach ($this->accompanyingPeriod->getOpenParticipations() as $participation) {
|
|
if ($this->persons->contains($participation->getPerson())) {
|
|
$personsAssociated[] = $participation->getPerson();
|
|
}
|
|
}
|
|
|
|
return $personsAssociated;
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
public function getPersonsNotAssociated(): array
|
|
{
|
|
if (null !== $this->accompanyingPeriod) {
|
|
$personsNotAssociated = [];
|
|
|
|
// TODO better semantic with: return $this->persons->filter(...);
|
|
foreach ($this->persons as $person) {
|
|
if (null === $this->accompanyingPeriod->getOpenParticipationContainsPerson($person)) {
|
|
$personsNotAssociated[] = $person;
|
|
}
|
|
}
|
|
|
|
return $personsNotAssociated;
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
public function getPrivateComment(): PrivateCommentEmbeddable
|
|
{
|
|
return $this->privateComment;
|
|
}
|
|
|
|
public function getReasons(): Collection
|
|
{
|
|
return $this->reasons;
|
|
}
|
|
|
|
public function getScope(): ?Scope
|
|
{
|
|
return $this->scope;
|
|
}
|
|
|
|
public function getScopes(): iterable
|
|
{
|
|
if (null !== $this->getAccompanyingPeriod()) {
|
|
return $this->getAccompanyingPeriod()->getScopes();
|
|
}
|
|
|
|
if (null !== $this->getPerson()) {
|
|
return [$this->scope];
|
|
}
|
|
|
|
return [];
|
|
}
|
|
|
|
public function getSentReceived(): string
|
|
{
|
|
return $this->sentReceived;
|
|
}
|
|
|
|
public function getSocialActions(): Collection
|
|
{
|
|
return $this->socialActions;
|
|
}
|
|
|
|
public function getSocialIssues(): Collection
|
|
{
|
|
return $this->socialIssues;
|
|
}
|
|
|
|
public function getThirdParties(): Collection
|
|
{
|
|
return $this->thirdParties;
|
|
}
|
|
|
|
public function getTravelTime(): ?\DateTime
|
|
{
|
|
return $this->travelTime;
|
|
}
|
|
|
|
#[Groups(['docgen:read'])]
|
|
public function getTravelTimeMinute(): int
|
|
{
|
|
if (null === $this->travelTime) {
|
|
return 0;
|
|
}
|
|
|
|
return (int) round(($this->travelTime->getTimestamp() + $this->travelTime->getOffset()) / 60.0, 0);
|
|
}
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
public function getType(): ActivityType
|
|
{
|
|
return $this->activityType;
|
|
}
|
|
|
|
public function getUser(): ?User
|
|
{
|
|
return $this->user;
|
|
}
|
|
|
|
public function getUsers(): Collection
|
|
{
|
|
return $this->users;
|
|
}
|
|
|
|
public function isEmergency(): bool
|
|
{
|
|
return $this->getEmergency();
|
|
}
|
|
|
|
public function removeDocument(StoredObject $document): void
|
|
{
|
|
$this->documents->removeElement($document);
|
|
}
|
|
|
|
public function removePerson(Person $person): void
|
|
{
|
|
$this->persons->removeElement($person);
|
|
}
|
|
|
|
public function removeReason(ActivityReason $reason): void
|
|
{
|
|
$this->reasons->removeElement($reason);
|
|
}
|
|
|
|
public function removeSocialAction(SocialAction $socialAction): self
|
|
{
|
|
$this->socialActions->removeElement($socialAction);
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeSocialIssue(SocialIssue $socialIssue): self
|
|
{
|
|
$this->socialIssues->removeElement($socialIssue);
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function removeThirdParty(ThirdParty $thirdParty): void
|
|
{
|
|
$this->thirdParties->removeElement($thirdParty);
|
|
}
|
|
|
|
public function removeUser(User $user): void
|
|
{
|
|
$this->users->removeElement($user);
|
|
}
|
|
|
|
public function setAccompanyingPeriod(?AccompanyingPeriod $accompanyingPeriod): self
|
|
{
|
|
$this->accompanyingPeriod = $accompanyingPeriod;
|
|
|
|
foreach ($this->getSocialIssues() as $issue) {
|
|
$this->accompanyingPeriod->addSocialIssue($issue);
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setActivityType(ActivityType $activityType): self
|
|
{
|
|
$this->activityType = $activityType;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setAttendee(ActivityPresence $attendee): self
|
|
{
|
|
$this->attendee = $attendee;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setComment(CommentEmbeddable $comment): self
|
|
{
|
|
$this->comment = $comment;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setDate(\DateTime $date): self
|
|
{
|
|
$this->date = $date;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setDocuments(Collection $documents): self
|
|
{
|
|
$this->documents = $documents;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setDurationTime(?\DateTime $durationTime): self
|
|
{
|
|
$this->durationTime = $durationTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setEmergency(bool $emergency): self
|
|
{
|
|
$this->emergency = $emergency;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setLocation(?Location $location): Activity
|
|
{
|
|
$this->location = $location;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setPerson(?Person $person): self
|
|
{
|
|
$this->person = $person;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setPersons(?Collection $persons): self
|
|
{
|
|
$this->persons = $persons;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setPrivateComment(PrivateCommentEmbeddable $privateComment): self
|
|
{
|
|
$this->privateComment = $privateComment;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setReasons(?ArrayCollection $reasons): self
|
|
{
|
|
$this->reasons = $reasons;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setScope(Scope $scope): self
|
|
{
|
|
$this->scope = $scope;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setSentReceived(?string $sentReceived): self
|
|
{
|
|
$this->sentReceived = (string) $sentReceived;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setThirdParties(?Collection $thirdParties): self
|
|
{
|
|
$this->thirdParties = $thirdParties;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setTravelTime(\DateTime $travelTime): self
|
|
{
|
|
$this->travelTime = $travelTime;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @deprecated
|
|
*/
|
|
public function setType(ActivityType $activityType): self
|
|
{
|
|
$this->activityType = $activityType;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setUser(?User $user): self
|
|
{
|
|
$this->user = $user;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function setUsers(Collection $users): self
|
|
{
|
|
$this->users = $users;
|
|
|
|
return $this;
|
|
}
|
|
|
|
private function ensureSocialActionConsistency(): void
|
|
{
|
|
$ancestors = SocialAction::findAncestorSocialActions($this->getSocialActions());
|
|
|
|
foreach ($ancestors as $ancestor) {
|
|
$this->removeSocialAction($ancestor);
|
|
}
|
|
}
|
|
}
|