make token incase it is empty

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-06-04 04:44:50 +00:00
parent 00d19a95da
commit 0ef6a9b47b
1 changed files with 12 additions and 4 deletions

View File

@ -54,7 +54,7 @@ func updateToken(ge *pb.Event) bool {
return false return false
} }
url := ge.Account.URL + "/auth/login" + "?email=" + ge.Account.Email + "&password=" + ge.Account.Password url := ge.Account.URL + "auth/login" + "?email=" + ge.Account.Email + "&password=" + ge.Account.Password
// json := newFetchBody(ge, "POST", url) // json := newFetchBody(ge, "POST", url)
json := POSTbody(ge, url) json := POSTbody(ge, url)
@ -107,22 +107,30 @@ func POSTbody(ge *pb.Event, URL string) string {
log.Println("POSTbody() can't make new req") log.Println("POSTbody() can't make new req")
return "" return ""
} }
token := ge.Account.Token
if (token == "") {
token = "POSTbodyEmptyToken"
}
log.Println("POSTbody() ge.Account.Token =", token)
req.Header.Set("X-Wit-Auth", ge.Account.Token) req.Header.Set("X-Wit-Auth", ge.Account.Token)
client := &http.Client{} client := &http.Client{}
resp, err := client.Do(req) resp, err := client.Do(req)
if err != nil { if err != nil {
log.Printf("Can't exec the req to list networks: %s", err) log.Printf("POSTbody() Can't exec the req to list networks: %s", err)
return "" return ""
} }
body, err := ioutil.ReadAll(resp.Body) body, err := ioutil.ReadAll(resp.Body)
if err != nil { if err != nil {
log.Println("can't read resp") log.Println("POSTbody() can't read resp")
return "" return ""
} }
// log.Printf("GETbody() body =", string(body)) // log.Printf("GETbody() body =", string(body))
if body == nil { if body == nil {
log.Println("networks is nil") log.Println("POSTbody() body is nil")
return "" return ""
} }
log.Println("POSTbody() END body =", string(body))
return string(body) return string(body)
} }