2013-12-18 06:42:12 -05:00
|
|
|
class EmailsOnPushWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2013-12-18 06:42:12 -05:00
|
|
|
|
2016-05-06 08:16:53 -04:00
|
|
|
attr_reader :email, :skip_premailer
|
|
|
|
|
2015-03-26 02:35:26 -04:00
|
|
|
def perform(project_id, recipients, push_data, options = {})
|
|
|
|
options.symbolize_keys!
|
|
|
|
options.reverse_merge!(
|
2015-08-15 01:21:22 -04:00
|
|
|
send_from_committer_email: false,
|
2015-03-26 02:35:26 -04:00
|
|
|
disable_diffs: false
|
|
|
|
)
|
|
|
|
send_from_committer_email = options[:send_from_committer_email]
|
|
|
|
disable_diffs = options[:disable_diffs]
|
|
|
|
|
2013-12-18 06:42:12 -05:00
|
|
|
project = Project.find(project_id)
|
|
|
|
before_sha = push_data["before"]
|
|
|
|
after_sha = push_data["after"]
|
2015-03-17 08:55:39 -04:00
|
|
|
ref = push_data["ref"]
|
2013-12-18 06:42:12 -05:00
|
|
|
author_id = push_data["user_id"]
|
|
|
|
|
2015-08-15 01:21:22 -04:00
|
|
|
action =
|
2015-03-17 08:55:39 -04:00
|
|
|
if Gitlab::Git.blank_ref?(before_sha)
|
2015-08-15 01:21:22 -04:00
|
|
|
:create
|
2015-03-17 08:55:39 -04:00
|
|
|
elsif Gitlab::Git.blank_ref?(after_sha)
|
|
|
|
:delete
|
|
|
|
else
|
|
|
|
:push
|
|
|
|
end
|
2013-12-18 06:42:12 -05:00
|
|
|
|
2016-05-12 11:06:14 -04:00
|
|
|
diff_refs = nil
|
2015-03-17 08:55:39 -04:00
|
|
|
compare = nil
|
|
|
|
reverse_compare = false
|
2016-07-21 05:53:38 -04:00
|
|
|
|
2015-03-17 08:55:39 -04:00
|
|
|
if action == :push
|
2017-01-05 10:49:11 -05:00
|
|
|
compare = CompareService.new(project, after_sha)
|
|
|
|
.execute(project, before_sha)
|
2016-07-27 07:09:52 -04:00
|
|
|
diff_refs = compare.diff_refs
|
2013-12-18 06:42:12 -05:00
|
|
|
|
2015-03-17 08:55:39 -04:00
|
|
|
return false if compare.same
|
2015-02-25 09:12:19 -05:00
|
|
|
|
2015-03-17 08:55:39 -04:00
|
|
|
if compare.commits.empty?
|
2017-01-05 10:49:11 -05:00
|
|
|
compare = CompareService.new(project, before_sha)
|
|
|
|
.execute(project, after_sha)
|
2016-07-27 07:09:52 -04:00
|
|
|
diff_refs = compare.diff_refs
|
2015-02-25 09:12:19 -05:00
|
|
|
|
2015-03-17 08:55:39 -04:00
|
|
|
reverse_compare = true
|
2015-02-25 09:12:19 -05:00
|
|
|
|
2015-03-17 08:55:39 -04:00
|
|
|
return false if compare.commits.empty?
|
|
|
|
end
|
2015-02-25 09:12:19 -05:00
|
|
|
end
|
2013-12-18 06:42:12 -05:00
|
|
|
|
2016-05-06 08:16:53 -04:00
|
|
|
recipients.split.each do |recipient|
|
2015-08-15 01:21:22 -04:00
|
|
|
begin
|
2016-05-06 08:16:53 -04:00
|
|
|
send_email(
|
2015-08-15 01:21:22 -04:00
|
|
|
recipient,
|
2016-05-06 08:16:53 -04:00
|
|
|
project_id,
|
2016-05-12 11:06:14 -04:00
|
|
|
author_id: author_id,
|
|
|
|
ref: ref,
|
|
|
|
action: action,
|
|
|
|
compare: compare,
|
|
|
|
reverse_compare: reverse_compare,
|
|
|
|
diff_refs: diff_refs,
|
|
|
|
send_from_committer_email: send_from_committer_email,
|
|
|
|
disable_diffs: disable_diffs
|
2016-05-06 08:16:53 -04:00
|
|
|
)
|
|
|
|
|
2015-08-15 01:21:22 -04:00
|
|
|
# These are input errors and won't be corrected even if Sidekiq retries
|
|
|
|
rescue Net::SMTPFatalError, Net::SMTPSyntaxError => e
|
2018-03-07 09:07:09 -05:00
|
|
|
logger.info("Failed to send e-mail for project '#{project.full_name}' to #{recipient}: #{e}")
|
2015-08-15 01:21:22 -04:00
|
|
|
end
|
2013-12-18 06:42:12 -05:00
|
|
|
end
|
2014-11-11 10:59:50 -05:00
|
|
|
ensure
|
2016-05-06 08:16:53 -04:00
|
|
|
@email = nil
|
2014-11-11 10:59:50 -05:00
|
|
|
compare = nil
|
|
|
|
GC.start
|
2013-12-18 06:42:12 -05:00
|
|
|
end
|
2016-05-06 08:16:53 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def send_email(recipient, project_id, options)
|
|
|
|
# Generating the body of this email can be expensive, so only do it once
|
|
|
|
@skip_premailer ||= email.present?
|
|
|
|
@email ||= Notify.repository_push_email(project_id, options)
|
|
|
|
|
|
|
|
email.to = recipient
|
|
|
|
email.add_message_id
|
|
|
|
email.header[:skip_premailer] = true if skip_premailer
|
|
|
|
email.deliver_now
|
|
|
|
end
|
2013-12-18 06:42:12 -05:00
|
|
|
end
|