chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
declare(strict_types=1);
namespace Mautic\IntegrationsBundle\Sync\Notification;
use Doctrine\ORM\EntityManagerInterface;
use Mautic\CoreBundle\Model\AuditLogModel;
use Mautic\CoreBundle\Model\NotificationModel;
use Mautic\UserBundle\Entity\User;
class Writer
{
public function __construct(
private NotificationModel $notificationModel,
private AuditLogModel $auditLogModel,
private EntityManagerInterface $em
) {
}
/**
* @throws \Doctrine\ORM\ORMException
*/
public function writeUserNotification(string $header, string $message, int $userId, string $deduplicateValue = null, \DateTime $deduplicateDateTimeFrom = null): void
{
$this->notificationModel->addNotification(
$message,
null,
false,
$header,
'ri-refresh-line',
null,
$this->em->getReference(User::class, $userId),
$deduplicateValue,
$deduplicateDateTimeFrom
);
}
public function writeAuditLogEntry(string $bundle, string $object, ?int $objectId, string $action, array $details): void
{
$log = [
'bundle' => $bundle,
'object' => $object,
'objectId' => $objectId,
'action' => $action,
'details' => $details,
];
$this->auditLogModel->writeToLog($log);
}
}