qa: If admin link is down, use local data instead
This commit is contained in:
parent
9a5347b8ef
commit
c31f76e9c3
2 changed files with 10 additions and 48 deletions
|
|
@ -8,8 +8,6 @@ import (
|
|||
"net/url"
|
||||
"os"
|
||||
"path"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
)
|
||||
|
||||
var adminLink string
|
||||
|
|
@ -51,48 +49,3 @@ func fwdAdmin(method, urlpath string, body io.Reader, out interface{}) error {
|
|||
dec := json.NewDecoder(resp.Body)
|
||||
return dec.Decode(&out)
|
||||
}
|
||||
|
||||
func fwdAdminRequest(c *gin.Context, urlpath string) {
|
||||
u, err := url.Parse(adminLink)
|
||||
if err != nil {
|
||||
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": err.Error()})
|
||||
return
|
||||
}
|
||||
|
||||
var user, pass string
|
||||
if u.User != nil {
|
||||
user = u.User.Username()
|
||||
pass, _ = u.User.Password()
|
||||
u.User = nil
|
||||
}
|
||||
|
||||
if len(urlpath) > 0 {
|
||||
u.Path = path.Join(u.Path, urlpath)
|
||||
} else {
|
||||
u.Path = path.Join(u.Path, c.Request.URL.Path)
|
||||
}
|
||||
|
||||
r, err := http.NewRequest(c.Request.Method, u.String(), c.Request.Body)
|
||||
if err != nil {
|
||||
c.AbortWithStatusJSON(http.StatusInternalServerError, gin.H{"errmsg": err.Error()})
|
||||
return
|
||||
}
|
||||
|
||||
if len(user) != 0 || len(pass) != 0 {
|
||||
r.SetBasicAuth(user, pass)
|
||||
}
|
||||
|
||||
resp, err := http.DefaultClient.Do(r)
|
||||
if err != nil {
|
||||
c.AbortWithStatusJSON(http.StatusBadGateway, gin.H{"errmsg": err.Error()})
|
||||
return
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
headers := map[string]string{}
|
||||
for key := range resp.Header {
|
||||
headers[key] = resp.Header.Get(key)
|
||||
}
|
||||
|
||||
c.DataFromReader(resp.StatusCode, resp.ContentLength, resp.Header.Get("Content-Type"), resp.Body, headers)
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue