Coder Social home page Coder Social logo

payum-setefi's Introduction

Setefi Payum gateway

A Payum gateway for Setefi payment processor.

Note: all user IDs, passwords and secrets listed are documented by Setefi (section "TEST ENVIRONMENT CREDENTIALS") and shared with all other Setefi sandbox users, they're NOT a secret.

Sylius Integration

# app/config/config.yml
parameters:
    # NOTE:
    # these are documented by Setefi and shared among all sandbox users, they're NOT a secret
    setefi.id: "99999999"
    setefi.password: "99999999"
    setefi.sandbox: true # false in config_prod.yml

payum:
    gateways:
        setefi:
            factory: "setefi"
            payum.http_client: "@sylius.payum.http_client"
            terminal_id: "%setefi.id%"
            terminal_password: "%setefi.password%"
            sandbox: "%setefi.sandbox%"

sylius_payment:
    gateways:
        setefi: Setefi

After having done this, enable the payment method in the Sylius admin interface.

(Note: Any testing of the integration must be done on a public-accessible URL (ie. by using ngrok) because Setefi backend needs to be able to do valid server-to-server requests for the process to complete successfully.)

Setefi sandbox environment

Log in to Setefi's sandbox environment:

(Note: these are documented by Setefi and shared among all sandbox users, they're NOT a secret)

  • Codice Commerciante: 009999999
  • Codice Utente: 009999999
  • Password: Setefi14

Note that your transactions will be among all other sandbox's users' transactions, you need to find your own to verify it works.

Technical implementation

  • Entrypoint is Webburza\Payum\Setefi\SetefiGatewayFactory which registers all known actions, sets up config and creates a new Api.
  • Webburza\Payum\Setefi\Api is a collection of helpers and constants specific to this provider, it gets injected to all actions implementing Payum\Core\ApiAwareInterface.
  • Every action has a specific task and they declare on which part of the process they work on by implementing support($request) from Payum\Core\Action\ActionInterface. The action name itself does not matter.
    For example, Webburza\Payum\Setefi\Action\CancelAction declares it can handle Payum\Core\Request\Cancel request and it will receive all those types of requests to handle.
    Action and the request are two different things, you can (and do) have much more actions than you do request types (some gateways have no custom request types).
  • We can also define some custom request types such as Webburza\Payum\Setefi\Request\CreateTransaction for situations where domain-specific events need to happen. After having defined them, we register actions to handle them the same way we do native actions.

Transaction sequence

  1. Webburza\Payum\Setefi\Action\StatusAction marks the payment request as new
  2. Webburza\Payum\Setefi\Action\CaptureAction triggers Webburza\Payum\Setefi\Request\CreateTransaction request
  3. a new Setefi transaction is created using Webburza\Payum\Setefi\Action\CreateTransactionAction and a server-to-server (S2S) request
  4. if successful, the user is redirected to Setefi web interface
    1. if payment successful, Setefi does a S2S request and Webburza\Payum\Setefi\Action\StatusAction marks the payment request as captured
    2. if payment not successful, Setefi does a S2S request and Webburza\Payum\Setefi\Action\StatusAction marks the payment request as canceled
  5. response to 5. is a valid redirect URL for Setefi to redirect to user back to
  6. process complete

Transaction sequence

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.