2013-12-18 06:42:12 -05:00
|
|
|
class EmailsOnPushWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
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
|
|
|
|
2015-03-17 08:55:39 -04:00
|
|
|
compare = nil
|
|
|
|
reverse_compare = false
|
|
|
|
if action == :push
|
|
|
|
compare = Gitlab::Git::Compare.new(project.repository.raw_repository, before_sha, after_sha)
|
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?
|
|
|
|
compare = Gitlab::Git::Compare.new(project.repository.raw_repository, after_sha, before_sha)
|
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
|
|
|
|
|
|
|
recipients.split(" ").each do |recipient|
|
2015-08-15 01:21:22 -04:00
|
|
|
begin
|
|
|
|
Notify.repository_push_email(
|
|
|
|
project_id,
|
|
|
|
recipient,
|
|
|
|
author_id: author_id,
|
|
|
|
ref: ref,
|
|
|
|
action: action,
|
|
|
|
compare: compare,
|
|
|
|
reverse_compare: reverse_compare,
|
|
|
|
send_from_committer_email: send_from_committer_email,
|
|
|
|
disable_diffs: disable_diffs
|
2015-11-25 11:18:44 -05:00
|
|
|
).deliver_now
|
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
|
|
|
|
logger.info("Failed to send e-mail for project '#{project.name_with_namespace}' to #{recipient}: #{e}")
|
|
|
|
end
|
2013-12-18 06:42:12 -05:00
|
|
|
end
|
2014-11-11 10:59:50 -05:00
|
|
|
ensure
|
|
|
|
compare = nil
|
|
|
|
GC.start
|
2013-12-18 06:42:12 -05:00
|
|
|
end
|
|
|
|
end
|