Merge pull request #1184 from karuna/master
Hook url should be able to contain http basic authentication
This commit is contained in:
commit
c757924902
1 changed files with 10 additions and 1 deletions
|
@ -11,7 +11,16 @@ class WebHook < ActiveRecord::Base
|
||||||
message: "should be a valid url" }
|
message: "should be a valid url" }
|
||||||
|
|
||||||
def execute(data)
|
def execute(data)
|
||||||
WebHook.post(url, body: data.to_json, headers: { "Content-Type" => "application/json" })
|
parsed_url = URI.parse(url)
|
||||||
|
if parsed_url.userinfo.blank?
|
||||||
|
WebHook.post(url, body: data.to_json, headers: { "Content-Type" => "application/json" })
|
||||||
|
else
|
||||||
|
post_url = url.gsub(parsed_url.userinfo+"@", "")
|
||||||
|
WebHook.post(post_url,
|
||||||
|
body: data.to_json,
|
||||||
|
headers: { "Content-Type" => "application/json" },
|
||||||
|
basic_auth: {username: parsed_url.user, password: parsed_url.password})
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Reference in a new issue