Spaces:
No application file
No application file
File size: 3,176 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
<?php
namespace Mautic\ChannelBundle\Entity;
use Mautic\CategoryBundle\Entity\Category;
use Mautic\CoreBundle\Entity\CommonRepository;
/**
* @extends CommonRepository<Message>
*/
class MessageRepository extends CommonRepository
{
/**
* @return \Doctrine\ORM\Tools\Pagination\Paginator
*/
public function getEntities(array $args = [])
{
$qb = $this->createQueryBuilder($this->getTableAlias());
$qb->join(Channel::class, 'channel', 'WITH', 'channel.message = '.$this->getTableAlias().'.id');
$qb->leftJoin(Category::class, 'cat', 'WITH', 'cat.id = '.$this->getTableAlias().'.category');
$qb->groupBy($this->getTableAlias().'.id');
$args['qb'] = $qb;
return parent::getEntities($args);
}
public function getTableAlias(): string
{
return 'm';
}
/**
* @param string $search
* @param int $limit
* @param int $start
*
* @return array
*/
public function getMessageList($search = '', $limit = 10, $start = 0)
{
$alias = $this->getTableAlias();
$q = $this->createQueryBuilder($this->getTableAlias());
$q->select('partial '.$alias.'.{id, name, description}');
if (!empty($search)) {
if (is_array($search)) {
$search = array_map('intval', $search);
$q->andWhere($q->expr()->in($alias.'.id', ':search'))
->setParameter('search', $search);
} else {
$q->andWhere($q->expr()->like($alias.'.name', ':search'))
->setParameter('search', "%{$search}%");
}
}
$q->andWhere($q->expr()->eq($alias.'.isPublished', true));
if (!empty($limit)) {
$q->setFirstResult($start)
->setMaxResults($limit);
}
return $q->getQuery()->getArrayResult();
}
public function getMessageChannels($messageId): array
{
$q = $this->_em->getConnection()->createQueryBuilder();
$q->from(MAUTIC_TABLE_PREFIX.'message_channels', 'mc')
->select('id, channel, channel_id, properties')
->where($q->expr()->eq('message_id', ':messageId'))
->setParameter('messageId', $messageId)
->andWhere($q->expr()->eq('is_enabled', true));
$results = $q->executeQuery()->fetchAllAssociative();
$channels = [];
foreach ($results as $result) {
$result['properties'] = json_decode($result['properties'], true);
$channels[$result['channel']] = $result;
}
return $channels;
}
/**
* @return array
*/
public function getChannelMessageByChannelId($channelId)
{
$q = $this->_em->getConnection()->createQueryBuilder();
$q->from(MAUTIC_TABLE_PREFIX.'message_channels', 'mc')
->select('id, channel, channel_id, properties, message_id')
->where($q->expr()->eq('id', ':channelId'))
->setParameter('channelId', $channelId)
->andWhere($q->expr()->eq('is_enabled', true));
return $q->executeQuery()->fetchAssociative();
}
}
|