Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/rest/lib/apauth/ |
Upload File : |
<?php /** * Bitrix Framework * @package bitrix * @subpackage intranet * @copyright 2001-2016 Bitrix */ namespace Bitrix\Rest\APAuth; use Bitrix\Main\Authentication\ApplicationPasswordTable; use Bitrix\Main\Localization\Loc; use Bitrix\Main\Type\DateTime; Loc::loadMessages(__FILE__); /** * @deprecated * * use \Bitrix\Rest\APAuth\PasswordTable */ class Application extends \Bitrix\Main\Authentication\Application { const ID = 'rest'; protected $validUrls = array( "/rest/", ); public static function onApplicationsBuildList() { return array( "ID" => static::ID, "NAME" => Loc::getMessage("REST_APP_TITLE"), "DESCRIPTION" => Loc::getMessage("REST_APP_DESC"), "SORT" => 1000, "CLASS" => __CLASS__, "VISIBLE" => false, ); } /** * Generates AP for REST access. * * @param string $siteTitle Site title for AP description. * * @return bool|string password or false * @throws \Exception */ public static function generateAppPassword($siteTitle, array $scopeList) { global $USER; $password = ApplicationPasswordTable::generatePassword(); $res = ApplicationPasswordTable::add(array( 'USER_ID' => $USER->getID(), 'APPLICATION_ID' => static::ID, 'PASSWORD' => $password, 'DATE_CREATE' => new DateTime(), 'COMMENT' => Loc::getMessage('REST_APP_COMMENT'), 'SYSCOMMENT' => Loc::getMessage('REST_APP_SYSCOMMENT', array( '#TITLE#' => $siteTitle, )), )); if($res->isSuccess()) { $scopeList = array_unique($scopeList); foreach($scopeList as $scope) { PermissionTable::add(array( 'PASSWORD_ID' => $res->getId(), 'PERM' => $scope, )); } return $password; } return false; } }