oauth2_proxy/providers/myusa.go

59 lines
1.3 KiB
Go
Raw Normal View History

2015-03-31 19:17:17 +00:00
package providers
import (
"log"
"net/http"
"net/url"
2015-05-21 06:50:21 +00:00
"github.com/bitly/oauth2_proxy/api"
2015-03-31 19:17:17 +00:00
)
type MyUsaProvider struct {
*ProviderData
}
func NewMyUsaProvider(p *ProviderData) *MyUsaProvider {
const myUsaHost string = "alpha.my.usa.gov"
p.ProviderName = "MyUSA"
if p.LoginURL.String() == "" {
p.LoginURL = &url.URL{Scheme: "https",
2015-03-31 19:17:17 +00:00
Host: myUsaHost,
Path: "/oauth/authorize"}
}
if p.RedeemURL.String() == "" {
p.RedeemURL = &url.URL{Scheme: "https",
2015-03-31 19:17:17 +00:00
Host: myUsaHost,
Path: "/oauth/token"}
}
if p.ProfileURL.String() == "" {
p.ProfileURL = &url.URL{Scheme: "https",
2015-03-31 19:17:17 +00:00
Host: myUsaHost,
Path: "/api/v1/profile"}
}
if p.ValidateURL.String() == "" {
p.ValidateURL = &url.URL{Scheme: "https",
2015-05-08 21:13:35 +00:00
Host: myUsaHost,
Path: "/api/v1/tokeninfo"}
}
2015-03-31 19:17:17 +00:00
if p.Scope == "" {
p.Scope = "profile.email"
}
return &MyUsaProvider{ProviderData: p}
}
func (p *MyUsaProvider) GetEmailAddress(s *SessionState) (string, error) {
2015-03-31 19:17:17 +00:00
req, err := http.NewRequest("GET",
p.ProfileURL.String()+"?access_token="+s.AccessToken, nil)
2015-03-31 19:17:17 +00:00
if err != nil {
log.Printf("failed building request %s", err)
return "", err
}
json, err := api.Request(req)
if err != nil {
log.Printf("failed making request %s", err)
return "", err
}
return json.Get("email").String()
}