2013-05-23 14:10:32 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: services
|
|
|
|
#
|
2014-10-09 11:22:20 -04: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 14:10:32 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
class HipchatService < Service
|
2014-07-29 04:04:19 -04:00
|
|
|
MAX_COMMITS = 3
|
|
|
|
|
2014-11-09 00:04:31 -05:00
|
|
|
prop_accessor :token, :room, :server
|
2013-05-23 14:10:32 -04:00
|
|
|
validates :token, presence: true, if: :activated?
|
|
|
|
|
|
|
|
def title
|
2014-11-09 00:12:14 -05:00
|
|
|
'HipChat'
|
2013-05-23 14:10:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
2013-11-20 07:05:42 -05:00
|
|
|
'Private group chat and IM'
|
2013-05-23 14:10:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_param
|
|
|
|
'hipchat'
|
|
|
|
end
|
|
|
|
|
|
|
|
def fields
|
|
|
|
[
|
2015-01-15 17:35:32 -05:00
|
|
|
{ type: 'text', name: 'token', placeholder: 'Room token' },
|
|
|
|
{ type: 'text', name: 'room', placeholder: 'Room name or ID' },
|
2014-11-09 00:04:31 -05:00
|
|
|
{ type: 'text', name: 'server',
|
2014-12-29 15:20:22 -05:00
|
|
|
placeholder: 'Leave blank for default. https://hipchat.example.com' }
|
2013-05-23 14:10:32 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute(push_data)
|
2014-02-12 02:27:00 -05:00
|
|
|
gate[room].send('GitLab', create_message(push_data))
|
2013-05-23 14:10:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def gate
|
2014-11-09 00:12:14 -05:00
|
|
|
options = { api_version: 'v2' }
|
2014-12-29 15:20:22 -05:00
|
|
|
options[:server_url] = server unless server.blank?
|
2014-11-09 00:12:14 -05:00
|
|
|
@gate ||= HipChat::Client.new(token, options)
|
2013-05-23 14:10:32 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create_message(push)
|
|
|
|
ref = push[:ref].gsub("refs/heads/", "")
|
|
|
|
before = push[:before]
|
|
|
|
after = push[:after]
|
|
|
|
|
|
|
|
message = ""
|
|
|
|
message << "#{push[:user_name]} "
|
2014-10-19 10:09:38 -04:00
|
|
|
if before.include?('000000')
|
2014-07-15 23:03:17 -04:00
|
|
|
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"
|
2014-10-19 10:09:38 -04:00
|
|
|
elsif after.include?('000000')
|
2013-05-23 14:10:32 -04:00
|
|
|
message << "removed branch #{ref} from <a href=\"#{project.web_url}\">#{project.name_with_namespace.gsub!(/\s/,'')}</a> \n"
|
|
|
|
else
|
2014-07-15 23:03:17 -04:00
|
|
|
message << "pushed to branch <a href=\""\
|
|
|
|
"#{project.web_url}/commits/#{URI.escape(ref)}\">#{ref}</a> "
|
2013-05-23 14:10:32 -04: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>)"
|
2014-07-29 04:04:19 -04:00
|
|
|
|
|
|
|
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 14:10:32 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
message
|
|
|
|
end
|
2013-06-19 08:40:33 -04:00
|
|
|
end
|