gitlab-org--gitlab-foss/app/models/project_services/hipchat_service.rb

86 lines
2.4 KiB
Ruby
Raw Normal View History

2013-05-23 18:10:32 +00:00
# == Schema Information
#
# Table name: services
#
2014-10-09 15:22:20 +00:00
# id :integer not null, primary key
# type :string(255)
# title :string(255)
# project_id :integer not null
# created_at :datetime
# updated_at :datetime
# active :boolean default(FALSE), not null
# properties :text
2013-05-23 18:10:32 +00:00
#
class HipchatService < Service
MAX_COMMITS = 3
prop_accessor :token, :room, :server
2013-05-23 18:10:32 +00:00
validates :token, presence: true, if: :activated?
def title
'HipChat'
2013-05-23 18:10:32 +00:00
end
def description
'Private group chat and IM'
2013-05-23 18:10:32 +00:00
end
def to_param
'hipchat'
end
def fields
[
{ type: 'text', name: 'token', placeholder: '' },
{ type: 'text', name: 'room', placeholder: '' },
{ type: 'text', name: 'server',
2014-12-29 20:20:22 +00:00
placeholder: 'Leave blank for default. https://hipchat.example.com' }
2013-05-23 18:10:32 +00:00
]
end
def execute(push_data)
gate[room].send('GitLab', create_message(push_data))
2013-05-23 18:10:32 +00:00
end
private
def gate
options = { api_version: 'v2' }
2014-12-29 20:20:22 +00:00
options[:server_url] = server unless server.blank?
@gate ||= HipChat::Client.new(token, options)
2013-05-23 18:10:32 +00:00
end
def create_message(push)
ref = push[:ref].gsub("refs/heads/", "")
before = push[:before]
after = push[:after]
message = ""
message << "#{push[:user_name]} "
if before.include?('000000')
message << "pushed new branch <a href=\""\
"#{project.web_url}/commits/#{URI.escape(ref)}\">#{ref}</a>"\
" to <a href=\"#{project.web_url}\">"\
"#{project.name_with_namespace.gsub!(/\s/, "")}</a>\n"
elsif after.include?('000000')
2013-05-23 18:10:32 +00:00
message << "removed branch #{ref} from <a href=\"#{project.web_url}\">#{project.name_with_namespace.gsub!(/\s/,'')}</a> \n"
else
message << "pushed to branch <a href=\""\
"#{project.web_url}/commits/#{URI.escape(ref)}\">#{ref}</a> "
2013-05-23 18:10:32 +00:00
message << "of <a href=\"#{project.web_url}\">#{project.name_with_namespace.gsub!(/\s/,'')}</a> "
message << "(<a href=\"#{project.web_url}/compare/#{before}...#{after}\">Compare changes</a>)"
push[:commits].take(MAX_COMMITS).each do |commit|
message << "<br /> - #{commit[:message].lines.first} (<a href=\"#{commit[:url]}\">#{commit[:id][0..5]}</a>)"
end
if push[:commits].count > MAX_COMMITS
message << "<br />... #{push[:commits].count - MAX_COMMITS} more commits"
2013-05-23 18:10:32 +00:00
end
end
message
end
2013-06-19 12:40:33 +00:00
end