-
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.
- Loading branch information
Showing
5 changed files
with
207 additions
and
18 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
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,189 @@ | ||
<?php | ||
/** | ||
* SDK | ||
* | ||
* This library allows to interact with the payment service. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
|
||
namespace PostFinanceCheckout\Sdk\Service; | ||
|
||
use PostFinanceCheckout\Sdk\ApiClient; | ||
use PostFinanceCheckout\Sdk\ApiException; | ||
use PostFinanceCheckout\Sdk\ApiResponse; | ||
use PostFinanceCheckout\Sdk\Http\HttpRequest; | ||
use PostFinanceCheckout\Sdk\ObjectSerializer; | ||
|
||
/** | ||
* TransactionLightboxService service | ||
* | ||
* @category Class | ||
* @package PostFinanceCheckout\Sdk | ||
* @author customweb GmbH | ||
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License v2 | ||
*/ | ||
class TransactionLightboxService { | ||
|
||
/** | ||
* The API client instance. | ||
* | ||
* @var ApiClient | ||
*/ | ||
private $apiClient; | ||
|
||
/** | ||
* Constructor. | ||
* | ||
* @param ApiClient $apiClient the api client | ||
*/ | ||
public function __construct(ApiClient $apiClient) { | ||
if (is_null($apiClient)) { | ||
throw new \InvalidArgumentException('The api client is required.'); | ||
} | ||
|
||
$this->apiClient = $apiClient; | ||
} | ||
|
||
/** | ||
* Returns the API client instance. | ||
* | ||
* @return ApiClient | ||
*/ | ||
public function getApiClient() { | ||
return $this->apiClient; | ||
} | ||
|
||
|
||
/** | ||
* Operation javascriptUrl | ||
* | ||
* Build JavaScript URL | ||
* | ||
* @param int $space_id (required) | ||
* @param int $id The id of the transaction which should be returned. (required) | ||
* @throws \PostFinanceCheckout\Sdk\ApiException | ||
* @throws \PostFinanceCheckout\Sdk\VersioningException | ||
* @throws \PostFinanceCheckout\Sdk\Http\ConnectionException | ||
* @return string | ||
*/ | ||
public function javascriptUrl($space_id, $id) { | ||
return $this->javascriptUrlWithHttpInfo($space_id, $id)->getData(); | ||
} | ||
|
||
/** | ||
* Operation javascriptUrlWithHttpInfo | ||
* | ||
* Build JavaScript URL | ||
* | ||
* @param int $space_id (required) | ||
* @param int $id The id of the transaction which should be returned. (required) | ||
* @throws \PostFinanceCheckout\Sdk\ApiException | ||
* @throws \PostFinanceCheckout\Sdk\VersioningException | ||
* @throws \PostFinanceCheckout\Sdk\Http\ConnectionException | ||
* @return ApiResponse | ||
*/ | ||
public function javascriptUrlWithHttpInfo($space_id, $id) { | ||
// verify the required parameter 'space_id' is set | ||
if (is_null($space_id)) { | ||
throw new \InvalidArgumentException('Missing the required parameter $space_id when calling javascriptUrl'); | ||
} | ||
// verify the required parameter 'id' is set | ||
if (is_null($id)) { | ||
throw new \InvalidArgumentException('Missing the required parameter $id when calling javascriptUrl'); | ||
} | ||
// header params | ||
$headerParams = []; | ||
$headerAccept = $this->apiClient->selectHeaderAccept(['application/json', 'text/plain;charset=utf-8']); | ||
if (!is_null($headerAccept)) { | ||
$headerParams[HttpRequest::HEADER_KEY_ACCEPT] = $headerAccept; | ||
} | ||
$headerParams[HttpRequest::HEADER_KEY_CONTENT_TYPE] = $this->apiClient->selectHeaderContentType([]); | ||
|
||
// query params | ||
$queryParams = []; | ||
if (!is_null($space_id)) { | ||
$queryParams['spaceId'] = $this->apiClient->getSerializer()->toQueryValue($space_id); | ||
} | ||
if (!is_null($id)) { | ||
$queryParams['id'] = $this->apiClient->getSerializer()->toQueryValue($id); | ||
} | ||
|
||
// path params | ||
$resourcePath = '/transaction-lightbox/javascript-url'; | ||
// default format to json | ||
$resourcePath = str_replace('{format}', 'json', $resourcePath); | ||
|
||
// form params | ||
$formParams = []; | ||
|
||
// for model (json/xml) | ||
$httpBody = ''; | ||
if (isset($tempBody)) { | ||
$httpBody = $tempBody; // $tempBody is the method argument, if present | ||
} elseif (!empty($formParams)) { | ||
$httpBody = $formParams; // for HTTP post (form) | ||
} | ||
// make the API Call | ||
try { | ||
$response = $this->apiClient->callApi( | ||
$resourcePath, | ||
'GET', | ||
$queryParams, | ||
$httpBody, | ||
$headerParams, | ||
'string', | ||
'/transaction-lightbox/javascript-url' | ||
); | ||
return new ApiResponse($response->getStatusCode(), $response->getHeaders(), $this->apiClient->getSerializer()->deserialize($response->getData(), 'string', $response->getHeaders())); | ||
} catch (ApiException $e) { | ||
switch ($e->getCode()) { | ||
case 200: | ||
$data = ObjectSerializer::deserialize( | ||
$e->getResponseBody(), | ||
'string', | ||
$e->getResponseHeaders() | ||
); | ||
$e->setResponseObject($data); | ||
break; | ||
case 409: | ||
$data = ObjectSerializer::deserialize( | ||
$e->getResponseBody(), | ||
'\PostFinanceCheckout\Sdk\Model\ClientError', | ||
$e->getResponseHeaders() | ||
); | ||
$e->setResponseObject($data); | ||
break; | ||
case 442: | ||
$data = ObjectSerializer::deserialize( | ||
$e->getResponseBody(), | ||
'\PostFinanceCheckout\Sdk\Model\ClientError', | ||
$e->getResponseHeaders() | ||
); | ||
$e->setResponseObject($data); | ||
break; | ||
case 542: | ||
$data = ObjectSerializer::deserialize( | ||
$e->getResponseBody(), | ||
'\PostFinanceCheckout\Sdk\Model\ServerError', | ||
$e->getResponseHeaders() | ||
); | ||
$e->setResponseObject($data); | ||
break; | ||
} | ||
throw $e; | ||
} | ||
} | ||
|
||
} |
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