oauth2_proxy/providers/linkedin.go

80 lines
1.9 KiB
Go
Raw Normal View History

2015-04-17 22:33:17 +00:00
package providers
import (
"bytes"
"errors"
"fmt"
"log"
"net/http"
"net/url"
2015-05-21 06:50:21 +00:00
"github.com/bitly/oauth2_proxy/api"
2015-04-17 22:33:17 +00:00
)
type LinkedInProvider struct {
*ProviderData
}
func NewLinkedInProvider(p *ProviderData) *LinkedInProvider {
p.ProviderName = "LinkedIn"
if p.LoginUrl.String() == "" {
p.LoginUrl = &url.URL{Scheme: "https",
Host: "www.linkedin.com",
Path: "/uas/oauth2/authorization"}
}
if p.RedeemUrl.String() == "" {
p.RedeemUrl = &url.URL{Scheme: "https",
Host: "www.linkedin.com",
Path: "/uas/oauth2/accessToken"}
}
if p.ProfileUrl.String() == "" {
p.ProfileUrl = &url.URL{Scheme: "https",
Host: "www.linkedin.com",
Path: "/v1/people/~/email-address"}
}
2015-05-13 01:48:13 +00:00
if p.ValidateUrl.String() == "" {
p.ValidateUrl = p.ProfileUrl
}
2015-04-17 22:33:17 +00:00
if p.Scope == "" {
p.Scope = "r_emailaddress r_basicprofile"
}
return &LinkedInProvider{ProviderData: p}
}
2015-05-13 01:48:13 +00:00
func getLinkedInHeader(access_token string) http.Header {
header := make(http.Header)
header.Set("Accept", "application/json")
header.Set("x-li-format", "json")
header.Set("Authorization", fmt.Sprintf("Bearer %s", access_token))
return header
}
2015-05-21 03:23:48 +00:00
func (p *LinkedInProvider) GetEmailAddress(body []byte, access_token string) (string, error) {
2015-04-17 22:33:17 +00:00
if access_token == "" {
return "", errors.New("missing access token")
}
params := url.Values{}
req, err := http.NewRequest("GET", p.ProfileUrl.String()+"?format=json", bytes.NewBufferString(params.Encode()))
if err != nil {
return "", err
}
2015-05-13 01:48:13 +00:00
req.Header = getLinkedInHeader(access_token)
2015-04-17 22:33:17 +00:00
json, err := api.Request(req)
if err != nil {
log.Printf("failed making request %s", err)
return "", err
}
email, err := json.String()
if err != nil {
log.Printf("failed making request %s", err)
return "", err
}
return email, nil
}
2015-05-13 01:48:13 +00:00
func (p *LinkedInProvider) ValidateToken(access_token string) bool {
return validateToken(p, access_token, getLinkedInHeader(access_token))
}