-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from mateus-picoloto/main-opensource
feat: create getToken for Tds
- Loading branch information
Showing
3 changed files
with
145 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<?php | ||
/* | ||
* PagarmeCoreApiLib | ||
* | ||
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ). | ||
*/ | ||
|
||
namespace PagarmeCoreApiLib\Controllers; | ||
|
||
use PagarmeCoreApiLib\APIException; | ||
use PagarmeCoreApiLib\APIHelper; | ||
use PagarmeCoreApiLib\Configuration; | ||
use PagarmeCoreApiLib\Http\HttpRequest; | ||
use PagarmeCoreApiLib\Http\HttpResponse; | ||
use PagarmeCoreApiLib\Http\HttpMethod; | ||
use PagarmeCoreApiLib\Http\HttpContext; | ||
use Unirest\Request; | ||
|
||
|
||
class TdsTokenController extends BaseController | ||
{ | ||
/** | ||
* @var TdsTokenController The reference to *Singleton* instance of this class | ||
*/ | ||
private static $instance; | ||
|
||
/** | ||
* Returns the *Singleton* instance of this class. | ||
* @return TdsTokenController The *Singleton* instance. | ||
*/ | ||
public static function getInstance() | ||
{ | ||
if (null === static::$instance) { | ||
static::$instance = new static(); | ||
} | ||
|
||
return static::$instance; | ||
} | ||
|
||
/** | ||
* @param string $environment | ||
* @param string $accountId | ||
* @return mixed response from the API call | ||
* @throws APIException Thrown if API call fails | ||
*/ | ||
public function getToken( | ||
$environment, | ||
$accountId | ||
) { | ||
|
||
//prepare query string for API call | ||
$_queryBuilder = '{environment}/3ds2/internal/{account_id}/tds-token'; | ||
|
||
//process optional query parameters | ||
$_queryBuilder = APIHelper::appendUrlWithTemplateParameters($_queryBuilder, [ | ||
'account_id' => $accountId, | ||
'environment' => $environment | ||
]); | ||
|
||
//validate and preprocess url | ||
$_queryUrl = APIHelper::cleanUrl(Configuration::$BASEURI. $_queryBuilder); | ||
|
||
//prepare headers | ||
$_headers = array ( | ||
'user-agent' => BaseController::USER_AGENT, | ||
'Accept' => 'application/json' | ||
); | ||
//set HTTP basic auth parameters | ||
Request::auth(Configuration::$basicAuthUserName, Configuration::$basicAuthPassword); | ||
|
||
//call on-before Http callback | ||
$_httpRequest = new HttpRequest(HttpMethod::GET, $_headers, $_queryUrl); | ||
if ($this->getHttpCallBack() != null) { | ||
$this->getHttpCallBack()->callOnBeforeRequest($_httpRequest); | ||
} | ||
|
||
//and invoke the API call request to fetch the response | ||
$response = Request::get($_queryUrl, $_headers); | ||
|
||
$_httpResponse = new HttpResponse($response->code, $response->headers, $response->raw_body); | ||
$_httpContext = new HttpContext($_httpRequest, $_httpResponse); | ||
|
||
//call on-after Http callback | ||
if ($this->getHttpCallBack() != null) { | ||
$this->getHttpCallBack()->callOnAfterRequest($_httpContext); | ||
} | ||
|
||
//handle errors defined at the API level | ||
$this->validateResponse($_httpResponse, $_httpContext); | ||
|
||
$mapper = $this->getJsonMapper(); | ||
|
||
return $mapper->mapClass($response->body, 'PagarmeCoreApiLib\\Models\\GetTdsTokenResponse'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
/* | ||
* PagarmeCoreApiLib | ||
* | ||
* This file was automatically generated by APIMATIC v2.0 ( https://apimatic.io ). | ||
*/ | ||
|
||
namespace PagarmeCoreApiLib\Models; | ||
|
||
use JsonSerializable; | ||
|
||
/** | ||
*Response object for getting a charge | ||
*/ | ||
class GetTdsTokenResponse implements JsonSerializable | ||
{ | ||
/** | ||
* @required | ||
* @var string $tdsToken public property | ||
* @maps tds_token | ||
*/ | ||
public $tdsToken; | ||
|
||
public function __construct() | ||
{ | ||
if (1 == func_num_args()) { | ||
$this->tdsToken = func_get_arg(0); | ||
} | ||
} | ||
|
||
/** | ||
* Encode this object to JSON | ||
*/ | ||
#[\ReturnTypeWillChange] | ||
public function jsonSerialize() | ||
{ | ||
$json = array(); | ||
$json['tds_token'] = $this->tdsToken; | ||
return $json; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters