oauth2_proxy/providers/internal_util.go

39 lines
936 B
Go
Raw Normal View History

2015-05-13 01:48:13 +00:00
package providers
import (
"io/ioutil"
2015-05-13 01:48:13 +00:00
"log"
"net/http"
"net/url"
"github.com/bitly/oauth2_proxy/api"
2015-05-13 01:48:13 +00:00
)
// validateToken returns true if token is valid
2015-06-06 18:15:43 +00:00
func validateToken(p Provider, access_token string, header http.Header) bool {
if access_token == "" || p.Data().ValidateURL == nil {
2015-05-13 01:48:13 +00:00
return false
}
endpoint := p.Data().ValidateURL.String()
2015-05-13 01:48:13 +00:00
if len(header) == 0 {
params := url.Values{"access_token": {access_token}}
endpoint = endpoint + "?" + params.Encode()
2015-05-13 01:48:13 +00:00
}
resp, err := api.RequestUnparsedResponse(endpoint, header)
if err != nil {
log.Printf("GET %s", endpoint)
2015-05-13 01:48:13 +00:00
log.Printf("token validation request failed: %s", err)
return false
}
body, _ := ioutil.ReadAll(resp.Body)
resp.Body.Close()
log.Printf("%d GET %s %s", resp.StatusCode, endpoint, body)
if resp.StatusCode == 200 {
return true
}
log.Printf("token validation request failed: status %d - %s", resp.StatusCode, body)
return false
2015-05-13 01:48:13 +00:00
}