提交 9912770c 编写于 作者: G gitlab system

make hooks respect http basic authentication

上级 e8261313
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册