summaryrefslogtreecommitdiff
path: root/app/models/web_hook.rb
blob: 96684d15f8a82990ff9f541bffeaaa583dbc080a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class WebHook < ActiveRecord::Base
  include HTTParty

  # HTTParty timeout
  default_timeout 10

  belongs_to :project

  validates :url,
            presence: true,
            format: {
              with: /(^$)|(^(http|https):\/\/[a-z0-9]+([\-\.]{1}[a-z0-9]+)*\.[a-z]{2,5}(([0-9]{1,5})?\/.*)?$)/ix,
              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