summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorcpanato <ctadeu@gmail.com>2018-06-15 17:38:08 +0200
committercpanato <ctadeu@gmail.com>2018-06-15 17:38:08 +0200
commite38b18565ecd9dbe46b0ba8a263c7a39caa0bfda (patch)
tree3df8e817eafd710bbc3b5ef04ea42c3d2581c74f /app
parentc8b99b97dffbc7c96b3911f6301f0ec69399cea2 (diff)
parent85a75526c7c03fca1d14a39cfb3f2638d98d3fe1 (diff)
downloadchat-e38b18565ecd9dbe46b0ba8a263c7a39caa0bfda.tar.gz
chat-e38b18565ecd9dbe46b0ba8a263c7a39caa0bfda.tar.bz2
chat-e38b18565ecd9dbe46b0ba8a263c7a39caa0bfda.zip
Merge remote-tracking branch 'upstream/release-5.0' into release-5.0-merge-to-master-20180615
Diffstat (limited to 'app')
-rw-r--r--app/oauth.go15
1 files changed, 14 insertions, 1 deletions
diff --git a/app/oauth.go b/app/oauth.go
index 13fbd5a73..477c0aeaf 100644
--- a/app/oauth.go
+++ b/app/oauth.go
@@ -8,6 +8,7 @@ import (
b64 "encoding/base64"
"fmt"
"io"
+ "io/ioutil"
"net/http"
"net/url"
"strings"
@@ -690,10 +691,13 @@ func (a *App) AuthorizeOAuthUser(w http.ResponseWriter, r *http.Request, service
if resp, err := a.HTTPClient(true).Do(req); err != nil {
return nil, "", stateProps, model.NewAppError("AuthorizeOAuthUser", "api.user.authorize_oauth_user.token_failed.app_error", nil, err.Error(), http.StatusInternalServerError)
} else {
+ bodyBytes, _ = ioutil.ReadAll(resp.Body)
+ resp.Body = ioutil.NopCloser(bytes.NewBuffer(bodyBytes))
+
ar = model.AccessResponseFromJson(resp.Body)
consumeAndClose(resp)
- if ar == nil {
+ if ar == nil || resp.StatusCode != http.StatusOK {
return nil, "", stateProps, model.NewAppError("AuthorizeOAuthUser", "api.user.authorize_oauth_user.bad_response.app_error", nil, "response_body="+string(bodyBytes), http.StatusInternalServerError)
}
}
@@ -717,6 +721,15 @@ func (a *App) AuthorizeOAuthUser(w http.ResponseWriter, r *http.Request, service
if resp, err := a.HTTPClient(true).Do(req); err != nil {
return nil, "", stateProps, model.NewAppError("AuthorizeOAuthUser", "api.user.authorize_oauth_user.service.app_error", map[string]interface{}{"Service": service}, err.Error(), http.StatusInternalServerError)
} else {
+ bodyBytes, _ = ioutil.ReadAll(resp.Body)
+ if resp.StatusCode != http.StatusOK {
+ bodyString := string(bodyBytes)
+ mlog.Error("Error getting OAuth user: " + bodyString)
+ if service == model.SERVICE_GITLAB && resp.StatusCode == http.StatusForbidden && strings.Contains(bodyString, "Terms of Service") {
+ return nil, "", stateProps, model.NewAppError("AuthorizeOAuthUser", "oauth.gitlab.tos.error", nil, "", http.StatusBadRequest)
+ }
+ }
+ resp.Body = ioutil.NopCloser(bytes.NewBuffer(bodyBytes))
return resp.Body, teamId, stateProps, nil
}