Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/src/CoreBundle/Entity/UserRelUser.php

175 lines
4.7 KiB

<?php
declare(strict_types=1);
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use ApiPlatform\Core\Annotation\ApiFilter;
use ApiPlatform\Core\Annotation\ApiResource;
use ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\SearchFilter;
use Chamilo\CoreBundle\Traits\TimestampableTypedEntity;
use Chamilo\CoreBundle\Traits\UserTrait;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Symfony\Component\Serializer\Annotation\Groups;
use Symfony\Component\Validator\Constraints as Assert;
/**
* Associations between users.
*
* @ORM\Table(name="user_rel_user",
* uniqueConstraints={
* @ORM\UniqueConstraint(
* name="user_friend_relation",
* columns={"user_id", "friend_user_id", "relation_type"}
* )
* },
* indexes={
* @ORM\Index(name="idx_user_rel_user__user", columns={"user_id"}),
* @ORM\Index(name="idx_user_rel_user__friend_user", columns={"friend_user_id"}),
* @ORM\Index(name="idx_user_rel_user__user_friend_user", columns={"user_id", "friend_user_id"})
* }
* )
* @ORM\Entity
* @ORM\EntityListeners({"Chamilo\CoreBundle\Entity\Listener\UserRelUserListener"})
*/
#[ApiResource(
collectionOperations: [
'get' => [
//'security' => "is_granted('ROLE_ADMIN')",
],
'post' => [
'security_post_denormalize' => "is_granted('CREATE', object)",
],
],
itemOperations: [
'get' => [
//'security' => "is_granted('ROLE_ADMIN')",
],
'put' => [
'security' => "is_granted('EDIT', object)",
],
'delete' => [
'security' => "is_granted('DELETE', object)",
],
],
attributes: [
'security' => 'is_granted("ROLE_USER")',
],
denormalizationContext: [
'groups' => ['user_rel_user:write'],
],
normalizationContext: [
'groups' => ['user_rel_user:read', 'timestampable_created:read'],
],
)]
#[ApiFilter(SearchFilter::class, properties: [
'user' => 'exact',
'friend' => 'exact',
'relationType' => 'exact',
])]
#[UniqueEntity(
fields: ['user', 'friend', 'relationType'],
errorPath: 'User',
message: 'User relation already exists',
)]
class UserRelUser
{
use UserTrait;
use TimestampableTypedEntity;
public const USER_UNKNOWN = 0;
//public const USER_RELATION_TYPE_UNKNOWN = 1;
//public const USER_RELATION_TYPE_PARENT = 2;
public const USER_RELATION_TYPE_FRIEND = 3;
public const USER_RELATION_TYPE_GOODFRIEND = 4; // should be deprecated is useless
//public const USER_RELATION_TYPE_ENEMY = 5; // should be deprecated is useless
public const USER_RELATION_TYPE_DELETED = 6;
public const USER_RELATION_TYPE_RRHH = 7;
public const USER_RELATION_TYPE_BOSS = 8;
public const USER_RELATION_TYPE_HRM_REQUEST = 9;
public const USER_RELATION_TYPE_FRIEND_REQUEST = 10;
/**
* @ORM\Column(name="id", type="bigint")
* @ORM\Id
* @ORM\GeneratedValue
*/
protected ?int $id = null;
/**
* @ORM\ManyToOne(targetEntity="Chamilo\CoreBundle\Entity\User", inversedBy="friends")
* @ORM\JoinColumn(name="user_id", referencedColumnName="id", onDelete="CASCADE", nullable=false)
*/
#[Assert\NotNull]
#[Groups(['user_rel_user:read', 'user_rel_user:write'])]
protected User $user;
/**
* @ORM\ManyToOne(targetEntity="Chamilo\CoreBundle\Entity\User", inversedBy="friendsWithMe")
* @ORM\JoinColumn(name="friend_user_id", referencedColumnName="id", onDelete="CASCADE", nullable=false)
*/
#[Assert\NotNull]
#[Groups(['user_rel_user:read', 'user_rel_user:write'])]
protected User $friend;
/**
* @ORM\Column(name="relation_type", type="integer", nullable=false)
*/
#[Assert\NotBlank]
#[Groups(['user_rel_user:read', 'user_rel_user:write'])]
protected int $relationType;
public function __construct()
{
$this->relationType = self::USER_RELATION_TYPE_FRIEND;
}
public function getUser(): User
{
return $this->user;
}
public function setUser(User $user): self
{
$this->user = $user;
return $this;
}
public function getFriend(): User
{
return $this->friend;
}
public function setFriend(User $friend): self
{
$this->friend = $friend;
return $this;
}
public function setRelationType(int $relationType): self
{
$this->relationType = $relationType;
return $this;
}
public function getRelationType(): ?int
{
return $this->relationType;
}
/**
* Get id.
*
* @return int
*/
public function getId()
{
return $this->id;
}
}