[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 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:
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:
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:
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]"> 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> 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:
HTML Code:
<plugins> Code:
Global HTML Code:
<phrases> 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:
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:
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:
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:
That?s it folks! Check out the pgStormPay hack if you still need more details. |
Can someone do one for me for verotel with re-occuring billing... i can pay for this mod...
|
I am extending the Payment Gateway
What is username Hambil here? I'll need to change it right?? |
I'm sorry, I don't understand what you are asking me...
|
in a lot of places in your code your username is mentioned
like in PHP Code:
|
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.. |
Quote:
|
Quote:
|
Quote:
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?? |
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.
|
Quote:
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. |
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. |
Does your tutorial work for 3.6.7?
Whoops!! I mean 3.7 |
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. |
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. |
Does anyone know if this tutorial works for version 3.8.7?
|
Anyone?
|
Absolutely!
|
IF anyone gets 2checkout working with vbulletin I'll pay yoU!
|
I haven't looked in a very long time, but isn't 2CO already built in?
|
It hasn't worked for years.
|
same for vb4?
|
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 | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|