gitlab-org--gitlab-foss/lib/gitlab/email/message/repository_push.rb

125 lines
3.5 KiB
Ruby
Raw Normal View History

module Gitlab
module Email
module Message
class RepositoryPush
attr_accessor :recipient
2015-11-20 14:29:47 +00:00
attr_reader :author_id, :ref, :action
def initialize(notify, project_id, recipient, opts = {})
2015-11-20 14:29:47 +00:00
raise ArgumentError, 'Missing options: author_id, ref, action' unless
opts[:author_id] && opts[:ref] && opts[:action]
@notify = notify
@project_id = project_id
@recipient = recipient
2015-11-20 14:29:47 +00:00
@opts = opts
2015-11-20 14:29:47 +00:00
@author_id = opts.delete(:author_id)
@ref = opts.delete(:ref)
@action = opts.delete(:action)
end
def project
2015-11-20 14:29:47 +00:00
@project ||= Project.find(@project_id)
end
def author
2015-11-20 14:29:47 +00:00
@author ||= User.find(@author_id)
end
def commits
2015-11-20 14:29:47 +00:00
@commits ||= (Commit.decorate(compare.commits, project) if compare)
end
def diffs
2015-11-20 14:29:47 +00:00
@diffs ||= (compare.diffs if compare)
end
2015-11-20 14:29:47 +00:00
def compare
@opts[:compare]
end
2015-11-20 14:29:47 +00:00
def reverse_compare?
@opts[:reverse_compare] || false
end
2015-11-20 14:29:47 +00:00
def disable_diffs?
@opts[:disable_diffs] || false
end
def send_from_committer_email?
@opts[:send_from_committer_email] || false
end
def action_name
@action_name ||=
case @action
when :create
'pushed new'
when :delete
'deleted'
else
2015-11-20 14:29:47 +00:00
'pushed to'
end
end
def ref_name
2015-11-20 14:29:47 +00:00
@ref_name ||= Gitlab::Git.ref_name(@ref)
end
def ref_type
2015-11-20 14:29:47 +00:00
@ref_type ||= Gitlab::Git.tag_ref?(@ref) ? 'tag' : 'branch'
end
def target_url
if @action == :push
2015-11-20 14:29:47 +00:00
if commits.length > 1 && compare
@notify.namespace_project_compare_url(project.namespace,
project,
from: Commit.new(compare.base, project),
to: Commit.new(compare.head, project))
else
2015-11-20 14:29:47 +00:00
@notify.namespace_project_commit_url(project.namespace,
project, commits.first)
end
else
unless @action == :delete
2015-11-20 14:29:47 +00:00
@notify.namespace_project_tree_url(project.namespace,
project, ref_name)
end
end
end
def reply_to
2015-11-20 14:29:47 +00:00
if send_from_committer_email? && @notify.can_send_from_user_email?(author)
author.email
else
Gitlab.config.gitlab.email_reply_to
end
end
2015-11-20 14:29:47 +00:00
def subject
subject_text = '[Git]'
subject_text << "[#{project.path_with_namespace}]"
subject_text << "[#{ref_name}]" if @action == :push
subject_text << ' '
if @action == :push
if commits.length > 1
subject_text << "Deleted " if reverse_compare?
subject_text << "#{commits.length} commits: #{commits.first.title}"
else
subject_text << "Deleted 1 commit: " if reverse_compare?
subject_text << commits.first.title
end
else
subject_action = action_name.dup
subject_action[0] = subject_action[0].capitalize
subject_text << "#{subject_action} #{ref_type} #{ref_name}"
end
end
end
end
end
end