2009-01-06 11:49:19 +01:00
|
|
|
# put in here all foodsoft tasks
|
|
|
|
# => :environment loads the environment an gives easy access to the application
|
|
|
|
|
|
|
|
namespace :foodsoft do
|
|
|
|
|
2009-02-01 20:56:23 +01:00
|
|
|
# "rake foodsoft:create_admin"
|
|
|
|
desc "creates Administrators-group and admin-user"
|
|
|
|
task :create_admin => :environment do
|
|
|
|
puts "Create Workgroup 'Administators'"
|
|
|
|
administrators = Workgroup.create(
|
|
|
|
:name => "Administrators",
|
|
|
|
:description => "System administrators.",
|
|
|
|
:role_admin => true,
|
|
|
|
:role_finance => true,
|
|
|
|
:role_article_meta => true,
|
|
|
|
:role_suppliers => true,
|
|
|
|
:role_orders => true
|
|
|
|
)
|
|
|
|
|
|
|
|
puts "Create User 'admin' with password 'secret'"
|
|
|
|
admin = User.create(:nick => "admin", :first_name => "Anton", :last_name => "Administrator",
|
|
|
|
:email => "admin@foo.test", :password => "secret")
|
|
|
|
|
|
|
|
puts "Joining 'admin' user to 'Administrators' group"
|
|
|
|
Membership.create(:group => administrators, :user => admin)
|
|
|
|
end
|
2009-02-10 15:07:47 +01:00
|
|
|
|
|
|
|
desc "Notify users of upcoming tasks"
|
|
|
|
task :notify_upcoming_tasks => :environment do
|
|
|
|
tasks = Task.find :all, :conditions => ["done = ? AND due_date = ?", false, 1.day.from_now.to_date]
|
|
|
|
for task in tasks
|
|
|
|
puts "Send notifications for #{task.name} to .."
|
|
|
|
for user in task.users
|
|
|
|
if user.settings['notify.upcoming_tasks'] == 1
|
|
|
|
puts "#{user.email}.."
|
2009-02-18 01:06:35 +01:00
|
|
|
Mailer.deliver_upcoming_tasks(user, task)
|
2009-02-10 15:07:47 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-03-11 16:58:31 +01:00
|
|
|
|
2009-08-11 17:17:18 +02:00
|
|
|
desc "Create upcoming workgroups tasks (next 3 to 7 weeks)"
|
|
|
|
task :create_upcoming_weekly_tasks => :environment do
|
|
|
|
workgroups = Workgroup.all :conditions => {:weekly_task => true}
|
|
|
|
for workgroup in workgroups
|
|
|
|
puts "Create weekly tasks for #{workgroup.name}"
|
|
|
|
workgroup.next_weekly_tasks(8)[3..7].each do |date|
|
|
|
|
unless workgroup.tasks.exists?({:due_date => date, :weekly => true})
|
|
|
|
workgroup.tasks.create(workgroup.task_attributes(date))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-11 18:10:14 +02:00
|
|
|
desc "Notify workgroup of upcoming weekly task"
|
|
|
|
task :notify_users_of_weekly_task => :environment do
|
|
|
|
for workgroup in Workgroup.all
|
|
|
|
for task in workgroup.tasks.all(:conditions => ["due_date = ?", 4.days.from_now.to_date])
|
|
|
|
unless task.enough_users_assigned?
|
|
|
|
puts "Notify workgroup: #{workgroup.name} for task #{task.name}"
|
|
|
|
for user in workgroup.users.collect { |u| u if u.settings['messages.sendAsEmail'] == "1" && !u.email.blank? }
|
|
|
|
Mailer.deliver_not_enough_users_assigned(task, user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-03-11 16:58:31 +01:00
|
|
|
desc "Notify users of finished orders"
|
|
|
|
task :notify_order_finished => :environment do
|
|
|
|
order = Order.find(ENV["ORDER_ID"])
|
|
|
|
for group_order in order.group_orders
|
|
|
|
for user in group_order.ordergroup.users
|
|
|
|
Mailer.deliver_order_result(user, group_order) if user.settings["notify.orderFinished"] == '1'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2009-01-06 11:49:19 +01:00
|
|
|
end
|