2017 © Pedro Peláez
 

yii2-extension yii2-perfect-money

PerfectMoney component for Yii2

image

legront/yii2-perfect-money

PerfectMoney component for Yii2

  • Friday, March 11, 2016
  • by LeGront
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 4 Versions
  • 0 % Grown

The README.md

PerfectMoney component for Yii2

Payment gateway and api client for PerfectMoney service., (*1)

Installation

The preferred way to install this extension is through composer., (*2)

Either run, (*3)

php composer.phar require --prefer-dist legront/yii2-perfect-money "dev-master"

or add, (*4)

"legront/yii2-perfect-money": "dev-master"

to the require section of your composer.json., (*5)

Usage

Component configuration

Configure pm component in the components section of your application., (*6)

'pm' => [
    'class' => '\yiidreamteam\perfectmoney\Api',
    'accountId' => '1234567',
    'accountPassword' => 'xxxxxxxxx',
    'walletNumber' => 'U1234567',
    'merchantName' => 'My Merchant',
    'alternateSecret' => 'X00O8cT08pOEZTJdFmSiAwxyu', 
    'resultUrl' => ['/perfect-money/result'],
    'successUrl' => ['/site/payment-success'],
    'failureUrl' => ['/site/payment-failure'],
],

Redirecting to the payment system

To redirect user to PerfectMoney site you need to create the page with RedirectForm widget. User will redirected right after page load., (*7)

<?php echo \yiidreamteam\perfectmoney\RedirectForm::widget([
    'api' => Yii::$app->get('pm'),
    'invoiceId' => $invoice->id,
    'amount' => $invoice->amount,
    'description' => $invoice->description,
]); ?>

Gateway controller

You will need to create controller that will handle result requests from PerfectMoney service. Sample controller code:, (*8)

<?php
namespace frontend\controllers;

use common\models\Invoice;
use yii\base\Event;
use yii\helpers\ArrayHelper;
use yii\helpers\VarDumper;
use yii\web\Controller;
use yiidreamteam\perfectmoney\actions\ResultAction;
use yiidreamteam\perfectmoney\Api;
use yiidreamteam\perfectmoney\events\GatewayEvent;

class PerfectMoneyController extends Controller
{
    public $enableCsrfValidation = false;

    public function init()
    {
        parent::init();
        /** @var Api $pm */
        $pm = \Yii::$app->get('pm');
        $pm->on(GatewayEvent::EVENT_PAYMENT_REQUEST, [$this, 'handlePaymentRequest']);
        $pm->on(GatewayEvent::EVENT_PAYMENT_SUCCESS, [$this, 'handlePaymentSuccess']);
    }

    public function actions()
    {
        return [
            'result' => [
                'class' => ResultAction::className(),
                'componentName' => 'pm',
                'redirectUrl' => ['/site/index'],
            ],
        ];
    }

    /**
     * @param GatewayEvent $event
     * @return bool
     */
    public function handlePaymentRequest($event)
    {
        $invoice = Invoice::findOne(ArrayHelper::getValue($event->gatewayData, 'PAYMENT_ID'));

        if (!$invoice instanceof Invoice ||
            $invoice->status != Invoice::STATUS_NEW ||
            ArrayHelper::getValue($event->gatewayData, 'PAYMENT_AMOUNT') != $invoice->amount ||
            ArrayHelper::getValue($event->gatewayData, 'PAYEE_ACCOUNT') != \Yii::$app->get('pm')->walletNumber
        )
            return;

        $invoice->debugData = VarDumper::dumpAsString($event->gatewayData);
        $event->invoice = $invoice;
        $event->handled = true;
    }

    /**
     * @param GatewayEvent $event
     * @return bool
     */
    public function handlePaymentSuccess($event)
    {
        $invoice = $event->invoice;

        // TODO: invoice processing goes here 
    }
}

Licence

MIT, (*9)

The Versions

11/03 2016

dev-master

9999999-dev http://yiidreamteam.com/yii2/perfect-money

PerfectMoney component for Yii2

  Sources   Download

MIT

The Requires

 

payment yii2 billing perfectmoney

11/03 2016

1.0.2

1.0.2.0 http://yiidreamteam.com/yii2/perfect-money

PerfectMoney component for Yii2

  Sources   Download

MIT

The Requires

 

payment yii2 billing perfectmoney

14/01 2016

1.0.1

1.0.1.0 http://yiidreamteam.com/yii2/perfect-money

PerfectMoney component for Yii2

  Sources   Download

MIT

The Requires

 

payment yii2 billing perfectmoney

06/02 2015

1.0.0

1.0.0.0 http://yiidreamteam.com/yii2/perfect-money

PerfectMoney component for Yii2

  Sources   Download

MIT

The Requires

 

payment yii2 billing perfectmoney