Файловый менеджер - Редактировать - /home/lmsyaran/public_html/j3/plugins/hikashoppayment/mangopay/mangolib/tools/authenticationHelper.inc
Назад
<?php namespace MangoPay; class AuthenticationHelper { /** * Root/parent instance that holds the OAuth token and Configuration instance * @var \MangoPay\MangoPayApi */ private $_root; /** * Constructor * @param \MangoPay\MangoPayApi Root/parent instance that holds the OAuth token and Configuration instance */ function __construct($root) { $this->_root = $root; } /** * Get HTTP header value with authorization string * @return string Authorization string */ public function GetHttpHeaderKey(){ return $this->GetHttpHeaderStrong(); } /** * Get basic key for HTTP header * @return string * @throws \MangoPay\Exception If MangoPay_ClientId or MangoPay_ClientPassword is not defined */ public function GetHttpHeaderBasicKey() { if (is_null($this->_root->Config->ClientId) || strlen($this->_root->Config->ClientId) == 0) throw new Exception ('MangoPayApi.Config.ClientId is not set.'); if (is_null($this->_root->Config->ClientPassword) || strlen($this->_root->Config->ClientPassword) == 0) throw new Exception ('MangoPayApi.Config.ClientPassword is not set.'); $signature = $this->_root->Config->ClientId . ':' . $this->_root->Config->ClientPassword; return base64_encode($signature); } /** * Get HTTP header value with authorization string for basic authentication * * @return string Value for HTTP header with authentication string * @throws \MangoPay\Exception If required constants are not defined. */ private function GetHttpHeaderBasic() { return 'Authorization: Basic ' . $this->GetHttpHeaderBasicKey(); } /** * Get HTTP header value with authorization string for strong authentication * * @return string Value for HTTP header with authentication string * @throws \MangoPay\Exception If OAuth token is not created (or is invalid) for strong authentication. */ private function GetHttpHeaderStrong() { $token = $this->_root->OAuthTokenManager->GetToken(); if (is_null($token) || !isset($token->access_token) || !isset($token->token_type)) throw new Exception ('OAuth token is not created (or is invalid) for strong authentication'); return 'Authorization: ' . $token->token_type . ' ' . $token->access_token; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.04 |
proxy
|
phpinfo
|
Настройка