d49c3e167f
* New SessionState to consolidate email, access token and refresh token * split ServeHttp into individual methods * log on session renewal * log on access token refresh * refactor cookie encription/decription and session state serialization
78 lines
1.8 KiB
Go
78 lines
1.8 KiB
Go
package providers
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/bitly/oauth2_proxy/api"
|
|
)
|
|
|
|
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"}
|
|
}
|
|
if p.ValidateUrl.String() == "" {
|
|
p.ValidateUrl = p.ProfileUrl
|
|
}
|
|
if p.Scope == "" {
|
|
p.Scope = "r_emailaddress r_basicprofile"
|
|
}
|
|
return &LinkedInProvider{ProviderData: p}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (p *LinkedInProvider) GetEmailAddress(s *SessionState) (string, error) {
|
|
if s.AccessToken == "" {
|
|
return "", errors.New("missing access token")
|
|
}
|
|
req, err := http.NewRequest("GET", p.ProfileUrl.String()+"?format=json", nil)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
req.Header = getLinkedInHeader(s.AccessToken)
|
|
|
|
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
|
|
}
|
|
|
|
func (p *LinkedInProvider) ValidateSessionState(s *SessionState) bool {
|
|
return validateToken(p, s.AccessToken, getLinkedInHeader(s.AccessToken))
|
|
}
|