AnonSec Shell
Server IP : 85.193.89.191  /  Your IP : 3.144.47.199
Web Server : Apache
System : Linux 956367-cx40159.tmweb.ru 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
User : bitrix ( 600)
PHP Version : 8.1.27
Disable Function : NONE
MySQL : OFF  |  cURL : OFF  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/bitrix/www/bitrix/modules/seo/lib/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/bitrix/www/bitrix/modules/seo/lib/engine.php
<?
/**
 * Bitrix Framework
 * @package bitrix
 * @subpackage seo
 * @copyright 2001-2014 Bitrix
 */
namespace Bitrix\Seo;

use Bitrix\Main\SystemException;
use Bitrix\Seo\SearchEngineTable;

class Engine
{
	const HTTP_STATUS_OK = 200;
	const HTTP_STATUS_CREATED = 201;
	const HTTP_STATUS_NO_CONTENT = 204;
	const HTTP_STATUS_AUTHORIZATION = 401;

	protected $engineId = 'unknown engine';

	protected $engine = null;
	protected $engineSettings = array();

	protected $authInterface = null;

	public function __construct()
	{
		if(!$this->engine)
		{
			$this->engine = static::getEngine($this->engineId);
		}

		if(!is_array($this->engine))
		{
			throw new SystemException("Unknown search engine");
		}
		else
		{
			if($this->engine['SETTINGS'] <> '')
			{
				$this->engineSettings = unserialize($this->engine['SETTINGS'], ['allowed_classes' => false]);
			}
		}
	}

	public function getId()
	{
		return $this->engine['ID'];
	}

	public function getCode()
	{
		return $this->engine['CODE'];
	}

	public function getSettings()
	{
		return $this->engineSettings;
	}

	public function getClientId()
	{
		return $this->engine['CLIENT_ID'];
	}

	public function getClientSecret()
	{
		return $this->engine['CLIENT_SECRET'];
	}

	public function getAuthSettings()
	{
		return ($this->engineSettings['AUTH'] ?? false);
	}

	public function clearAuthSettings()
	{
		unset($this->engineSettings['AUTH']);
		$this->saveSettings();
	}

	protected function saveSettings()
	{
		SearchEngineTable::update($this->engine['ID'], array(
			'SETTINGS' => serialize($this->engineSettings)
		));
	}

	protected static function getEngine($engineId)
	{
		$dbEngine = SearchEngineTable::getByCode($engineId);
		return $dbEngine->fetch();
	}
}


Anon7 - 2022
AnonSec Team