gitlabhq/app/models/web_hook.rb

38 lines
1,002 B
Ruby
Raw Normal View History

class WebHook < ActiveRecord::Base
include HTTParty
# HTTParty timeout
default_timeout 10
validates :url,
presence: true,
format: {
with: URI::regexp(%w(http https)),
message: "should be a valid url" }
def execute(data)
parsed_url = URI.parse(url)
if parsed_url.userinfo.blank?
WebHook.post(url, body: data.to_json, headers: { "Content-Type" => "application/json" })
else
post_url = url.gsub(parsed_url.userinfo+"@", "")
WebHook.post(post_url,
body: data.to_json,
headers: { "Content-Type" => "application/json" },
basic_auth: {username: parsed_url.user, password: parsed_url.password})
end
end
2012-07-15 14:29:06 +02:00
end
2012-01-03 22:39:03 +01:00
# == Schema Information
#
# Table name: web_hooks
#
2012-06-26 20:23:09 +02:00
# id :integer(4) not null, primary key
2012-01-03 22:39:03 +01:00
# url :string(255)
2012-06-26 20:23:09 +02:00
# project_id :integer(4)
# created_at :datetime not null
# updated_at :datetime not null
2012-01-03 22:39:03 +01:00
#