Move automatic official_level assignment to the controller.

This commit is contained in:
Jakub
2015-12-01 23:18:23 +01:00
parent ea9a2b3be6
commit e4b31cfe29
4 changed files with 21 additions and 33 deletions

View File

@@ -8,15 +8,16 @@ namespace :users do
desc "Assigns official level to users with the officials' email domain"
task check_for_official_emails: :environment do
domain = Setting.value_for 'email_domain_for_officials'
# We end the task if there is no email domain configured
if domain.length > 0
if !domain.blank?
# We filter the mail addresses with SQL to speed up the process
# The real check will be done by check_if_official_email, however.
User.where('official_level = 0 and email like ?', "%#{domain}").find_each do |user|
user.check_if_official_email
puts "#{user.username} (#{user.email}) is now a level-1 official." if user.official?
user.save
if user.has_official_email?
user.add_official_position! (Setting.value_for 'official_level_1_name'), 1
puts "#{user.username} (#{user.email}) is now a level-1 official."
end
end
end
end