namespace :users do desc "Recalculates all the failed census calls counters for users" task count_failed_census_calls: :environment do User.find_each{ |user| User.reset_counters(user.id, :failed_census_calls)} end 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.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| 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 end