2012-11-19 13:24:05 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: web_hooks
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
|
|
|
# url :string(255)
|
|
|
|
# project_id :integer
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# type :string(255) default("ProjectHook")
|
2012-11-20 07:19:55 -05:00
|
|
|
# service_id :integer
|
2012-11-19 13:24:05 -05:00
|
|
|
#
|
|
|
|
|
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
|
|
|
|
|
2012-09-27 02:20:36 -04:00
|
|
|
validates :url, presence: true,
|
2012-10-08 20:10:04 -04:00
|
|
|
format: { with: URI::regexp(%w(http https)), message: "should be a valid url" }
|
2011-12-14 11:38:52 -05:00
|
|
|
|
|
|
|
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
|
2012-09-27 02:20:36 -04:00
|
|
|
post_url = url.gsub("#{parsed_url.userinfo}@", "")
|
2013-02-22 11:03:59 -05:00
|
|
|
auth = {
|
|
|
|
username: URI.decode(parsed_url.user),
|
|
|
|
password: URI.decode(parsed_url.password),
|
|
|
|
}
|
2012-08-01 22:48:46 -04:00
|
|
|
WebHook.post(post_url,
|
|
|
|
body: data.to_json,
|
2012-09-27 02:20:36 -04:00
|
|
|
headers: {"Content-Type" => "application/json"},
|
2013-02-22 11:03:59 -05:00
|
|
|
basic_auth: auth)
|
2012-08-01 22:48:46 -04:00
|
|
|
end
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|
2013-01-24 15:15:24 -05:00
|
|
|
|
|
|
|
def async_execute(data)
|
|
|
|
Sidekiq::Client.enqueue(ProjectWebHookWorker, id, data)
|
|
|
|
end
|
2011-12-14 11:38:52 -05:00
|
|
|
end
|