Skip to content

PayPal IPN wrapper class to handle the most basic needs for subscription handling in software products

Notifications You must be signed in to change notification settings

KIvanow/PaypalIPNHandler

Repository files navigation

PayPalIPNHandler

PayPal Instant Payment Notifications are the almost ideal way to implement subscriptions for services when you live in countries that are not yet supported by Stripe, Braintree or for some other reason you can not use something else.

Documentation about Instant Payment Notifications can be found here

You can track the history of your notifications here. Once notification is send and received, you can resend it over and over for testing purposes.

It took me some time to tackle all of the documentation and messages from PayPal.

Here is a simplified solution.

There are 2 sql tables - subscriptionCancelations and subscriptionUpdates. Everytime user cancels the subscription, or the subscription is canceled because of a payment error, update is inserted in subscriptionCancelations. Everytime the user pays for your product, update is inserted in subscriptionUpdates and all of his cancelations are soft deleted. To check if the user has an active subscription see if there are subscriptionUpdates with user email and if there are no subscriptionCancelations with the same email.

The fields in the tables can be changed for your needs.

##Files in the repo

  • PaypalIPNHandler.php - Basic controller, containing the logic
    • updateSubscription
    • cancelSubscription
    • isSubscriptionActive
    • receiveIPN - Function that expects the $_POST object you have received from PayPal
    • utility function (you can delete them if you want)
      • sendCancelationEmail
      • sendPaymentProblemEmail
      • sendThankYouEmail
      • sendSubscriptionProblemEmail
  • PaypalIPNHandlerModel.php - Basic Model to contain the DB logic
    • getUserByEmail
    • isSubscriptionActive
    • addCancelation
    • removeCancelations
    • addSubscriptionUpdate
  • PaypalIPN.php - Paypal IPN class
  • DBPDO.php - Simple DB connection class
  • subscriptionCancelations.sql and subscriptionUpdates.sql - sql files to set up the two tables, mentioned earlier

About

PayPal IPN wrapper class to handle the most basic needs for subscription handling in software products

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages