2011-12-14 17:38:52 +01:00
|
|
|
class WebHook < ActiveRecord::Base
|
|
|
|
include HTTParty
|
|
|
|
|
|
|
|
# HTTParty timeout
|
|
|
|
default_timeout 10
|
|
|
|
|
|
|
|
belongs_to :project
|
|
|
|
|
|
|
|
validates :url,
|
|
|
|
presence: true,
|
|
|
|
format: {
|
2011-12-26 10:12:09 +01:00
|
|
|
with: URI::regexp(%w(http https)),
|
2011-12-14 17:38:52 +01:00
|
|
|
message: "should be a valid url" }
|
|
|
|
|
|
|
|
def execute(data)
|
|
|
|
WebHook.post(url, body: data.to_json)
|
|
|
|
rescue
|
|
|
|
# There was a problem calling this web hook, let's forget about it.
|
|
|
|
end
|
|
|
|
end
|