summaryrefslogtreecommitdiff
path: root/app/models/web_hook.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/web_hook.rb')
-rw-r--r--app/models/web_hook.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/models/web_hook.rb b/app/models/web_hook.rb
new file mode 100644
index 00000000000..96684d15f8a
--- /dev/null
+++ b/app/models/web_hook.rb
@@ -0,0 +1,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