Your IP : 3.145.59.28


Current Path : /home/bitrix/ext_www/klimatlend.ua/bitrix/components/bitrix/sender.trigger.chain/
Upload File :
Current File : /home/bitrix/ext_www/klimatlend.ua/bitrix/components/bitrix/sender.trigger.chain/class.php

<?

use Bitrix\Main\Localization\Loc;
use Bitrix\Main\ErrorCollection;
use Bitrix\Main\Context;
use Bitrix\Main\Web\Uri;
use Bitrix\Main\Loader;
use Bitrix\Main\Error;

use Bitrix\Sender\Entity;
use Bitrix\Sender\Security;
use Bitrix\Sender\Message;
use Bitrix\Sender\UI;


if (!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true)
{
	die();
}

Loc::loadMessages(__FILE__);

class SenderTriggerChainComponent extends \CBitrixComponent
{
	/** @var ErrorCollection $errors */
	protected $errors;

	/** @var Entity\Campaign $entityCampaign */
	protected $entityCampaign;

	protected function checkRequiredParams()
	{
		return $this->errors->count() == 0;
	}

	protected function initParams()
	{
		$request = Context::getCurrent()->getRequest();

		$this->arParams['SET_TITLE'] = isset($this->arParams['SET_TITLE']) ? (bool) $this->arParams['SET_TITLE'] : true;
		$this->arParams['CAN_EDIT'] = isset($this->arParams['CAN_EDIT'])
			?
			$this->arParams['CAN_EDIT']
			:
			Security\Access::current()->canModifyLetters();

		if (empty($this->arParams['ID']))
		{
			$this->arParams['ID'] = (int) $request->get('ID');
		}
	}

	protected function prepareResult()
	{
		if ($this->arParams['SET_TITLE'] == 'Y')
		{
			$GLOBALS['APPLICATION']->SetTitle(Loc::getMessage('SENDER_COMP_TRIGGER_CHAIN_TITLE'));
		}

		if (!Security\Access::current()->canViewLetters())
		{
			Security\AccessChecker::addError($this->errors);
			return false;
		}

		$this->arResult['SUBMIT_FORM_URL'] = Context::getCurrent()->getRequest()->getRequestUri();
		$this->arResult['ACTION_URI'] = $this->getPath() . '/ajax.php';

		$this->entityCampaign = new Entity\TriggerCampaign($this->arParams['ID']);
		$this->arResult['ROW'] = $this->entityCampaign->getData();

		$this->arResult['LETTERS'] = [];
		$letters = $this->entityCampaign->getChain()->getList();
		foreach ($letters as $letter)
		{
			$title = $letter->get('TITLE');
			/*
			if ($letter->getMessage()->getCode() === Message\iBase::CODE_MAIL)
			{
				$title = $letter->getMessage()->getConfiguration()->get('SUBJECT');
			}
			*/

			$this->arResult['LETTERS'][] = [
				'ID' => $letter->getId(),
				'TITLE' => $title,
				'DATE_INSERT' => $letter->get('DATE_INSERT'),
				'CREATED_BY' => $letter->get('CREATED_BY'),
				'CREATED_BY_DISPLAY' => $letter->get('CREATED_BY'),
				'TIME_SHIFT' => $letter->get('TIME_SHIFT'),
				'USER_NAME' => $letter->get('USER_NAME'),
				'USER_LAST_NAME' => $letter->get('USER_LAST_NAME'),
				'USER_ID' => $letter->get('USER_ID'),
				'URLS' => [
					'EDIT' => str_replace(
						['#campaign_id#', '#id#'],
						[$this->arParams['ID'], $letter->getId()],
						$this->arParams['PATH_TO_LETTER_EDIT']
					),
				]
			];
		}

		$this->arParams['PATH_TO_LETTER_ADD'] = str_replace(
			['#campaign_id#'], [$this->arParams['ID']], $this->arParams['PATH_TO_LETTER_ADD']
		);
		$this->arResult['IS_SAVED'] = $this->request->get('IS_SAVED') == 'Y';

		return true;
	}

	protected function printErrors()
	{
		foreach ($this->errors as $error)
		{
			ShowError($error);
		}
	}

	public function executeComponent()
	{
		$this->errors = new \Bitrix\Main\ErrorCollection();
		if (!Loader::includeModule('sender'))
		{
			$this->errors->setError(new Error('Module `sender` is not installed.'));
			$this->printErrors();
			return;
		}

		$this->initParams();
		if (!$this->checkRequiredParams())
		{
			$this->printErrors();
			return;
		}

		if (!$this->prepareResult())
		{
			$this->printErrors();
			return;
		}

		$this->printErrors();
		$this->includeComponentTemplate();
	}
}