discourse/app/jobs/regular/bulk_invite.rb

118 lines
3.4 KiB
Ruby
Raw Normal View History

2014-05-27 16:14:37 -04:00
require 'csv'
require_dependency 'system_message'
module Jobs
class BulkInvite < Jobs::Base
sidekiq_options retry: false
2014-06-25 16:04:26 -04:00
attr_accessor :current_user
2014-05-27 16:14:37 -04:00
def initialize
@logs = []
@sent = 0
@failed = 0
end
def execute(args)
filename = args[:filename]
identifier = args[:identifier]
chunks = args[:chunks].to_i
2014-06-25 16:04:26 -04:00
@current_user = User.find_by(id: args[:current_user_id])
2014-05-27 16:14:37 -04:00
raise Discourse::InvalidParameters.new(:filename) if filename.blank?
raise Discourse::InvalidParameters.new(:identifier) if identifier.blank?
raise Discourse::InvalidParameters.new(:chunks) if chunks <= 0
# merge chunks, and get csv path
csv_path = get_csv_path(filename, identifier, chunks)
# read csv file, and send out invitations
2014-06-25 16:04:26 -04:00
read_csv_file(csv_path)
# send notification to user regarding progress
2014-06-25 16:04:26 -04:00
notify_user
# since emails have already been sent out, delete the uploaded csv file
FileUtils.rm_rf(csv_path) rescue nil
end
def get_csv_path(filename, identifier, chunks)
2014-05-27 16:14:37 -04:00
csv_path = "#{Invite.base_directory}/#{filename}"
tmp_csv_path = "#{csv_path}.tmp"
# path to tmp directory
tmp_directory = File.dirname(Invite.chunk_path(identifier, filename, 0))
# merge all chunks
HandleChunkUpload.merge_chunks(chunks, upload_path: csv_path, tmp_upload_path: tmp_csv_path, model: Invite, identifier: identifier, filename: filename, tmp_directory: tmp_directory)
return csv_path
end
2014-06-25 16:04:26 -04:00
def read_csv_file(csv_path)
2014-05-27 16:14:37 -04:00
CSV.foreach(csv_path) do |csv_info|
if !csv_info[0].nil?
if validate_email(csv_info[0])
# email is valid, now check for groups
if !csv_info[1].nil?
# group(s) present
2014-06-25 16:04:26 -04:00
send_invite_with_groups(csv_info[0], csv_info[1], $INPUT_LINE_NUMBER)
else
# no group present
2014-06-25 16:04:26 -04:00
send_invite_without_group(csv_info[0])
end
2014-05-27 16:14:37 -04:00
@sent += 1
else
# invalid email
2014-05-27 16:14:37 -04:00
log "Invalid email '#{csv_info[0]}' at line number '#{$INPUT_LINE_NUMBER}'"
@failed += 1
end
end
end
end
def validate_email(email)
/\A[^@\s]+@([^@\s]+\.)+[^@\s]+\z/.match(email)
end
2014-06-25 16:04:26 -04:00
def send_invite_with_groups(email, group_names, csv_line_number)
group_ids = []
group_names = group_names.split(';')
group_names.each { |group_name|
group_detail = Group.find_by_name(group_name)
if !group_detail.nil?
# valid group
group_ids.push(group_detail.id)
else
# invalid group
log "Invalid group '#{group_name}' at line number '#{csv_line_number}'"
end
}
2014-06-25 16:04:26 -04:00
Invite.invite_by_email(email, @current_user, topic=nil, group_ids)
end
2014-06-25 16:04:26 -04:00
def send_invite_without_group(email)
Invite.invite_by_email(email, @current_user, topic=nil)
end
2014-05-27 16:14:37 -04:00
def log(message)
puts(message) rescue nil
save_log(message)
end
def save_log(message)
@logs << "[#{Time.now}] #{message}"
end
2014-06-25 16:04:26 -04:00
def notify_user
if @current_user
2014-05-27 16:14:37 -04:00
if (@sent > 0 && @failed == 0)
2014-06-25 16:04:26 -04:00
SystemMessage.create(@current_user, :bulk_invite_succeeded, sent: @sent)
2014-05-27 16:14:37 -04:00
else
2014-06-25 16:04:26 -04:00
SystemMessage.create(@current_user, :bulk_invite_failed, sent: @sent, failed: @failed, logs: @logs.join("\n"))
2014-05-27 16:14:37 -04:00
end
end
end
end
end