vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3 Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=187)
-   -   [How-To] Extending the vBulletin Payment Gateway (https://vborg.vbsupport.ru/showthread.php?t=125369)

hambil 08-30-2006 10:00 PM

[How-To] Extending the vBulletin Payment Gateway
 
Overview

This tutorial shows you how to add a new payment method to the vBulletin Payment Gateway. It uses my pgStormPay hack as the example.

Step 1: The database

The first thing you need to understand is the paymentapi table in the database.

Code:

Field          Type
-----          ----
Title          varchar(250)
Currency      varchar(250)
Recurring      smallint(6)
Classname      varchar(250)
Active        smallint(6)
Settings      Mediumtext

Title
The title of the payment method, in our case ?StormPay?.

Currency
Comma delimited list of currency types this payment method can accept. StormPay only accepts us dollars, so in our case it?s just ?usd?.

Recurring
Whether or not this payment method can handle recurring payments (monthly, yearly, etc?).

Classname
The name of the class in yourforum/includes/paymentapi that contains the functions needed to use this payment method. This field name is a little deceptive, because it you look in yourforum/payment_gateway.php you see the following:

PHP Code:

require_once(DIR '/includes/paymentapi/class_' $api['classname'] . '.php');
$api_class 'vB_PaidSubscriptionMethod_' $api['classname']; 

So what this field really represents is the unique part of the filename and the classname. class_classname.php and vB_PaidSubscriptionMethod_classname. Or in our case: class_stormpay.php and vB_PaidSubscriptionMethod_stormpay. So you can see the value of this field for us should be just ?stormpay?.

Active
Is this payment method active? In general you should set this to 0 initially and let the admin activate your payment method from the admincp.

Settings
This is a critical part of the payment method, and needs some explaining. It represents the information the admin must fill in for this payment method to work. It will be different for each payment method. It is an array of arrays, with each inner array representing a field to be filled out. The structure of the inner array is similar to a html input element. It has a type, a value, and how to validate the value. For StormPay, we create four fields, as shown bellow.

PHP Code:

$email = array("type" => "text""value" => """validate" => "string");
$secret_code = array("type" => "text""value" => """validate" => "string");
$md5 = array("type" => "yesno""value" => "0""validate" => "yesno");
$test_mode = array("type" => "yesno""value" => "0""validate" => "yesno");
$settings = array("secret_code" => $secret_code"MD5" => $md5"test_mode" => $test_mode"email" => $email); 

Putting it into the database
Once you know the values you want for your payment method, you can write them into the database in your install section of your product xml file.

PHP Code:

// add the storm pay record to the paymentapi table
$db->hide_errors();
$db->query_write("
            INSERT INTO " 
TABLE_PREFIX "paymentapi
            (title, currency, recurring, classname, active, settings)
            VALUES
            ('StormPay', 'usd', 1, 'stormpay', 0, '" 
$db->escape_string(serialize($settings)) . ')
");
$db->show_errors(); 

Step 2: The template

Next you?ll need to create a template for your payment form. This is the form that is filled out automatically by vBulletin before it submits data to your payment method. In the case of StormPay, we are going to use a simple single item payment, as specified in their integration api: http://www.stormpay.com/stormpay/user/manual.php

Note: I use unit_price instead of amount. It works the same, and seems to clear up some minor bugs.

HTML Code:

<input type="hidden" name="test_mode" value="$settings[test_mode]">
<input type="hidden" name="payee_email" value="$settings[email]">
<input type="hidden" name="product_name" value="$subinfo[title] Subscription">
<input type="hidden" name="description" value="$subinfo[description]">
<input type="hidden" name="unit_price" value="$cost">
<input type="hidden" name="user1" value="$hash">
<input type="hidden" name="require_IPN" value="1">
<input type="hidden" name="return_URL" value="$vboptions[bburl]/payment_gateway.php?method=stormpay">

In the case of StormPay we are telling it we require IPN (Immediate Payment Notification). StormPay will post back to the ?return_URL?, which we set to the payment_gateway.php file and tell it the method is stormpay. No code changes need to be made to the payment_gateway.php as it just uses the method to create an instance of the class we will look at later in this tutorial. Notice we are using some of the settings we created when we added our payment method to the database.

To create this template, vBulletin expects it to have the name subscription_payment_classname. So in our case the template section of the product xml would look like this:

HTML Code:

<templates>
<template name="subscription_payment_stormpay" templatetype="template" date="0" username="Hambil" version="3.6.0">
<![CDATA[?]]>
</template>
</templates>

Step 3: The plugin
This is not the only way to accomplish this step, but it is the way I have chosen. You need to add the StormPay phrase to the vbphrases array, so it can appear on the ?Order Using? button. Since these are service names, and not translated, vBulletin hard codes them in yourforum/payment.php. However, it does provide a hook (paidsub_order_start).

The hook code we need is very simple:

PHP Code:

$vbphrase += array( 'stormpay' => 'StormPay' ); 

The plugins section of your product xml would look like this:

HTML Code:

<plugins>
<plugin active="1" executionorder="5">
<title><![CDATA[StormPay - add 'order using']]></title>
<hookname>paidsub_order_start</hookname>
<phpcode><![CDATA[?]]></phpcode>
</plugin>
</plugins>

Step 4: The phrases

Code:

Global
setting_stormpay_email_desc        This is the email address you want to receive payment (the pay to email address).
setting_stormpay_email_title      Email
setting_stormpay_secret_code_desc  This must be the EXACT secret code value you set in your "Profile" > "IPN Configuration" form in StormPay.
setting_stormpay_secret_code_title Secrect Code
setting_stormpay_test_mode_desc    Enable Test Mode. Transactions in test mode are 'fake' and not charged to an account.
setting_stormpay_test_mode_title  Test Mode
setting_stormpay_MD5_desc          If you enable MD5 encryption you MUST set the list of IPN variables for Hashing in the "IPN Configuration" form of your StormPay Merchant Account to transaction_id; transaction_date; amount; user_id; user1.
setting_stormpay_MD5_title        Use MD5 Encryption
stormpay_order_instructions        To pay for your subscription via StormPay click the button below and follow the onscreen instructions.

Error Messages
stormpay_pending    Your subscription is Pending. Please check the StormPay website.
stormpay_cancel    Your subscription was canceled.
stormpay_error      An error was encountered processing your subscription. You have not been charged.

The phrases section of your product xml would look like this:

HTML Code:

<phrases>
<phrasetype name="GLOBAL" fieldname="global">?</phrasetype>
<phrasetype name="Error Messages" fieldname="error">?</phrasetype>
</phrases>

Step 5: The payment method class

This is the final part, and the real meat of the payment method. It ties everything else together. It extends the vBulletin class vB_PaidSubscriptionMethod, and the easiest thing is probably to copy one of the existing classes and modify it.

It has three functions you need to deal with:

verify_payment() function
This function will depend on what the payment method you are using sends back to the payment_gateway.php file. In general you?ll want to get the variables from the submitted request, check them for successful payment, and return true or false to the payment_gateway.php file. Here is a look at the verify_payment() function for StormPay:

PHP Code:

function verify_payment()
{            
              
$this->registry->input->clean_array_gpc('r', array(
                          
'secret_code'                => TYPE_STR,
                          
'product_name'             => TYPE_STR,
                          
'status'                          => TYPE_STR,
                          
'unit_price'                    => TYPE_STR,
                          
'transaction_id'  => TYPE_NUM,
                          
'transaction_date'          => TYPE_STR,
                          
'user_id'                                    => TYPE_STR,
                          
'user1'                                      => TYPE_STR
              
));
   
              
$this->secret_code $this->registry->GPC['secret_code'];
              
$this->product_name $this->registry->GPC['product_name'];
              
$this->status $this->registry->GPC['status'];
              
$this->unit_price $this->registry->GPC['unit_price'];
              
$this->transaction_id $this->registry->GPC['transaction_id'];
              
$this->transaction_date $this->registry->GPC['transaction_date'];
              
$this->user_id $this->registry->GPC['user_id'];
              
$this->user1 $this->registry->GPC['user1'];
                          
              
// Check MD5 hash
              
if ($this->settings['MD5'] AND $this->status != 'TEST')
              {
                          
$calc_hash_value MD5($this->transaction_id.":".$this->transaction_date.":".MD5($this->settings['secret_code']). ":".$this->amount.":".$this->user_id.":".$this->user1);
                          
$sent_hash_value rawurldecode($this->secret_code);
              }
   
              if (!
$this->settings['Md5'] OR $this->status == 'TEST' OR $calc_hash_value === $sent_hash_value)
              {
                          
$this->paymentinfo $this->registry->db->query_first("
                                      SELECT paymentinfo.*, user.username
                                      FROM " 
TABLE_PREFIX "paymentinfo AS paymentinfo
                                      INNER JOIN " 
TABLE_PREFIX "user AS user USING (userid)
                                      WHERE hash = '" 
$this->registry->db->escape_string($this->registry->GPC['user1']) . "'
                          "
);
                          
// lets check the values
                          
if (!empty($this->paymentinfo))
                          {
                                      
$sub $this->registry->db->query_first("SELECT * FROM " TABLE_PREFIX "subscription WHERE subscriptionid = " $this->paymentinfo['subscriptionid']);
                                      
$cost unserialize($sub['cost']);
                                      
$this->paymentinfo['currency'] = 'usd';
                                      
$this->paymentinfo['amount'] = floatval($this->unit_price);
                                      if (
$this->status == 'SUCCESS' OR $this->status == 'COMPLETE' OR $this->status == 'TEST')
                                      {
                                                  
$this->type 1;
                                                  return 
true;
                                      }
                                      else
                                      {
                                                  if (
$this->status == 'PENDING')
                                                              
$this->error fetch_error('stormpay_pending');
                                                  else if (
$this->status == 'CANCEL')
                                                              
$this->error fetch_error('stormpay_cancel');
                                                  else
                                                              
$this->error fetch_error('stormpay_error');
                                      }                                  
                          }
              }
              return 
false;


Note: $this->type defaults to 0, and if the payment is successful you must set it to 1, as well as returning true. A type of 2 is a delete, and handled by vBulletin so you don?t need to worry about it.

test() function
This function is used by the Test Communications link under the Paid Subscriptions menu in the admincp. In general it is just a validation of the specific data (settings) needed by the payment method. In our case, we need a valid email and a ?secret code?. So, or method looks like this:

PHP Code:

function test()
{
  return (!empty(
$this->settings['secret_code']) AND !empty($this->settings['email']));


generate_form_html() function
This function generates the form that is sent to your payment method, using the template you created earlier. Several variables get passed into the method, and you can also retrieve any values you put into settings. Here is a look at the StormPay function.

PHP Code:

function generate_form_html($hash$cost$currency$subinfo$userinfo$timeinfo)
{                      
              
$form['action'] = 'https://www.stormpay.com/stormpay/handle_gen.php';
              
$form['method'] = 'post';
                          
              
// load settings into array so the template system can access them
              
$settings =& $this->settings;
   
              
$settings['email'] = htmlspecialchars_uni($settings['email']);
              
$settings['product_name'] = htmlspecialchars_uni($this->registry->subinfo['title']);
                          
              eval(
'$form[\'hiddenfields\'] .= "' fetch_template('subscription_payment_stormpay') . '";');
              return 
$form;


Feedback
One final thing to be aware of is that in order to display feedback from your payment method payment_gateway.php requires the value ?display_feedback? be set to true. It defaults to false in the vBulletin class you extend. So, you must force it true:

PHP Code:

var $display_feedback true

That?s all!
That?s it folks! Check out the pgStormPay hack if you still need more details.

MajorFm.com 09-01-2006 12:49 AM

Can someone do one for me for verotel with re-occuring billing... i can pay for this mod...

rungss 03-16-2007 05:35 PM

I am extending the Payment Gateway

What is username Hambil here?

I'll need to change it right??

hambil 03-16-2007 05:54 PM

I'm sorry, I don't understand what you are asking me...

rungss 03-16-2007 06:30 PM

in a lot of places in your code your username is mentioned

like in
PHP Code:

<template name="subscription_payment_stormpay" templatetype="template" date="0" username="Hambil" version="3.6.0"

what is it the username of the administrator of the forum or the username of the person who is updating the plugin or what??

rungss 03-16-2007 06:37 PM

1 Attachment(s)
After installing my payment gateway extenssion I am geting two submit button instead of one..

see the image attached.

any idea why it can happen..

rungss 03-16-2007 07:22 PM

Quote:

Originally Posted by rungss (Post 1205053)
After installing my payment gateway extenssion I am geting two submit button instead of one..

see the image attached.

any idea why it can happen..

this issue is solved...

hambil 03-17-2007 03:18 AM

Quote:

Originally Posted by rungss (Post 1205048)
in a lot of places in your code your username is mentioned

like in
PHP Code:

<template name="subscription_payment_stormpay" templatetype="template" date="0" username="Hambil" version="3.6.0"

what is it the username of the administrator of the forum or the username of the person who is updating the plugin or what??

In the case you show it's a standard part of the product.xml - it's the name of the author of the template. It will show up if you look at the templates change history.

rungss 03-19-2007 04:58 AM

Quote:

Originally Posted by hambil (Post 1205360)
In the case you show it's a standard part of the product.xml - it's the name of the author of the template. It will show up if you look at the templates change history.

ok Thanks got it,

It can be used for logging purpose but not completely coz it can't be associated with a user in the user table of the party who is installing the hack. because the developer need not be a member in the forum of the party installing it.

right??

hambil 03-19-2007 05:09 AM

Right, which really doesn' t have anything to do with this hack, it's the same for all hacks. It's just the name of the author of the template.

rungss 03-19-2007 07:03 AM

Quote:

Originally Posted by hambil (Post 1207132)
it's the same for all hacks

of course, of course..
I was just pointing it out in general.
This thread is not just about this Hack.

It's about learning how to develop a new plugin isn't it.

Thanks a lot for this thread.

I was able to develop my first vB plugin as per the specification because of this thread.

Champster 04-22-2007 07:36 PM

Can this be used to modify an existing payment apt, ccbill specifically?

I need to modify vb CCBill Form Character Code where the form accepts more than just one form code.

nanaimobar 02-20-2008 08:32 PM

Does your tutorial work for 3.6.7?

Whoops!! I mean 3.7

Mum 06-22-2008 08:08 PM

I am trying to write a payment api at the moment, and was querying 'Settings
This is a critical part of the payment method, and needs some explaining. It represents the information the admin must fill in for this payment method to work. It will be different for each payment method. It is an array of arrays, with each inner array representing a field to be filled out. The structure of the inner array is similar to a html input element. It has a type, a value, and how to validate the value. For StormPay, we create four fields, as shown bellow.'

how can i work out what my processor (paymex) requires?

--------------- Added [DATE]1214174919[/DATE] at [TIME]1214174919[/TIME] ---------------

I foudn these, but not sure which relates to what http://www.paymex.co.nz/kb.aspx?id=34 hoping that someone can help me, i can pay a small amount.

imedic 11-03-2008 05:48 AM

I am looking for a modification of payment api that permit manual payment approved by admin. User pays in various ways, send me confirmation of payment and I validate manually his subscription.

I have a small professional community so total number cannot go above 10k users and some of them are not familiar with electronic payment. They will send money by post, direct payment in bank account (or even pay me cash when we meet :) ) and I want to take advantage of the subscription system build in VB (reminders for end of subscription, period subscripted) so I don't need to make a separate group and write down each username , and period of subscription.

My alternative for the moment is to make a group user request to join and I approve after receiving the confirmation of payment. This way I need to keep manual track of each user time of subscription ending and name.

I have no coding knowledge but willing to learn or appreciate a helping hand.
Maybe I am lucky and there is a setting I don't know in vb allowing me to do this !

PS I will like to have this additional to electronic payment (for users able to pay this way)
after I manage to integrate my local card processor using this tutorial I am thankful for :)

Edit:
Found by accident a possible solution. In Subscription management make a valid payed subscription (even if no bank set) and manually add users from drop down menu in Subscription manager page from Admin CP. Hope is useful for some.

Manoel J?nior 06-29-2011 12:53 AM

Does anyone know if this tutorial works for version 3.8.7?

Manoel J?nior 07-01-2011 12:17 PM

Anyone?

DivisionByZero 07-02-2011 10:40 AM

Absolutely!

MentaL 07-02-2011 10:46 AM

IF anyone gets 2checkout working with vbulletin I'll pay yoU!

DivisionByZero 07-03-2011 12:22 PM

I haven't looked in a very long time, but isn't 2CO already built in?

MentaL 07-05-2011 10:39 AM

It hasn't worked for years.

M.C. 08-19-2012 12:30 PM

same for vb4?

Masked Crusader 12-25-2012 06:41 AM

I am looking to add Stripe (Stripe.com) as one of my payment methods. Anyone have a tutorial for vB4?


All times are GMT. The time now is 06:17 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01447 seconds
  • Memory Usage 1,922KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (4)bbcode_html_printable
  • (10)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (23)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete