discourse-subscriptions/README.md

59 lines
3.6 KiB
Markdown
Raw Normal View History

2017-02-23 20:12:02 -05:00
# Discourse Donations
2017-02-23 20:12:02 -05:00
[![Build Status](https://travis-ci.org/choiceaustralia/discourse-donations.svg?branch=master)](https://travis-ci.org/choiceaustralia/discourse-donations)
2017-02-01 22:57:57 -05:00
2017-05-02 20:25:02 -04:00
Accept donations in Discourse! Integrates with [Stripe](https://stripe.com).
2017-03-30 19:17:13 -04:00
2017-03-05 21:09:28 -05:00
## Installation
2017-05-17 20:14:54 -04:00
* Be sure your site is enforcing https.
2017-03-05 21:09:28 -05:00
* Follow the install instructions here: https://meta.discourse.org/t/install-a-plugin/19157
2017-05-17 20:12:59 -04:00
* Add your Stripe public and private keys in settings and set the currency to your local value.
2017-05-24 18:59:11 -04:00
* Add the following script to your page header in a custom theme component: `<script src="https://js.stripe.com/v3/"></script>`
2017-05-17 20:12:59 -04:00
* Enable the plugin and wait for people to donate money.
2017-05-18 01:07:32 -04:00
## Creating new user accounts
2017-02-22 23:04:17 -05:00
2017-05-18 01:07:32 -04:00
**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.
2017-02-22 23:04:17 -05:00
2017-02-22 23:02:34 -05:00
## Testing
2017-02-06 21:56:22 -05:00
2017-03-01 17:38:33 -05:00
* 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]`.
2017-02-14 00:56:31 -05:00
2017-02-23 18:28:29 -05:00
**Note:**
2017-02-06 21:56:22 -05:00
2017-02-23 18:28:29 -05:00
* 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.
2017-03-12 22:04:29 -04:00
## TODO
2017-04-02 19:47:01 -04:00
* Handle custom fields
2017-05-24 18:59:11 -04:00
* Acceptance test in RSpec not qunit.
2017-05-23 22:48:55 -04:00
2017-05-27 02:59:44 -04:00
## Tested Credit Card Numbers
These numbers can be used in test mode to simulate a transaction. For more information see the [Stripe docs](https://stripe.com/docs/testing).
Card numbers in **bold** have beed tested.
* **4000 0000 0000 0077** Charge succeeds and funds will be added directly to your available balance (bypassing your pending balance).
* **4000 0000 0000 0093** Charge succeeds and domestic pricing is used (other test cards use international pricing). This card is only significant in countries with split pricing.
* **4000 0000 0000 0010** The address_line1_check and address_zip_check verifications fail. If your account is blocking payments that fail postal code validation, the charge is declined.
* **4000 0000 0000 0028** Charge succeeds but the address_line1_check verification fails.
* **4000 0000 0000 0036** The address_zip_check verification fails. If your account is blocking payments that fail postal code validation, the charge is declined.
* **4000 0000 0000 0044** Charge succeeds but the address_zip_check and address_line1_check verifications are both unavailable.
* **4000 0000 0000 0101** If a CVC number is provided, the cvc_check fails. If your account is blocking payments that fail CVC code validation, the charge is declined.
* **4000 0000 0000 0341** Attaching this card to a Customer object succeeds, but attempts to charge the customer fail.
* **4000 0000 0000 9235** Charge succeeds with a risk_level of elevated and placed into review.
* **4000 0000 0000 0002** Charge is declined with a card_declined code.
* **4100 0000 0000 0019** Charge is declined with a card_declined code and a fraudulent reason.
* **4000 0000 0000 0127** Charge is declined with an incorrect_cvc code.
* **4000 0000 0000 0069** Charge is declined with an expired_card code.
* **4000 0000 0000 0119** Charge is declined with a processing_error code.
* 4242 4242 4242 4241 Charge is declined with an incorrect_number code as the card number fails the Luhn check.
2017-05-23 22:48:55 -04:00
## Warranty
This software comes with no warranty of any kind.