2016-08-03 17:25:00 +02:00
|
|
|
class Coupon < ActiveRecord::Base
|
2016-08-04 09:45:00 +02:00
|
|
|
has_many :invoices
|
2016-08-03 17:25:00 +02:00
|
|
|
|
2016-08-08 14:42:17 +02:00
|
|
|
after_commit :create_stripe_coupon, on: [:create]
|
|
|
|
after_commit :delete_stripe_coupon, on: [:destroy]
|
|
|
|
|
2016-08-04 18:13:19 +02:00
|
|
|
validates :name, presence: true
|
2016-08-03 17:25:00 +02:00
|
|
|
validates :code, presence: true
|
2016-08-17 09:54:31 +02:00
|
|
|
validates :code, format: { with: /\A[A-Z0-9\-]+\z/ ,message: 'only caps letters, numbers, and dashes'}
|
2016-08-08 14:42:17 +02:00
|
|
|
validates :code, uniqueness: true
|
2016-08-08 15:43:02 +02:00
|
|
|
validates :validity_per_user, presence: true
|
2016-08-09 10:22:01 +02:00
|
|
|
validates :validity_per_user, inclusion: { in: %w(once forever) }
|
2016-11-23 12:43:42 +01:00
|
|
|
validates_with CouponDiscountValidator
|
2016-12-13 12:01:34 +01:00
|
|
|
validates_with CouponExpirationValidator
|
2016-08-03 17:25:00 +02:00
|
|
|
|
2016-08-08 12:25:27 +02:00
|
|
|
def safe_destroy
|
|
|
|
if self.invoices.size == 0
|
|
|
|
destroy
|
|
|
|
else
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-10 11:08:01 +02:00
|
|
|
##
|
|
|
|
# Check the status of the current coupon. The coupon:
|
|
|
|
# - may have been disabled by an admin,
|
|
|
|
# - may has expired because the validity date has been reached,
|
|
|
|
# - may have been used the maximum number of times it was allowed
|
|
|
|
# - may have already been used by the provided user, if the coupon is configured to allow only one use per user,
|
2016-11-24 13:58:41 +01:00
|
|
|
# - may exceed the current cart's total amount, if the coupon is configured to discount an amount (and not a percentage)
|
2016-08-10 11:08:01 +02:00
|
|
|
# - may be available for use
|
|
|
|
# @param [user_id] {Number} if provided and if the current coupon's validity_per_user == 'once', check that the coupon
|
|
|
|
# was already used by the provided user
|
2016-11-24 13:58:41 +01:00
|
|
|
# @param [amount] {Number} if provided and if the current coupon's type == 'amont_off' check that the coupon
|
|
|
|
# does not exceed the cart total price
|
2016-08-10 11:08:01 +02:00
|
|
|
# @return {String} status identifier
|
|
|
|
##
|
2016-11-24 13:58:41 +01:00
|
|
|
def status(user_id = nil, amount = nil)
|
2016-08-08 15:21:33 +02:00
|
|
|
if not active?
|
|
|
|
'disabled'
|
|
|
|
elsif (!valid_until.nil?) and valid_until.at_end_of_day < DateTime.now
|
|
|
|
'expired'
|
|
|
|
elsif (!max_usages.nil?) and invoices.count >= max_usages
|
|
|
|
'sold_out'
|
2016-08-10 11:08:01 +02:00
|
|
|
elsif (!user_id.nil?) and validity_per_user == 'once' and users_ids.include?(user_id.to_i)
|
|
|
|
'already_used'
|
2016-11-24 13:58:41 +01:00
|
|
|
elsif (!amount.nil?) and type == 'amount_off' and amount_off > amount.to_f
|
|
|
|
'amount_exceeded'
|
2016-08-08 15:21:33 +02:00
|
|
|
else
|
|
|
|
'active'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-11-23 12:43:42 +01:00
|
|
|
def type
|
|
|
|
if amount_off.nil? and !percent_off.nil?
|
|
|
|
'percent_off'
|
|
|
|
elsif percent_off.nil? and !amount_off.nil?
|
|
|
|
'amount_off'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-10 11:08:01 +02:00
|
|
|
def users
|
|
|
|
self.invoices.map do |i|
|
|
|
|
i.user
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def users_ids
|
|
|
|
users.map do |u|
|
|
|
|
u.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-16 18:12:13 +02:00
|
|
|
def send_to(user_id)
|
|
|
|
NotificationCenter.call type: 'notify_member_about_coupon',
|
|
|
|
receiver: User.find(user_id),
|
|
|
|
attached_object: self
|
|
|
|
end
|
|
|
|
|
2016-12-13 12:01:34 +01:00
|
|
|
private
|
2016-08-08 14:42:17 +02:00
|
|
|
def create_stripe_coupon
|
|
|
|
StripeWorker.perform_async(:create_stripe_coupon, id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def delete_stripe_coupon
|
|
|
|
StripeWorker.perform_async(:delete_stripe_coupon, code)
|
|
|
|
end
|
|
|
|
|
2016-08-03 17:25:00 +02:00
|
|
|
end
|