Skip to content

PHP implementation of GestPay (Banca Sella) Web Service

License

Notifications You must be signed in to change notification settings

cristianp6/GestPayWS

 
 

Repository files navigation

GestPayWS

Latest Stable Version Build Status Scrutinizer Code Quality Coverage Status License

PHP implementation of GestPay (Banca Sella) Web Services

Highlights

  • Simple API
  • Decoupled classes
  • PHPUnit tested
  • Framework agnostic
  • Composer ready, PSR-2 and PSR-4 compliant

System Requirements

You need PHP >= 5.3.3 and the soap extension to use the library, but the latest stable version of PHP is recommended.

Install

Install EndelWar/GestPayWS using Composer.

$ composer require endelwar/gestpayws

Using

Crypt

require __DIR__ . '/../vendor/autoload.php';

use EndelWar\GestPayWS\WSS2SSoapClient;
use EndelWar\GestPayWS\WSS2S;
use EndelWar\GestPayWS\Parameter;
use EndelWar\GestPayWS\Data;

// enable or disable test environment
$enableTestEnv = true;
$soapClient = new WSS2SSoapClient($enableTestEnv);
try {
    $gestpay = new WSS2S($soapClient->getSoapClient());
} catch (\Exception $e) {
    var_dump($e->getCode(), $e->getMessage());
}

// set mandatory info
$pagamParameter = new Parameter\PagamParameter();
$pagamParameter->shopLogin = 'GESPAY12345';
$pagamParameter->amount = '1.23';
$pagamParameter->shopTransactionId = '1';
$pagamParameter->uicCode = Data\Currency::EUR;
$pagamParameter->languageId = Data\Language::ITALIAN;

// set optional custom info as array
$customArray = array('STORE_ID' => '42', 'STORE_NAME' => 'Shop Abc123');
$pagamParameter->setCustomInfo($customArray);

// encrypt data
$gestpayResult = $gestpay->pagam($pagamParameter);

// get redirect link to Banca Sella
echo $gestpayResult->getPaymentPageUrl($pagamParameter->shopLogin, $soapClient->wsdlEnvironment);

Decrypt

require __DIR__ . '/../vendor/autoload.php';

use EndelWar\GestPayWS\Parameter\DecryptParameter;
use EndelWar\GestPayWS\WSCryptDecryptSoapClient;
use EndelWar\GestPayWS\WSCryptDecrypt;

// $_GET['a'] and $_GET['b'] are received from Banca Sella
$param = array(
    'shopLogin' => $_GET['a'],
    'CryptedString' => $_GET['b']
);

$decryptParam = new DecryptParameter($param);

// enable or disable test environment
$enableTestEnv = true;
$soapClient = new WSCryptDecryptSoapClient($enableTestEnv);
try {
    $gestpay = new WSCryptDecrypt($soapClient->getSoapClient());
    $decryptResult = $gestpay->decrypt($decryptParam);

    echo $decryptResult->TransactionResult;
} catch (\Exception $e) {
    var_dump($e->getCode(), $e->getMessage());
}

Testing

EndelWar/GestPayWS has a PHPUnit test suite. To run the tests, run the following command from the project folder.

$ phpunit

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Versioning

Semantic versioning (semver) is applied.

License

This library is under the MIT license. For the full copyright and license information, please view the LICENSE file that was distributed with this source code.

About

PHP implementation of GestPay (Banca Sella) Web Service

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%