2015-05-13 01:48:13 +00:00
|
|
|
package providers
|
|
|
|
|
|
|
|
import (
|
2015-06-22 19:10:08 +00:00
|
|
|
"io/ioutil"
|
2015-05-13 01:48:13 +00:00
|
|
|
"log"
|
|
|
|
"net/http"
|
2015-06-22 19:10:08 +00:00
|
|
|
"net/url"
|
|
|
|
|
|
|
|
"github.com/bitly/oauth2_proxy/api"
|
2015-05-13 01:48:13 +00:00
|
|
|
)
|
|
|
|
|
2015-06-06 18:15:43 +00:00
|
|
|
func validateToken(p Provider, access_token string, header http.Header) bool {
|
2015-05-13 01:48:13 +00:00
|
|
|
if access_token == "" || p.Data().ValidateUrl == nil {
|
|
|
|
return false
|
|
|
|
}
|
2015-06-22 19:10:08 +00:00
|
|
|
endpoint := p.Data().ValidateUrl.String()
|
2015-05-13 01:48:13 +00:00
|
|
|
if len(header) == 0 {
|
2015-06-22 19:10:08 +00:00
|
|
|
params := url.Values{"access_token": {access_token}}
|
|
|
|
endpoint = endpoint + "?" + params.Encode()
|
2015-05-13 01:48:13 +00:00
|
|
|
}
|
2015-06-22 19:10:08 +00:00
|
|
|
resp, err := api.RequestUnparsedResponse(endpoint, header)
|
|
|
|
if err != nil {
|
2015-05-13 01:48:13 +00:00
|
|
|
log.Printf("token validation request failed: %s", err)
|
|
|
|
return false
|
|
|
|
}
|
2015-06-22 19:10:08 +00:00
|
|
|
|
|
|
|
body, _ := ioutil.ReadAll(resp.Body)
|
|
|
|
resp.Body.Close()
|
|
|
|
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
|
|
|
}
|