Code Monkey home page Code Monkey logo

laravel-freekassa's Introduction

Laravel payment processor package for FreeKassa gateway

Latest Stable Version Build Status StyleCI CodeFactor Total Downloads License

Accept payments via FreeKassa (free-kassa.ru) using this Laravel framework package (Laravel).

  • receive payments, adding just the two callbacks

Laravel >= 8.*, PHP >= 7.3

To use the package for Laravel 7.* use the 3.x branch

To use the package for Laravel 6.* use the 2.x branch

To use the package for Laravel 5.* use the 1.x branch

Installation

Require this package with composer.

composer require maksa988/laravel-freekassa

If you don't use auto-discovery, add the ServiceProvider to the providers array in config/app.php

Maksa988\FreeKassa\FreeKassaServiceProvider::class,

Add the FreeKassa facade to your facades array:

'FreeKassa' => Maksa988\FreeKassa\Facades\FreeKassa::class,

Copy the package config to your local config with the publish command:

php artisan vendor:publish --provider="Maksa988\FreeKassa\FreeKassaServiceProvider"

Configuration

Once you have published the configuration files, please edit the config file in config/freekassa.php.

  • Create an account on free-kassa.ru
  • Add your project, copy the project_id, secret_key and secret_key_second params and paste into config/freekassa.php
  • After the configuration has been published, edit config/freekassa.php
  • Set the callback static function for searchOrder and paidOrder
  • Create route to your controller, and call FreeKassa::handle method

Usage

  1. Generate a payment url or get redirect:
$amount = 100; // Payment`s amount

$url = FreeKassa::getPayUrl($amount, $order_id);

$redirect = FreeKassa::redirectToPayUrl($amount, $order_id);

You can add custom fields to your payment:

$rows = [
    'time' => Carbon::now(),
    'info' => 'Local payment'
];

$url = FreeKassa::getPayUrl($amount, $order_id, $email, $phone, $rows);

$redirect = FreeKassa::redirectToPayUrl($amount, $order_id, $email, $phone, $rows);

$email and $phone can be null.

  1. Process the request from FreeKassa:
FreeKassa::handle(Request $request)

Important

You must define callbacks in config/freekassa.php to search the order and save the paid order.

'searchOrder' => null  // FreeKassaController@searchOrder(Request $request)
'paidOrder' => null  // FreeKassaController@paidOrder(Request $request, $order)

Example

The process scheme:

  1. The request comes from free-kassa.ru GET / POST http://yourproject.com/freekassa/result (with params).
  2. The functionFreeKassaController@handlePayment runs the validation process (auto-validation request params).
  3. The method searchOrder will be called (see config/freekassa.php searchOrder) to search the order by the unique id.
  4. If the current order status is NOT paid in your database, the method paidOrder will be called (see config/freekassa.php paidOrder).

Add the route to routes/web.php:

 Route::get('/freekassa/result', 'FreeKassaController@handlePayment');

Note: don't forget to save your full route url (e.g. http://example.com/freekassa/result ) for your project on free-kassa.ru.

Create the following controller: /app/Http/Controllers/FreeKassaController.php:

class FreeKassaController extends Controller
{
    /**
     * Search the order in your database and return that order
     * to paidOrder, if status of your order is 'paid'
     *
     * @param Request $request
     * @param $order_id
     * @return bool|mixed
     */
    public function searchOrder(Request $request, $order_id)
    {
        $order = Order::where('id', $order_id)->first();

        if($order) {
            $order['_orderSum'] = $order->sum;

            // If your field can be `paid` you can set them like string
            $order['_orderStatus'] = $order['status'];

            // Else your field doesn` has value like 'paid', you can change this value
            $order['_orderStatus'] = ('1' == $order['status']) ? 'paid' : false;

            return $order;
        }

        return false;
    }

    /**
     * When paymnet is check, you can paid your order
     *
     * @param Request $request
     * @param $order
     * @return bool
     */
    public function paidOrder(Request $request, $order)
    {
        $order->status = 'paid';
        $order->save();

        //

        return true;
    }

    /**
     * Start handle process from route
     *
     * @param Request $request
     * @return mixed
     */
    public function handlePayment(Request $request)
    {
        return FreeKassa::handle($request);
    }
}

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please send me an email at [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

laravel-freekassa's People

Contributors

maksa988 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

laravel-freekassa's Issues

Fix

email changed to em in link generation

// User email (optional) if (! is_null($email)) { $query['em'] = $email; }

Please fix this issue

HTTP ERROR 500

Hi! i have HTTP ERROR 500 after i add this line:

Maksa988\FreeKassa\FreeKassaServiceProvider::class,

what to write for callback?

You wrote null, how should we change?
https://i.imgur.com/VZCDQ6q.png

I uncommented the lines and removed null s.
https://i.imgur.com/fidTbs3.png as here.

I get nothing https://imgur.com/GE6c1mC when I send GET params manually. What am I doing? I'm just wondering even if tried by yourself?

because, payment handler method in freekassacontroller does not get the expected result.

https://i.imgur.com/T58t5Gs.png

image

I think, you have to recheck and make sure it works. I tested this in trial mode of free-kassa.

Привет

Привет, скрипт по Фрикассе на Ларавель еще актуален? поставил и не получается настроить, спасибо заранее за любой ответ)

New offer

Add custom currency
getPayUrl($amount, $order_id, $currency = null ,$phone = null, $email = null, $user_parameters = [])

// Payment currency if (! is_null($currency)) { $query['i'] = $currency; }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.