effective_orders 4.6.3 → 5.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/MIT-LICENSE +1 -1
- data/README.md +14 -86
- data/app/controllers/admin/customers_controller.rb +5 -16
- data/app/controllers/admin/order_items_controller.rb +6 -9
- data/app/controllers/admin/orders_controller.rb +18 -82
- data/app/controllers/effective/carts_controller.rb +10 -6
- data/app/controllers/effective/concerns/purchase.rb +12 -19
- data/app/controllers/effective/customers_controller.rb +4 -2
- data/app/controllers/effective/orders_controller.rb +26 -23
- data/app/controllers/effective/providers/cheque.rb +3 -1
- data/app/controllers/effective/providers/free.rb +3 -2
- data/app/controllers/effective/providers/mark_as_paid.rb +5 -4
- data/app/controllers/effective/providers/moneris.rb +3 -1
- data/app/controllers/effective/providers/paypal.rb +3 -2
- data/app/controllers/effective/providers/phone.rb +3 -1
- data/app/controllers/effective/providers/pretend.rb +4 -3
- data/app/controllers/effective/providers/refund.rb +4 -3
- data/app/controllers/effective/providers/stripe.rb +4 -3
- data/app/controllers/effective/subscripter_controller.rb +4 -2
- data/app/controllers/effective/webhooks_controller.rb +12 -3
- data/app/datatables/admin/effective_customers_datatable.rb +7 -3
- data/app/datatables/admin/effective_orders_datatable.rb +4 -7
- data/app/datatables/effective_orders_datatable.rb +3 -7
- data/app/helpers/effective_orders_helper.rb +1 -7
- data/app/mailers/effective/orders_mailer.rb +131 -96
- data/app/models/concerns/acts_as_purchasable.rb +0 -11
- data/app/models/concerns/acts_as_subscribable.rb +0 -6
- data/app/models/effective/cart.rb +7 -5
- data/app/models/effective/cart_item.rb +7 -4
- data/app/models/effective/customer.rb +7 -6
- data/app/models/effective/order.rb +58 -61
- data/app/models/effective/order_item.rb +20 -8
- data/app/models/effective/product.rb +11 -6
- data/app/models/effective/subscription.rb +13 -12
- data/app/views/admin/orders/_form.html.haml +5 -9
- data/app/views/admin/orders/_order_item_fields.html.haml +8 -12
- data/app/views/effective/orders/_checkout_step2.html.haml +1 -2
- data/app/views/effective/orders/_order_actions.html.haml +2 -2
- data/app/views/effective/orders/show.html.haml +4 -0
- data/config/effective_orders.rb +8 -32
- data/config/routes.rb +16 -17
- data/db/migrate/01_create_effective_orders.rb.erb +4 -0
- data/lib/effective_orders.rb +34 -76
- data/lib/effective_orders/engine.rb +0 -7
- data/lib/effective_orders/version.rb +1 -1
- data/lib/generators/templates/effective_orders_mailer_preview.rb +13 -13
- data/lib/tasks/effective_orders_tasks.rake +2 -2
- metadata +2 -3
- data/app/models/effective/access_denied.rb +0 -17
@@ -16,13 +16,6 @@ module EffectiveOrders
|
|
16
16
|
eval File.read("#{config.root}/config/effective_orders.rb")
|
17
17
|
end
|
18
18
|
|
19
|
-
# Set up mail delivering config option
|
20
|
-
initializer 'effective_orders.mailer', after: :load_config_initializers do |app|
|
21
|
-
EffectiveOrders.mailer[:deliver_method] ||= (
|
22
|
-
(Rails.application.config.respond_to?(:active_job) && Rails.application.config.active_job.queue_adapter) ? :deliver_later : :deliver_now
|
23
|
-
)
|
24
|
-
end
|
25
|
-
|
26
19
|
initializer "effective_orders.append_precompiled_assets" do |app|
|
27
20
|
Rails.application.config.assets.precompile += ['effective_orders/*']
|
28
21
|
end
|
@@ -4,55 +4,55 @@
|
|
4
4
|
|
5
5
|
class EffectiveOrdersMailerPreview < ActionMailer::Preview
|
6
6
|
def order_receipt_to_admin
|
7
|
-
|
7
|
+
EffectiveOrders.mailer_klass.order_receipt_to_admin(build_preview_order)
|
8
8
|
end
|
9
9
|
|
10
10
|
def order_receipt_to_buyer
|
11
|
-
|
11
|
+
EffectiveOrders.mailer_klass.order_receipt_to_buyer(build_preview_order)
|
12
12
|
end
|
13
13
|
|
14
14
|
def payment_request_to_buyer
|
15
|
-
|
15
|
+
EffectiveOrders.mailer_klass.payment_request_to_buyer(build_preview_order)
|
16
16
|
end
|
17
17
|
|
18
18
|
def pending_order_invoice_to_buyer
|
19
|
-
|
19
|
+
EffectiveOrders.mailer_klass.pending_order_invoice_to_buyer(build_preview_order)
|
20
20
|
end
|
21
21
|
|
22
22
|
def subscription_payment_succeeded
|
23
|
-
|
23
|
+
EffectiveOrders.mailer_klass.subscription_payment_succeeded(preview_customer)
|
24
24
|
end
|
25
25
|
|
26
26
|
def subscription_payment_failed
|
27
|
-
|
27
|
+
EffectiveOrders.mailer_klass.subscription_payment_failed(preview_customer)
|
28
28
|
end
|
29
29
|
|
30
30
|
def subscription_created
|
31
|
-
|
31
|
+
EffectiveOrders.mailer_klass.subscription_created(preview_customer)
|
32
32
|
end
|
33
33
|
|
34
34
|
def subscription_updated
|
35
|
-
|
35
|
+
EffectiveOrders.mailer_klass.subscription_updated(preview_customer)
|
36
36
|
end
|
37
37
|
|
38
38
|
def subscription_canceled
|
39
|
-
|
39
|
+
EffectiveOrders.mailer_klass.subscription_canceled(preview_customer)
|
40
40
|
end
|
41
41
|
|
42
42
|
def subscription_trialing
|
43
|
-
|
43
|
+
EffectiveOrders.mailer_klass.subscription_trialing(preview_subscribable)
|
44
44
|
end
|
45
45
|
|
46
46
|
def subscription_trial_expired
|
47
|
-
|
47
|
+
EffectiveOrders.mailer_klass.subscription_trial_expired(preview_subscribable)
|
48
48
|
end
|
49
49
|
|
50
50
|
def subscription_event_to_admin
|
51
|
-
|
51
|
+
EffectiveOrders.mailer_klass.subscription_event_to_admin(:subscription_updated, preview_customer)
|
52
52
|
end
|
53
53
|
|
54
54
|
def order_error
|
55
|
-
|
55
|
+
EffectiveOrders.mailer_klass.order_error(order: build_preview_order, error: 'Something did not work out')
|
56
56
|
end
|
57
57
|
|
58
58
|
protected
|
@@ -44,7 +44,7 @@ namespace :effective_orders do
|
|
44
44
|
klass.trialing.find_each do |subscribable|
|
45
45
|
if subscribable.trialing_until == today
|
46
46
|
puts "sending trial expired to #{subscribable}"
|
47
|
-
|
47
|
+
EffectiveOrders.mailer_klass.subscription_trial_expired(subscribable).deliver_now
|
48
48
|
end
|
49
49
|
|
50
50
|
next if subscribable.trial_past_due? # We already notified them
|
@@ -53,7 +53,7 @@ namespace :effective_orders do
|
|
53
53
|
|
54
54
|
reminders.each do |remind_at|
|
55
55
|
next unless today == (date + remind_at)
|
56
|
-
|
56
|
+
EffectiveOrders.mailer_klass.subscription_trialing(subscribable).deliver_now
|
57
57
|
end
|
58
58
|
end
|
59
59
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_orders
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-03-
|
11
|
+
date: 2021-03-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -156,7 +156,6 @@ files:
|
|
156
156
|
- app/models/concerns/acts_as_purchasable.rb
|
157
157
|
- app/models/concerns/acts_as_subscribable.rb
|
158
158
|
- app/models/concerns/acts_as_subscribable_buyer.rb
|
159
|
-
- app/models/effective/access_denied.rb
|
160
159
|
- app/models/effective/cart.rb
|
161
160
|
- app/models/effective/cart_item.rb
|
162
161
|
- app/models/effective/customer.rb
|
@@ -1,17 +0,0 @@
|
|
1
|
-
unless defined?(Effective::AccessDenied)
|
2
|
-
module Effective
|
3
|
-
class AccessDenied < StandardError
|
4
|
-
attr_reader :action, :subject
|
5
|
-
|
6
|
-
def initialize(message = nil, action = nil, subject = nil)
|
7
|
-
@message = message
|
8
|
-
@action = action
|
9
|
-
@subject = subject
|
10
|
-
end
|
11
|
-
|
12
|
-
def to_s
|
13
|
-
@message || I18n.t(:'unauthorized.default', :default => 'Access Denied')
|
14
|
-
end
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|