summaryrefslogtreecommitdiff
path: root/app/models/ci/web_hook.rb
blob: 7ca16a1bde82fc7f2d603fe010d48ba6d844d4c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# == Schema Information
#
# Table name: ci_web_hooks
#
#  id         :integer          not null, primary key
#  url        :string(255)      not null
#  project_id :integer          not null
#  created_at :datetime
#  updated_at :datetime
#

module Ci
  class WebHook < ActiveRecord::Base
    extend Ci::Model

    include HTTParty

    belongs_to :project, class_name: 'Ci::Project'

    # HTTParty timeout
    default_timeout 10

    validates :url, presence: true,
                    format: { with: URI::regexp(%w(http https)), message: "should be a valid url" }

    def execute(data)
      parsed_url = URI.parse(url)
      if parsed_url.userinfo.blank?
        Ci::WebHook.post(url, body: data.to_json, headers: { "Content-Type" => "application/json" }, verify: false)
      else
        post_url = url.gsub("#{parsed_url.userinfo}@", "")
        auth = {
          username: URI.decode(parsed_url.user),
          password: URI.decode(parsed_url.password),
        }
        Ci::WebHook.post(post_url,
                     body: data.to_json,
                     headers: { "Content-Type" => "application/json" },
                     verify: false,
                     basic_auth: auth)
      end
    end
  end
end