2017 © Pedro Peláez
 

library epay

Library for epay.bg

image

forci/epay

Library for epay.bg

  • Saturday, January 27, 2018
  • by grigoryosifov
  • Repository
  • 2 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Epay

TODO

  • Tests

Usage, (*1)

  • Create a Forci\Component\Epay\Client\ClientOptions instance, responsible for providing all the options the Forci\Component\Epay\Client\Client needs. Its constructor needs the merchant ID and secret, provided by epay.bg. Remember to set the third constructor parameter to true or false depending on whether you're testing or not.
  • Create a handler that implements the Forci\Component\Epay\Client\PaymentHandlerInterface interface. This interface has methods that are being called by the client
  • Create an instance of Forci\Component\Epay\Client\Client, passing the above two
  • To create a payment form, call $client->getEpayForm($id, $amount, $description, $expiry, $formId, $okUrl, $cancelUrl)
  • To create an EasyPay payment ID, call $response = $this->client->getEasyPayIdn($id, $amount, $description, $expiry). This will return a Forci\Component\Epay\Response\EasyPayResponse response. Call $response->getIdn() to get the ID. Beware, this method throws a Forci\Component\Epay\Exception\EasyPayGetIdnError exception.

The WucdbmEpayBundle https://packagist.org/packages/wucdbm/epay-bundle uses this library, head there for more examples., (*2)

$options = new \Forci\Component\Epay\Client\ClientOptions($merchantId, $merchantSecret, $isDebug);
// $options->set... to alter any options
$handler = new \My\Project\Payments\Epay\PaymentHandler(LogManager $some, PaymentManager $dependencies);
$client = new \Forci\Component\Epay\Client\Client($options, $handler);

Getting a payment form is done like this, (*3)

$uniqId = uniqid(); // this is to make autosubmitting easy - $('#formId').submit();
$expiry = new \DateTime('today + 2 days');
// ... other parameters
$form = $client->getEpayForm($id, $amount, $description, $expiry, $formId, $okUrl, $cancelUrl);
// Display the form and optionally auto submit it. Another option is to alter the submit button through the options and let the user do that

Getting an EasyPay IDN, (*4)

$id = $payment->getId();
$amount = $payment->getAmount();
$description = 'Payment #' . $payment->getId();
$expiry = $payment->getExpiryDate();

try {
    $response = $this->client->getEasyPayIdn($id, $amount, $description, $expiry);
    $idn = $response->getIdn();
    // display idn to the user, do some logging.
    // the response body is available at $response->getBody();
    return $idn;
} catch (\Forci\Component\Epay\Exception\EasyPayGetIdnError $ex) {
    $this->logEasyPayRequest($payment, $ex->getBody(), true);
    throw $ex;
}

Receiving payments, (*5)

$response = $client->receiveResponse($post);
// the client will call your handler, which must deal with the payments received
// $response is an \Forci\Component\Epay\Response\ReceiveResponseInterface instance
// exceptions are caught internally and transformed into responses, the no data exception and checksum mismatch exceptions in particular generate a global error response for epay
echo $response->toString();
exit();
// alternatively, if you use Symfony's HttpFoundation component
$response = \Symfony\Component\HttpFoundation\Response($response->toString());

The Versions

27/01 2018

dev-master

9999999-dev

Library for epay.bg

  Sources   Download

MIT

The Requires

  • php ~5.5|~7.0

 

The Development Requires

by Martin Kirilov

library epay epay.bg wucdbm forci

14/12 2017

v0.1.0

0.1.0.0

Library for epay.bg

  Sources   Download

GPL-3.0

The Requires

  • php ~5.5|~7.0

 

The Development Requires

by Martin Kirilov

library epay epay.bg wucdbm