Jump to content

The gateway does not support that action


Sanjay Kumar

Recommended Posts

Hello,

I am trying to implement a non-merchant gateway, the gateway is working fine, however their is an issue I am facing after the payment is made, and the user is redirected to the blesta account, the payment is not being validated and applied to the transaction, the error I am getting is  "The gateway does not support that action".

This is the redirect code I am using 

        //$redirect_url = Configure::get("Blesta.gw_callback_url") . Configure::get("Blesta.company_id") . "/razorpay/" . $this->ifSet($contact_info['client_id']);
        $redirect_url = Configure::get("Blesta.gw_callback_url") . Configure::get("Blesta.company_id") . "/razorpay/" . $this->ifSet($contact_info['client_id']);
 

Please suggest If I am doing any mistake here

blesta error.png

Link to comment
Share on other sites

9 minutes ago, Blesta Addons said:

is a custom gateway ?


$this->Input->setErrors($this->getCommonError('general'));

in which function you have this code :

 

 

What is issue sir in this code - 

<?php
/**
 * Razorpay Payment Gateway
 *
 * @package blesta
 * @subpackage blesta.components.gateways.nonmerchant_demo
 * @copyright Copyright (c) 2018, WEBNOO Technologies Pvt. Ltd.
 * @license https://www.webnoo.com/license/ The WEBNOO License Agreement
 * @link http://www.webnoo.com/ Blesta
 */
class Razorpay extends NonmerchantGateway {
    /**
     * @var string The version of this gateway
     */
    private static $version = "1.0.0";
    /**
     * @var string The authors of this gateway
     */
    private static $authors = array(array('name' => "webnoo technologies pvt ltd", 'url' => "https://webnoo.com/"));
    /**
     * @var array An array of meta data for this gateway
     */
    private $meta;
    
    
    /**
     * Construct a new merchant gateway
     */
    public function __construct() {
        
        // Load components required by this gateway
        Loader::loadComponents($this, array("Input"));
        
        // Load models required by this gateway
        Loader::loadModels($this, array("Clients", "Contacts"));
        
        // Load the language required by this gateway
        Language::loadLang("razorpay", null, dirname(__FILE__) . DS . "language" . DS);
    }
    
    /**
     * Returns the name of this gateway
     *
     * @return string The common name of this gateway
     */
    public function getName() {
        return Language::_("Razorpay.name", true);
    }
    
    /**
     * Returns the version of this gateway
     *
     * @return string The current version of this gateway
     */
    public function getVersion() {
        return self::$version;
    }

    /**
     * Returns the name and URL for the authors of this gateway
     *
     * @return array The name and URL of the authors of this gateway
     */
    public function getAuthors() {
        return self::$authors;
    }
    
    /**
     * Return all currencies supported by this gateway
     *
     * @return array A numerically indexed array containing all currency codes (ISO 4217 format) this gateway supports
     */
    public function getCurrencies() {
        return array("INR","EUR", "GBP", "USD");
    }
    
    /**
     * Sets the currency code to be used for all subsequent payments
     *
     * @param string $currency The ISO 4217 currency code to be used for subsequent payments
     */
    public function setCurrency($currency) {
        $this->currency = $currency;
    }
    
    /**
     * Create and return the view content required to modify the settings of this gateway
     *
     * @param array $meta An array of meta (settings) data belonging to this gateway
     * @return string HTML content containing the fields to update the meta data for this gateway
     */
    public function getSettings(array $meta=null) {
        $this->view = $this->makeView("settings", "default", str_replace(ROOTWEBDIR, "", dirname(__FILE__) . DS));

        // Load the helpers required for this view
        Loader::loadHelpers($this, array("Form", "Html"));

        $this->view->set("meta", $meta);
        
        return $this->view->fetch();
    }
    
    /**
     * Validates the given meta (settings) data to be updated for this gateway
     *
     * @param array $meta An array of meta (settings) data to be updated for this gateway
     * @return array The meta data to be updated in the database for this gateway, or reset into the form on failure
     */
    public function editSettings(array $meta) {
        // Verify meta data is valid
        $rules = array(
            'api_key'=>array(
                'valid'=>array(
                     'rule' => "isEmpty",
                    'negate' => true,
                    'message' => Language::_("Razorpay.!error.api_key.valid", true)
                )
            )
            
            #
            # TODO: Do error checking on any other fields that require it
            #
            
        );
        
        $this->Input->setRules($rules);
        
        // Validate the given meta data to ensure it meets the requirements
        $this->Input->validates($meta);
        // Return the meta data, no changes required regardless of success or failure for this gateway
        return $meta;
    }
    
    /**
     * Returns an array of all fields to encrypt when storing in the database
     *
     * @return array An array of the field names to encrypt when storing in the database
     */
    public function encryptableFields() {
        
        #
        # TODO: return an array of all meta field names to store encrypted
        #
        
        return array("api_key");
    }
    
    /**
     * Sets the meta data for this particular gateway
     *
     * @param array $meta An array of meta data to set for this gateway
     */
    public function setMeta(array $meta=null) {
        $this->meta = $meta;
    }
    
    /**
     * Returns all HTML markup required to render an authorization and capture payment form
     *
     * @param array $contact_info An array of contact info including:
     *     - id The contact ID
     *     - client_id The ID of the client this contact belongs to
     *     - user_id The user ID this contact belongs to (if any)
     *     - contact_type The type of contact
     *     - contact_type_id The ID of the contact type
     *     - first_name The first name on the contact
     *     - last_name The last name on the contact
     *     - title The title of the contact
     *     - company The company name of the contact
     *     - address1 The address 1 line of the contact
     *     - address2 The address 2 line of the contact
     *     - city The city of the contact
     *     - state An array of state info including:
     *         - code The 2 or 3-character state code
     *         - name The local name of the country
     *     - country An array of country info including:
     *         - alpha2 The 2-character country code
     *         - alpha3 The 3-cahracter country code
     *         - name The english name of the country
     *         - alt_name The local name of the country
     *     - zip The zip/postal code of the contact
     * @param float $amount The amount to charge this contact
     * @param array $invoice_amounts An array of invoices, each containing:
     *     - id The ID of the invoice being processed
     *     - amount The amount being processed for this invoice (which is included in $amount)
     * @param array $options An array of options including:
     *     - description The Description of the charge
     *     - return_url The URL to redirect users to after a successful payment
     *     - recur An array of recurring info including:
     *         - amount The amount to recur
     *         - term The term to recur
     *         - period The recurring period (day, week, month, year, onetime) used in conjunction with term in order to determine the next recurring payment
     * @return string HTML markup required to render an authorization and capture payment form
     */
    public function buildProcess(array $contact_info, $amount, array $invoice_amounts=null, array $options=null) {
        $client = $this->Clients->get($contact_info['client_id']);
        $contact = $this->Contacts->getNumbers($contact_info['id'], "phone");
        
        $this->view = $this->makeView("process", "default", str_replace(ROOTWEBDIR, "", dirname(__FILE__) . DS));

        // Load the helpers required for this view
        Loader::loadHelpers($this, array("Form", "Html"));
         //redirection URL
        //$redirect_url = Configure::get("Blesta.gw_callback_url") . Configure::get("Blesta.company_id") . "/razorpay/" . $this->ifSet($contact_info['client_id']);
        $redirect_url = Configure::get("Blesta.gw_callback_url") . Configure::get("Blesta.company_id") . "/razorpay/" . $this->ifSet($contact_info['client_id']);
        
        $order_id = $this->ifSet($contact_info['client_id']) . "-" . time();
        $api_key = $this->ifSet($this->meta['api_key']);
         $razornames = $this->ifSet($this->meta['razornames']);
        $rezordescription = $this->ifSet($this->meta['rezordescription']);
        $razorcolors = $this->ifSet($this->meta['razorcolors']);
        $razorlogos = $this->ifSet($this->meta['razorlogos']);
        $fields = array( 'api_key' => $api_key);
        $post_to = "https://checkout.razorpay.com/v1/checkout.js";
        
        #
        # TODO: Define all form fields and the $post_to fields
        #

        $this->view->set("post_to", $post_to);
        $this->view->set("fields", $fields);
        
        //return $this->view->fetch();
        $name = $this->ifSet($contact_info['first_name']);
        $amount = $amount*100;
        $email = $this->ifSet($client->email);
        $phone = $this->ifSet($contact[0]->number);
        $objects = new form();
        $tokens = $objects->getCsrfToken();
        $test  = "<form name='razorpay-form' id='razorpay-form' action='$redirect_url' method='POST'>
                     <input name='_csrf_token' value='$tokens' type='hidden'>
                  <script
                    src='https://checkout.razorpay.com/v1/checkout.js'
                    data-key='$api_key'
                    data-amount='$amount'
                    data-buttontext='Click To Pay Now - Proceed To Razor Payment Page'
                    data-name='$razornames'
                    data-order.id='$order_id'
                    data-description='$rezordescription'
                    data-image='$razorlogos'
                    data-prefill.name='$name'
                    data-prefill.email='$email'
                    data-prefill.contact='$phone'
                    data-theme.color='$razorcolors'
                ></script><input type='hidden' value='Hidden Element' name='hidden'>
        </form>";
        
        return $test;
    }
    
    /**
     * Validates the incoming POST/GET response from the gateway to ensure it is
     * legitimate and can be trusted.
     *
     * @param array $get The GET data for this request
     * @param array $post The POST data for this request
     * @return array An array of transaction data, sets any errors using Input if the data fails to validate
     *  - client_id The ID of the client that attempted the payment
     *  - amount The amount of the payment
     *  - currency The currency of the payment
     *  - invoices An array of invoices and the amount the payment should be applied to (if any) including:
     *      - id The ID of the invoice to apply to
     *      - amount The amount to apply to the invoice
     *     - status The status of the transaction (approved, declined, void, pending, reconciled, refunded, returned)
     *     - reference_id The reference ID for gateway-only use with this transaction (optional)
     *     - transaction_id The ID returned by the gateway to identify this transaction
     */
    public function validate(array $get, array $post) {

        #
        # TODO: Verify the get/post data, then return the transaction
        #
        #

        // Log the successful response
        $this->log($this->ifSet($_SERVER['REQUEST_URI']), serialize($post), "output", true);
        
        return array();
    }
    
    /**
     * Returns data regarding a success transaction. This method is invoked when
     * a client returns from the non-merchant gateway's web site back to Blesta.
     *
     * @param array $get The GET data for this request
     * @param array $post The POST data for this request
     * @return array An array of transaction data, may set errors using Input if the data appears invalid
     *  - client_id The ID of the client that attempted the payment
     *  - amount The amount of the payment
     *  - currency The currency of the payment
     *  - invoices An array of invoices and the amount the payment should be applied to (if any) including:
     *      - id The ID of the invoice to apply to
     *      - amount The amount to apply to the invoice
     *     - status The status of the transaction (approved, declined, void, pending, reconciled, refunded, returned)
     *     - transaction_id The ID returned by the gateway to identify this transaction
     */
    public function success(array $get, array $post) {
        
        #
        # TODO: Return transaction data, if possible
        #
        
        $this->Input->setErrors($this->getCommonError("unsupported"));
    }
    
    /**
     * Captures a previously authorized payment
     *
     * @param string $reference_id The reference ID for the previously authorized transaction
     * @param string $transaction_id The transaction ID for the previously authorized transaction
     * @return array An array of transaction data including:
     *     - status The status of the transaction (approved, declined, void, pending, reconciled, refunded, returned)
     *     - reference_id The reference ID for gateway-only use with this transaction (optional)
     *     - transaction_id The ID returned by the remote gateway to identify this transaction
     *     - message The message to be displayed in the interface in addition to the standard message for this transaction status (optional)
     */
    public function capture($reference_id, $transaction_id, $amount, array $invoice_amounts=null) {
        
        #
        # TODO: Return transaction data, if possible
        #
        
        $this->Input->setErrors($this->getCommonError("unsupported"));
    }
    
    /**
     * Void a payment or authorization
     *
     * @param string $reference_id The reference ID for the previously submitted transaction
     * @param string $transaction_id The transaction ID for the previously submitted transaction
     * @param string $notes Notes about the void that may be sent to the client by the gateway
     * @return array An array of transaction data including:
     *     - status The status of the transaction (approved, declined, void, pending, reconciled, refunded, returned)
     *     - reference_id The reference ID for gateway-only use with this transaction (optional)
     *     - transaction_id The ID returned by the remote gateway to identify this transaction
     *     - message The message to be displayed in the interface in addition to the standard message for this transaction status (optional)
     */
    public function void($reference_id, $transaction_id, $notes=null) {
        
        #
        # TODO: Return transaction data, if possible
        #
        
        $this->Input->setErrors($this->getCommonError("unsupported"));
    }
    
    /**
     * Refund a payment
     *
     * @param string $reference_id The reference ID for the previously submitted transaction
     * @param string $transaction_id The transaction ID for the previously submitted transaction
     * @param float $amount The amount to refund this card
     * @param string $notes Notes about the refund that may be sent to the client by the gateway
     * @return array An array of transaction data including:
     *     - status The status of the transaction (approved, declined, void, pending, reconciled, refunded, returned)
     *     - reference_id The reference ID for gateway-only use with this transaction (optional)
     *     - transaction_id The ID returned by the remote gateway to identify this transaction
     *     - message The message to be displayed in the interface in addition to the standard message for this transaction status (optional)
     */
    public function refund($reference_id, $transaction_id, $amount, $notes=null) {
        
        #
        # TODO: Return transaction data, if possible
        #
        
        $this->Input->setErrors($this->getCommonError("unsupported"));
    }
}
?>

 

 

I have done all those thinks, I have tested basis thinks from my side but still is not supporting, Please verify the code and help me.

 

 

Link to comment
Share on other sites

15 hours ago, Blesta Addons said:

    public function success (array $get, array $post) {
        
        #
        # TODO: Return transaction data, if possible
        #
        
        //$this->Input->setErrors($this->getCommonError("unsupported"));
    }

just change the success function to this code . as you are not doing anything so it should not return any error .

Hello Sir,

    this error 'The gateway does not support that action.' showing for using razorpay payment gateway.

   Because  blesta is not validate in my payment gateway (razorpay).So, Attempt to validate the notification giving the response - null.

  Please resolve my problem.

I am commenting that code 

//$this->Input->setErrors($this->getCommonError("unsupported"));

 from your advising, but not resolve my problem.

please sir help me for resolve my problem.

Link to comment
Share on other sites

  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...