2012-11-19 19:24:05 +01: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 13:19:55 +01:00
|
|
|
# service_id :integer
|
2012-11-19 19:24:05 +01:00
|
|
|
#
|
|
|
|
|
2011-12-14 17:38:52 +01:00
|
|
|
class WebHook < ActiveRecord::Base
|
|
|
|
include HTTParty
|
|
|
|
|
2012-09-26 20:17:17 +02:00
|
|
|
attr_accessible :url
|
|
|
|
|
2011-12-14 17:38:52 +01:00
|
|
|
# HTTParty timeout
|
|
|
|
default_timeout 10
|
|
|
|
|
2012-09-27 08:20:36 +02:00
|
|
|
validates :url, presence: true,
|
2012-10-09 02:10:04 +02:00
|
|
|
format: { with: URI::regexp(%w(http https)), message: "should be a valid url" }
|
2011-12-14 17:38:52 +01:00
|
|
|
|
|
|
|
def execute(data)
|
2012-08-02 04:48:46 +02: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 08:20:36 +02:00
|
|
|
post_url = url.gsub("#{parsed_url.userinfo}@", "")
|
2013-02-22 17:03:59 +01:00
|
|
|
auth = {
|
|
|
|
username: URI.decode(parsed_url.user),
|
|
|
|
password: URI.decode(parsed_url.password),
|
|
|
|
}
|
2012-08-02 04:48:46 +02:00
|
|
|
WebHook.post(post_url,
|
|
|
|
body: data.to_json,
|
2012-09-27 08:20:36 +02:00
|
|
|
headers: {"Content-Type" => "application/json"},
|
2013-02-22 17:03:59 +01:00
|
|
|
basic_auth: auth)
|
2012-08-02 04:48:46 +02:00
|
|
|
end
|
2011-12-14 17:38:52 +01:00
|
|
|
end
|
2013-01-24 21:15:24 +01:00
|
|
|
|
|
|
|
def async_execute(data)
|
|
|
|
Sidekiq::Client.enqueue(ProjectWebHookWorker, id, data)
|
|
|
|
end
|
2011-12-14 17:38:52 +01:00
|
|
|
end
|