264 lines
5.8 KiB
PHP
Executable File
264 lines
5.8 KiB
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\ChannelBundle\Entity;
|
|
|
|
use ApiPlatform\Metadata\ApiResource;
|
|
use ApiPlatform\Metadata\Delete;
|
|
use ApiPlatform\Metadata\Get;
|
|
use ApiPlatform\Metadata\GetCollection;
|
|
use ApiPlatform\Metadata\Patch;
|
|
use ApiPlatform\Metadata\Post;
|
|
use ApiPlatform\Metadata\Put;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping\ClassMetadata;
|
|
use Mautic\ApiBundle\Serializer\Driver\ApiMetadataDriver;
|
|
use Mautic\CoreBundle\Doctrine\Mapping\ClassMetadataBuilder;
|
|
use Mautic\CoreBundle\Entity\CommonEntity;
|
|
use Mautic\CoreBundle\Entity\UuidInterface;
|
|
use Mautic\CoreBundle\Entity\UuidTrait;
|
|
use Symfony\Component\Serializer\Attribute\Groups;
|
|
|
|
#[ApiResource(
|
|
operations: [
|
|
new GetCollection(security: "is_granted('channel:messages:viewown')"),
|
|
new Post(security: "is_granted('channel:messages:create')"),
|
|
new Get(security: "is_granted('channel:messages:viewown')"),
|
|
new Put(security: "is_granted('channel:messages:editown')"),
|
|
new Patch(security: "is_granted('channel:messages:editother')"),
|
|
new Delete(security: "is_granted('channel:messages:deleteown')"),
|
|
],
|
|
normalizationContext: [
|
|
'groups' => ['channel:read'],
|
|
'swagger_definition_name' => 'Read',
|
|
'api_included' => ['message'],
|
|
],
|
|
denormalizationContext: [
|
|
'groups' => ['channel:write'],
|
|
'swagger_definition_name' => 'Write',
|
|
]
|
|
)]
|
|
class Channel extends CommonEntity implements UuidInterface
|
|
{
|
|
use UuidTrait;
|
|
|
|
/**
|
|
* @var int
|
|
*/
|
|
#[Groups(['channel:read'])]
|
|
private $id;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
#[Groups(['channel:read', 'channel:write', 'message:read'])]
|
|
private $channel;
|
|
|
|
/**
|
|
* @var int|null
|
|
*/
|
|
#[Groups(['channel:read', 'channel:write'])]
|
|
private $channelId;
|
|
|
|
/**
|
|
* @var string
|
|
*/
|
|
#[Groups(['channel:read', 'message:read'])]
|
|
private $channelName;
|
|
|
|
/**
|
|
* @var Message
|
|
*/
|
|
#[Groups(['channel:read', 'channel:write'])]
|
|
private $message;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
#[Groups(['channel:read', 'channel:write'])]
|
|
private $properties = [];
|
|
|
|
/**
|
|
* @var bool
|
|
*/
|
|
#[Groups(['channel:read', 'channel:write', 'message:read'])]
|
|
private $isEnabled = false;
|
|
|
|
public static function loadMetadata(ClassMetadata $metadata): void
|
|
{
|
|
$builder = new ClassMetadataBuilder($metadata);
|
|
|
|
$builder->setTable('message_channels')
|
|
->addIndex(['channel', 'channel_id'], 'channel_entity_index')
|
|
->addIndex(['channel', 'is_enabled'], 'channel_enabled_index')
|
|
->addUniqueConstraint(['message_id', 'channel'], 'channel_index');
|
|
|
|
$builder
|
|
->addId()
|
|
->addField('channel', 'string')
|
|
->addNamedField('channelId', 'integer', 'channel_id', true)
|
|
->addField('properties', Types::JSON)
|
|
->createField('isEnabled', 'boolean')
|
|
->columnName('is_enabled')
|
|
->build();
|
|
|
|
$builder->createManyToOne('message', Message::class)
|
|
->addJoinColumn('message_id', 'id', false, false, 'CASCADE')
|
|
->inversedBy('channels')
|
|
->build();
|
|
|
|
static::addUuidField($builder);
|
|
}
|
|
|
|
/**
|
|
* Prepares the metadata for API usage.
|
|
*/
|
|
public static function loadApiMetadata(ApiMetadataDriver $metadata): void
|
|
{
|
|
$metadata->setGroupPrefix('messageChannel')
|
|
->addListProperties(
|
|
[
|
|
'id',
|
|
'channel',
|
|
'channelId',
|
|
'channelName',
|
|
'isEnabled',
|
|
]
|
|
)
|
|
->addProperties(
|
|
[
|
|
'properties',
|
|
'message',
|
|
]
|
|
)
|
|
->build();
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getChannel()
|
|
{
|
|
return $this->channel;
|
|
}
|
|
|
|
/**
|
|
* @param string $channel
|
|
*
|
|
* @return Channel
|
|
*/
|
|
public function setChannel($channel)
|
|
{
|
|
$this->channel = $channel;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getChannelId()
|
|
{
|
|
return $this->channelId;
|
|
}
|
|
|
|
/**
|
|
* @param int $channelId
|
|
*
|
|
* @return Channel
|
|
*/
|
|
public function setChannelId($channelId)
|
|
{
|
|
if (empty($channelId)) {
|
|
$channelId = null;
|
|
}
|
|
|
|
$this->channelId = $channelId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getChannelName()
|
|
{
|
|
return $this->channelName;
|
|
}
|
|
|
|
/**
|
|
* @param string $channelName
|
|
*
|
|
* @return Channel
|
|
*/
|
|
public function setChannelName($channelName)
|
|
{
|
|
$this->channelName = $channelName;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return Message
|
|
*/
|
|
public function getMessage()
|
|
{
|
|
return $this->message;
|
|
}
|
|
|
|
/**
|
|
* @return Channel
|
|
*/
|
|
public function setMessage(Message $message)
|
|
{
|
|
$this->message = $message;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getProperties()
|
|
{
|
|
return $this->properties;
|
|
}
|
|
|
|
/**
|
|
* @return Channel
|
|
*/
|
|
public function setProperties(array $properties)
|
|
{
|
|
$this->properties = $properties;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function isEnabled()
|
|
{
|
|
return $this->isEnabled;
|
|
}
|
|
|
|
/**
|
|
* @param bool $isEnabled
|
|
*
|
|
* @return Channel
|
|
*/
|
|
public function setIsEnabled($isEnabled)
|
|
{
|
|
$this->isEnabled = $isEnabled;
|
|
|
|
return $this;
|
|
}
|
|
}
|