summaryrefslogtreecommitdiff
path: root/users/app/models/user.rb
diff options
context:
space:
mode:
Diffstat (limited to 'users/app/models/user.rb')
-rw-r--r--users/app/models/user.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/users/app/models/user.rb b/users/app/models/user.rb
index fc63ae9..d9b03ec 100644
--- a/users/app/models/user.rb
+++ b/users/app/models/user.rb
@@ -135,6 +135,34 @@ class User < CouchRest::Model::Base
ServiceLevel.new({id: code})
end
+ def one_month_warning_to_pay
+ # get all users who are not customers with active subscription and have existed for exactly a month (take account of months having difft amount of days. Maybe just those who signed up 30 days ago?)
+ #users_to_warn = User.find_by_created_at(Time.now-1.month).all #NO, this will require time to be right
+ #users_1_month_old = User.by_created_at.startkey(Time.now-1.month-1.day).endkey(Time.now-1.month).al
+ users_30_days_old = User.by_created_at.startkey(Time.now-31.days).endkey(Time.now-30.days).all
+ # TODO, above really is quite problematic, in that if the cron job fails to run on 1 day, say, the warning will not get created.
+
+ users_30_days_old.each do |user|
+
+ # create a user message for each user that does not has a braintree customer, or
+ # has a braintree customer w/out an active subscription.
+ unless ((customer = Customer.find_by_user(user.id)) && customer.subscriptions)
+
+ if !@message
+ # create a message for today's date
+ # only want to create once, and only if it will be used.
+ @message = Message.new(:text => t(:payment_one_month_warning, :date_in_one_month => (Time.now+1.month).strftime("%Y-%d-%m")))
+ @message.save
+ end
+
+ user_message = UserMessage.new(:message_id => @message.id, :user_id => user.id)
+ # is following preferred??
+ # user_message = UserMessage.new(:message => @message, :user => user)
+ user_message.save
+ end
+ end
+ end
+
protected
##