Created
April 12, 2020 01:36
-
-
Save dylanerichards/a295f36c7765643c19579c1762e16edc to your computer and use it in GitHub Desktop.
rakefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENV["SINATRA_ENV"] ||= "development" | |
require_relative './config/environment' | |
require 'sinatra/activerecord/rake' | |
require 'active_support/duration' | |
namespace :medicine do | |
task :send_reminders do | |
twilio_account_sid = "AC4bf52c17125e47be385b764e50474a64" | |
twilio_auth_token = "0231a729464dedc96dd783b0a39c9ba8" | |
twilio_client = Twilio::REST::Client.new twilio_account_sid, twilio_auth_token | |
User.all.map(&:medicines).flatten.each do |medicine| | |
if medicine.last_reminder_sent_at | |
if (Time.now - medicine.interval.minutes) >= medicine.last_reminder_sent_at | |
"sending..." | |
twilio_client.messages.create( | |
from: '+18503785628', | |
to: '+16463970039', | |
body: "Please take your #{medicine.name}" | |
) | |
end | |
medicine.last_reminder_sent_at = Time.now | |
medicine.save | |
else | |
medicine.last_reminder_sent_at = Time.now | |
medicine.save | |
if (Time.now - medicine.interval.minutes) >= medicine.last_reminder_sent_at | |
"sending..." | |
twilio_client.messages.create( | |
from: '+18503785628', | |
to: '+16463970039', | |
body: "Please take your #{medicine.name}" | |
) | |
end | |
end | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment