2017-02-23 20:42:59 -05:00
|
|
|
# name: discourse-donations
|
|
|
|
# about: Integrating Discourse with Stripe for donations
|
2017-03-19 21:11:34 -04:00
|
|
|
# version: 1.9.6
|
2017-02-23 20:42:59 -05:00
|
|
|
# url: https://github.com/choiceaustralia/discourse-donations
|
2017-02-22 18:31:30 -05:00
|
|
|
# authors: Rimian Perkins
|
2017-01-30 21:28:41 -05:00
|
|
|
|
2017-03-19 21:11:34 -04:00
|
|
|
gem 'stripe', '2.0.3'
|
2017-01-31 19:35:21 -05:00
|
|
|
|
2017-02-23 21:23:11 -05:00
|
|
|
load File.expand_path('../lib/discourse_donations/engine.rb', __FILE__)
|
2017-02-26 20:07:21 -05:00
|
|
|
|
2017-02-27 21:36:41 -05:00
|
|
|
enabled_site_setting :discourse_donations_enabled
|
|
|
|
|
2017-02-16 21:15:32 -05:00
|
|
|
after_initialize do
|
2017-03-02 18:17:38 -05:00
|
|
|
# Must be placed on every page for fraud protection.
|
|
|
|
header_script = '<script src="https://js.stripe.com/v3/"></script>'
|
2017-02-16 21:15:32 -05:00
|
|
|
|
2017-02-26 19:49:01 -05:00
|
|
|
discourse_donations_customization = SiteCustomization.find_or_create_by({
|
2017-02-23 20:42:59 -05:00
|
|
|
name: 'Discourse Donations Header',
|
2017-02-16 21:15:32 -05:00
|
|
|
header: header_script,
|
|
|
|
mobile_header: header_script,
|
|
|
|
enabled: true,
|
|
|
|
user_id: -1
|
|
|
|
})
|
|
|
|
|
2017-02-26 19:49:01 -05:00
|
|
|
SiteCustomization.where(name: discourse_donations_customization.name).where.not(id: discourse_donations_customization.id).delete_all
|
2017-02-16 21:15:32 -05:00
|
|
|
end
|
|
|
|
|
2017-02-06 21:56:22 -05:00
|
|
|
Discourse::Application.routes.prepend do
|
2017-02-23 21:23:11 -05:00
|
|
|
mount ::DiscourseDonations::Engine, at: '/'
|
2017-01-30 21:28:41 -05:00
|
|
|
end
|