The GiroCockpit SDK allows a simple implementation of the GiroCheckout API. The SDK includes all API calls provided by GiroCheckout. For every API there is an example script in the examples section.
GiroCheckout SDK is now also available and installable via composer, packagist and Github. The version numbers of both releases differ in the second number: The Github version has an even number (such as 2.6.1), the normal version an uneven one (2.5.1). Find our github repository here and our package on packagist.org here.
GiroCheckout uses two parallel channels for the communication between the GiroCheckout server and the Shop: The notification (or notify for short) and the redirect. The notify is a server to server call in the background, whereas the redirect runs over the customer's browser, showing him the transaction result at the end. Both paths must function separately and independently from each other, in case one of them doesn't reach its destination. This way, the transaction is also successful if the notification happens to not arrive at the shop for whatever reason (so only the redirect could be successful) or if the customer interrupts the redirection to the shop site (so only the notify gets through). But of course a check is required on both sides whether the order has already been processed in the shop, in order to avoid a duplicate processing.
Please also see API Basics.
The folder “examples” includes any example script. Among them there is an example for every API call as well as a notification and a redirect script. The folder “GiroCheckout_SDK” contains the GiroCheckout_SDK.php, which needs to be included in order to use the SDK functionalities.
API documentation | request type | object name |
---|---|---|
eps | ||
check eps bank status | epsBankstatus | GiroCheckout_SDK_EpsBankstatus() |
eps Bankenabfrage | epsIssuerList | GiroCheckout_SDK_EpsIssuerList() |
eps Transaktion | epsTransaction | GiroCheckout_SDK_EpsTransaction() |
giropay | ||
giropay transaction | GiroCheckout_SDK_TransactionType_helper::TRANS_TYPE_GIROPAY_TRANSACTION: “giropayTransaction“ | GiroCheckout_SDK_GiropayTransaction() |
giropay Capture | GiroCheckout_SDK_TransactionType_helper::TRANS_TYPE_GIROPAY_CAPTURE: “giropayCapture” | GiroCheckout_SDK_GiropayCapture() |
giropay Refund | GiroCheckout_SDK_TransactionType_helper::TRANS_TYPE_GIROPAY_REFUND: “giropayRefund” | GiroCheckout_SDK_GiropayRefund() |
giropay Void | GiroCheckout_SDK_TransactionType_helper::TRANS_TYPE_GIROPAY_VOID: “giropayVoid” | GiroCheckout_SDK_GiropayVoid() |
giropay sender information | GiroCheckout_SDK_TransactionType_helper::TRANS_TYPE_GIROPAY_SENDERINFO: “giropaySenderInfo” | GiroCheckout_SDK_GiropaySenderInfo() |
iDEAL | ||
iDEAL get issuer list | idealIssuerList | GiroCheckout_SDK_IdealIssuerList() |
iDEAL transaction | idealPayment | GiroCheckout_SDK_IdealPayment() |
credit card | ||
credit card payment | creditCardTransaction | GiroCheckout_SDK_CreditCardTransaction() |
get PKN | creditCardGetPKN | GiroCheckout_SDK_CreditCardGetPKN() |
recurring credit card payment | creditCardRecurringTransaction | GiroCheckout_SDK_CreditCardRecurringTransaction() |
credit card void | creditCardVoid | GiroCheckout_SDK_CreditCardVoid() |
direct debit | ||
direct debit without payment page | directDebitTransaction | GiroCheckout_SDK_DirectDebitTransaction() |
direct debit payment page | directDebitTransactionWithPaymentPage | GiroCheckout_SDK_DirectDebitTransactionWithPaymentPage() |
direct debit void | directDebitVoid | GiroCheckout_SDK_DirectDebitVoid() |
Maestro | ||
Maestro payment | maestroTransaction | GiroCheckout_SDK_MaestroTransaction() |
Maestro capture | maestroCapture | GiroCheckout_SDK_MaestroCapture() |
Maestro refund | maestroRefund | GiroCheckout_SDK_MaestroRefund() |
Payment Page Transaktion | ||
Payment through Payment Page | paypageTransaction | GiroCheckout_SDK_PaypageTransaction() |
Project request | paypageProjects | GiroCheckout_SDK_PaypageProjects() |
Sofort. | ||
Sofort payment | sofortuwTransaction | GiroCheckout_SDK_SofortUwTransaction() |
PayPal | ||
PayPal transaction | paypalTransaction | GiroCheckout_SDK_PaypalTransaction() |
tools | ||
get transaction information | getTransactionTool | GiroCheckout_SDK_Tools_GetTransaction() |
This implementation example is based on the “examples/giropay/giropayTransction.php” file.
8: require_once '../../GiroCheckout_SDK/GiroCheckout_SDK.php';
The file “GiroCheckout_SDK.php” has to be included in an appropriate place, to use API functionalities.
14: $merchantID = xxx; 15: $projectID = xxx; 16: $projectPassword = xxx;
These data are provided in the GiroCockpit. Ensure that the used project ID is correct and belongs to an API call. For example you can only use a giropay project ID for an “giropayTransaction” request.
20: $request = new GiroCheckout_SDK_Request('giropayTransaction'); 21: $request->setSecret($projectPassword); 22: $request->addParam('merchantId',$merchantID) 23: ->addParam('projectId',$projectID) 24: ->addParam('merchantTxId',1234567890) 25: ->addParam('amount',100) 26: ->addParam('currency','EUR') 27: ->addParam('purpose','Beispieltransaktion') 28: ->addParam('bic','TESTDETT421') 29: ->addParam('info1Label','Ihre Kundennummer') 30: ->addParam('info1Text','0815') 21: ->addParam('urlRedirect','https://www.my-domain.de/girocheckout/redirect-giropay') 22: ->addParam('urlNotify','https://www.my-domain.de/girocheckout/notify-giropay') 23: //the hash field is auto generated by the SDK 24: ->submit();
To perform a request there has to be instantiated and configurated a request object (list of all request types). The project password has to be given to the request object by calling the setSecret() method. It is used for the hash generation. Any API parameters, exept for the hash param, have to be set to the request object by calling addParam().
The method submit() performs the API call to GiroCheckout.
38: if($request->requestHasSucceeded()) 39: { 40: $request->getResponseParam('rc'); 41: $request->getResponseParam('msg'); 42: $request->getResponseParam('reference'); 43: $request->getResponseParam('redirect'); 44: 45: $request->redirectCustomerToPaymentProvider(); 46: } 47: 48: /* if the transaction did not succeed update your local system, get the responsecode and notify the customer */ 49: else { 50: $request->getResponseParam('rc'); 51: $request->getResponseParam('msg'); 52: $request->getResponseMessage($request->getResponseParam('rc'),'DE'); 53:}
The method requestHasSucceeded() returns true, if the request was successfully performed. Any API response parameters are provided by the getResponseParam() method. The customer redirection can be performet by calling the redirectCustomerToPaymentProvider() method. The buyer will be redirected to the URL given in the redirect parameter.
If an eror occured there is the error code stored in the rc param. The method getResponseMessage() delivers a translated error message in a supporded language.
This implementation example is based on the “examples/notification.php” file.
8: require_once '../GiroCheckout_SDK/GiroCheckout_SDK.php';
The file “GiroCheckout_SDK.php” has to be included in an appropriate place, to use API functionalities.
12: $projectPassword = xxx;
The password is provided in the GiroCockpit. It is for the hash comparison, to ensure that GiroCheckout sends you Data.
$notify = new GiroCheckout_SDK_Notify('giropayTransaction'); $notify->setSecret($projectPassword); $notify->parseNotification($_GET);
The notification Object will work the same way as the Request Object. At first it has to be instantiated with the transaction type (list of all request types) and configured with the password.
Afterwards there has to be passed an array including the request params to the parseNotification() method.
21: if($notify->paymentSuccessful()) { 22: $notify->getResponseParam('gcReference'); 23: $notify->getResponseParam('gcMerchantTxId'); 24: $notify->getResponseParam('gcBackendTxId'); 25: $notify->getResponseParam('gcAmount'); 26: $notify->getResponseParam('gcCurrency'); 27: $notify->getResponseParam('gcResultPayment'); 28: 29: if($notify->avsSuccessful()) { 30: $notify->getResponseParam('gcResultAVS'); 31: } 32: 33: $notify->sendOkStatus(); 34: exit; 35: } 36: else { 37: $notify->getResponseParam('gcReference'); 38: $notify->getResponseParam('gcMerchantTxId'); 39: $notify->getResponseParam('gcBackendTxId'); 40: $notify->getResponseParam('gcResultPayment'); 41: 42: $notify->sendOkStatus(); 43: exit; 44: }
The method paymentSuccessful() returns true, if the payment has succeeded. Due to a giropay-ID transaction the method avsSuccessful() deliveres the result of the age verification. Any response parameter can be received throught the getResponseParam() method.
sendOkStatus(), sendBadRequestStatus() and sendOtherStatus() deliver the appropriate Header.
HTTP status code | methode | description |
---|---|---|
200 (OK) | sendOkStatus() | The notification was processed correctly. |
400 (Bad Request) | sendBadRequestStatus() | The merchant did not process the notification and does not wish to be notified again. |
all others | sendOtherStatus() | The notification is repeated no more than 10 times every 30 minutes until the merchant returns the status code 200 or 400. |
In special cases it may be necessary to access a different Server for development and tests than the default https://payment.girosolution.de. Should you have received another endpoint URL from Girosolution, there is a way of overriding the default server.
You may do this in one of three ways:
1) In your PHP code:
Via the environment:
apache_setenv( "GIROCHECKOUT_SERVER", "https://anderer.endpoint.de" );
Or directly through the setServer() method:
try { $request = new GiroCheckout_SDK_Request( GiroCheckout_SDK_TransactionType_helper::TRANS_TYPE_GIROPAY_TRANSACTION ); $request->setSecret($projectPassword); $request->setServer( 2 ); // Set server to 2=dev, 1 is prod $request->addParam('merchantId',$merchantID) ->addParam(...) ->submit(); } catch(Exception $e) { // Handle exception }
2) On the Linux command line (e.g. for executing the SDK examples without a browser):
export GIROCHECKOUT_SERVER=https://other.endpoint.de
3) In the Apache configuration (within the VirtualHost section):
SetEnv GIROCHECKOUT_SERVER "https://other.endpoint.de"
It is possible to operate the server communication via a proxy, if your environment requires to do so. To implement this, include the following code and modify the parameters accordingly, before the GiroCheckout_SDK_Request::submit() function is called:
$Config = GiroCheckout_SDK_Config::getInstance(); $Config->setConfig('CURLOPT_PROXY', 'http://myproxy.com'): $Config->setConfig('CURLOPT_PROXYPORT', 9090); $Config->setConfig('CURLOPT_PROXYUSERPWD', 'myuser:mypasswd');
The SDK contains the opportunity to debug an API call. Therefor there has to be defined a constant which has to be set to “true”:
define('__GIROCHECKOUT_SDK_DEBUG__',true);
Now the SDK will write a log file which is located under “GiroCheckout_PHP_SDK/log” by default. The webserver needs to have writing permissions to this folder. The debug mode should only be used during debug issues and should be deactivated afterwards.
The logfile is segmented into different sections:
Section | Description | Common issues |
---|---|---|
start | includes the timestamp when the script was loaded | |
PHP ini | provides information about PHP, cURL and SSL | cURL or SSL is not activated |
transaction | shows the used API call | |
params set | shows any parameters that were given to the request object | parameters are missing |
cURL request | includes any parameters that are sent to GiroCheckout | |
cURL reply | cURL information about the server reply | |
reply params | any parameters in the server's reply | |
notify input | information about the notify call (parameters, timestamp) | |
reply params | information about the used reply method | |
exception | includes the error description |
Under an Windows server environment it might happen that cURL is not able to check the SSL certrificate. Then it will be necessary to give cURL an specific certificate file. The SDK provides the possibility of setting a local certificate file. Therefor the following code is needed bevore the $request→submit() method is called:
$request->setSslCertFile('path/to/certificate');
For testing purposes the certificate validation can be disabled. Please do not use this in your live environment.
$request->setSslVerifyDisabled();