-
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 #56 from mauriciohaygert/v5.6.3
feat: create getAccount on API Pagarme
- Loading branch information
Showing
5 changed files
with
434 additions
and
3 deletions.
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
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,99 @@ | ||
<?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\Models; | ||
use PagarmeCoreApiLib\Exceptions; | ||
use PagarmeCoreApiLib\Http\HttpRequest; | ||
use PagarmeCoreApiLib\Http\HttpResponse; | ||
use PagarmeCoreApiLib\Http\HttpMethod; | ||
use PagarmeCoreApiLib\Http\HttpContext; | ||
use Unirest\Request; | ||
|
||
/** | ||
* @todo Add a general description for this controller. | ||
*/ | ||
class AccountsController extends BaseController | ||
{ | ||
/** | ||
* @var AccountsController The reference to *Singleton* instance of this class | ||
*/ | ||
private static $instance; | ||
|
||
/** | ||
* Returns the *Singleton* instance of this class. | ||
* @return AccountsController The *Singleton* instance. | ||
*/ | ||
public static function getInstance() | ||
{ | ||
if (null === static::$instance) { | ||
static::$instance = new static(); | ||
} | ||
|
||
return static::$instance; | ||
} | ||
|
||
/** | ||
* @todo Add general description for this endpoint | ||
* | ||
* @param string $accountId TODO: type description here | ||
* @return mixed response from the API call | ||
* @throws APIException Thrown if API call fails | ||
*/ | ||
public function getAccountById( | ||
$accountId | ||
) { | ||
|
||
//prepare query string for API call | ||
$_queryBuilder = '/accounts/{account_id}'; | ||
|
||
//process optional query parameters | ||
$_queryBuilder = APIHelper::appendUrlWithTemplateParameters($_queryBuilder, array ( | ||
'account_id' => $accountId, | ||
)); | ||
|
||
//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\\GetAccountResponse'); | ||
} | ||
} |
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
Oops, something went wrong.