2011-12-14 11:38:52 -05:00
|
|
|
class WebHook < ActiveRecord::Base
|
|
|
|
include HTTParty
|
|
|
|
|
2012-09-26 14:17:17 -04:00
|
|
|
attr_accessible :url
|
|
|
|
|
2011-12-14 11:38:52 -05:00
|
|
|
# HTTParty timeout
|
|
|
|
default_timeout 10
|
|
|
|
|
|
|
|
validates :url,
|
|
|
|
presence: true,
|
|
|
|
format: {
|
2011-12-26 04:12:09 -05:00
|
|
|
with: URI::regexp(%w(http https)),
|
2011-12-14 11:38:52 -05:00
|
|
|
message: "should be a valid url" }
|
|
|
|
|
|
|
|
def execute(data)
|
2012-08-01 22:48:46 -04:00
|
|
|
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,
|
2012-09-26 14:17:17 -04:00
|
|
|
headers: { "Content-Type" => "application/json" },
|
2012-08-01 22:48:46 -04:00
|
|
|
basic_auth: {username: parsed_url.user, password: parsed_url.password})
|
|
|
|
end
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
2012-09-26 14:17:17 -04:00
|
|
|
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
2012-01-03 16:39:03 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: web_hooks
|
|
|
|
#
|
2012-06-26 14:23:09 -04:00
|
|
|
# id :integer(4) not null, primary key
|
2012-01-03 16:39:03 -05:00
|
|
|
# url :string(255)
|
2012-06-26 14:23:09 -04:00
|
|
|
# project_id :integer(4)
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2012-01-03 16:39:03 -05:00
|
|
|
#
|
|
|
|
|