Skip to content
Snippets Groups Projects
Commit 9912770c authored by gitlab system's avatar gitlab system
Browse files

make hooks respect http basic authentication

parent e8261313
No related branches found
No related tags found
1 merge request!1184Hook url should be able to contain http basic authentication
Loading
Loading
@@ -11,7 +11,16 @@ class WebHook < ActiveRecord::Base
message: "should be a valid url" }
 
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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment