A Discourse plugin that allows payments and subscription management via Stripe.
Go to file
Rimian Perkins f99aed364b new plugin helper 2017-05-23 10:30:54 +10:00
app Revert "use site setting instead of params for create account" 2017-05-18 12:02:26 +10:00
assets/javascripts/discourse Change the route to something meaningful 2017-05-18 14:57:27 +10:00
config Change the route to something meaningful 2017-05-18 14:57:27 +10:00
lib/discourse_donations require the job in plugin 2017-04-27 16:35:28 +10:00
spec new plugin helper 2017-05-23 10:30:54 +10:00
test/javascripts assert combobox has things in it 2017-03-20 12:24:39 +11:00
.gitignore ignore byebug 2017-02-06 12:30:16 +11:00
.ruby-version bump ruby version 2017-05-18 12:14:51 +10:00
.travis.yml run this plugins js tests only and bump ruby 2017-05-18 14:16:49 +10:00
LICENSE Initial commit 2017-01-30 10:52:35 +11:00
README.md documentation 2017-05-18 15:07:32 +10:00
jsapp acceptacnce test verifies page renders 2017-02-13 11:35:59 +11:00
plugin.rb bump 2017-05-18 15:03:57 +10:00

README.md

Discourse Donations

Build Status

Accept donations in Discourse! Integrates with Stripe.

Installation

  • Be sure your site is enforcing https.
  • Follow the install instructions here: https://meta.discourse.org/t/install-a-plugin/19157
  • Add your Stripe public and private keys in settings and set the currency to your local value.
  • Check that the custom header is enabled in admin > customize > themes.
  • Enable the plugin and wait for people to donate money.

Note: There's an issue upgrading to 1.8.0.beta11 with themes. You might be required to disable the plugin to do upgrades.

Creating new user accounts

This is an experimental feature. A user can create a new account if they makes a successful donation. Enable this in settings. When a user is not logged in, they will be asked to enter details for a new user account. This feature doesn't support mandatory custom user fields yet.

Customisations

Visit /admin/customize/site_texts and search for 'discourse_donations'. You'll find a few entries you can customise for your site.

Testing

  • To run the rails specs, install the plugin and run bundle exec rake plugin:spec[discourse-donations] in the discourse root directory.
  • To run qunit tests: MODULE='Acceptance: Discourse Donations' bundle exec rake qunit:test[20000].
  • To run Component tests: MODULE='component:stripe-card' bundle exec rake qunit:test[20000].

Note:

  • If you're using a zsh shell, then you probably get this error: zsh: no matches found ... and you'll need to escape the square brackets with backslashes.

TODO

  • Handle custom fields
  • Handle fails from stripe
  • Acceptance test in RSpec not qunit.