63 lines
1.4 KiB
Go
63 lines
1.4 KiB
Go
package providers
|
|
|
|
import (
|
|
"log"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/bitly/oauth2_proxy/api"
|
|
)
|
|
|
|
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",
|
|
Host: myUsaHost,
|
|
Path: "/oauth/authorize"}
|
|
}
|
|
if p.RedeemUrl.String() == "" {
|
|
p.RedeemUrl = &url.URL{Scheme: "https",
|
|
Host: myUsaHost,
|
|
Path: "/oauth/token"}
|
|
}
|
|
if p.ProfileUrl.String() == "" {
|
|
p.ProfileUrl = &url.URL{Scheme: "https",
|
|
Host: myUsaHost,
|
|
Path: "/api/v1/profile"}
|
|
}
|
|
if p.ValidateUrl.String() == "" {
|
|
p.ValidateUrl = &url.URL{Scheme: "https",
|
|
Host: myUsaHost,
|
|
Path: "/api/v1/tokeninfo"}
|
|
}
|
|
if p.Scope == "" {
|
|
p.Scope = "profile.email"
|
|
}
|
|
return &MyUsaProvider{ProviderData: p}
|
|
}
|
|
|
|
func (p *MyUsaProvider) GetEmailAddress(body []byte, access_token string) (string, error) {
|
|
req, err := http.NewRequest("GET",
|
|
p.ProfileUrl.String()+"?access_token="+access_token, nil)
|
|
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()
|
|
}
|
|
|
|
func (p *MyUsaProvider) ValidateToken(access_token string) bool {
|
|
return validateToken(p, access_token, nil)
|
|
}
|