diff options
| author | gitlab system <gitlab@gems.(none)> | 2012-08-02 09:48:46 +0700 |
|---|---|---|
| committer | gitlab system <gitlab@gems.(none)> | 2012-08-02 09:48:46 +0700 |
| commit | 9912770c6f0177f496112543064355f79badf94b (patch) | |
| tree | 4bb29efa19e7cce3c50ef0a06a7191991b44b874 /app/models/web_hook.rb | |
| parent | e8261313a71fb69adeedc15e15fb572282ceaf06 (diff) | |
| download | gitlab-ce-9912770c6f0177f496112543064355f79badf94b.tar.gz | |
make hooks respect http basic authentication
Diffstat (limited to 'app/models/web_hook.rb')
| -rw-r--r-- | app/models/web_hook.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/app/models/web_hook.rb b/app/models/web_hook.rb index 85d87898682..76efa50198b 100644 --- a/app/models/web_hook.rb +++ b/app/models/web_hook.rb @@ -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 |
