mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2024-12-04 10:34:59 +02:00
7fe6384f38
* initial commit: add groups to azure Signed-off-by: andrewphamade@gmail.com <andrewphamade@gmail.com> * fix deprecations and linting errors Signed-off-by: Andrew Hamade <andrewphamade@gmail.com> * remove groups testing from azure provider Signed-off-by: Andrew Hamade <andrewphamade@gmail.com> * fix test error Signed-off-by: Andrew Hamade <andrewphamade@gmail.com> * verify-generate Signed-off-by: Andrew Hamade <andrewphamade@gmail.com> Signed-off-by: andrewphamade@gmail.com <andrewphamade@gmail.com> Signed-off-by: Andrew Hamade <andrewphamade@gmail.com>
108 lines
2.9 KiB
Go
108 lines
2.9 KiB
Go
package providers
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/apis/sessions"
|
|
"github.com/oauth2-proxy/oauth2-proxy/v7/pkg/requests"
|
|
)
|
|
|
|
// LinkedInProvider represents an LinkedIn based Identity Provider
|
|
type LinkedInProvider struct {
|
|
*ProviderData
|
|
}
|
|
|
|
var _ Provider = (*LinkedInProvider)(nil)
|
|
|
|
const (
|
|
linkedinProviderName = "LinkedIn"
|
|
linkedinDefaultScope = "r_emailaddress r_liteprofile"
|
|
)
|
|
|
|
var (
|
|
// Default Login URL for LinkedIn.
|
|
// Pre-parsed URL of https://www.linkedin.com/uas/oauth2/authorization.
|
|
linkedinDefaultLoginURL = &url.URL{
|
|
Scheme: "https",
|
|
Host: "www.linkedin.com",
|
|
Path: "/oauth/v2/authorization",
|
|
}
|
|
|
|
// Default Redeem URL for LinkedIn.
|
|
// Pre-parsed URL of https://www.linkedin.com/uas/oauth2/accessToken.
|
|
linkedinDefaultRedeemURL = &url.URL{
|
|
Scheme: "https",
|
|
Host: "www.linkedin.com",
|
|
Path: "/uas/oauth2/accessToken",
|
|
}
|
|
|
|
// Default Profile URL for LinkedIn.
|
|
// Pre-parsed URL of https://www.linkedin.com/v1/people/~/email-address.
|
|
linkedinDefaultProfileURL = &url.URL{
|
|
Scheme: "https",
|
|
Host: "api.linkedin.com",
|
|
Path: "/v2/emailAddress",
|
|
}
|
|
|
|
// Default Validate URL for LinkedIn.
|
|
linkedinDefaultValidateURL = &url.URL{
|
|
Scheme: "https",
|
|
Host: "api.linkedin.com",
|
|
Path: "/v2/me",
|
|
}
|
|
)
|
|
|
|
// NewLinkedInProvider initiates a new LinkedInProvider
|
|
func NewLinkedInProvider(p *ProviderData) *LinkedInProvider {
|
|
p.setProviderDefaults(providerDefaults{
|
|
name: linkedinProviderName,
|
|
loginURL: linkedinDefaultLoginURL,
|
|
redeemURL: linkedinDefaultRedeemURL,
|
|
profileURL: linkedinDefaultProfileURL,
|
|
validateURL: linkedinDefaultValidateURL,
|
|
scope: linkedinDefaultScope,
|
|
})
|
|
p.getAuthorizationHeaderFunc = makeLinkedInHeader
|
|
|
|
return &LinkedInProvider{ProviderData: p}
|
|
}
|
|
|
|
func makeLinkedInHeader(accessToken string) http.Header {
|
|
// extra headers required by the LinkedIn API when making authenticated requests
|
|
extraHeaders := map[string]string{
|
|
acceptHeader: acceptApplicationJSON,
|
|
"x-li-format": "json",
|
|
}
|
|
return makeAuthorizationHeader(tokenTypeBearer, accessToken, extraHeaders)
|
|
}
|
|
|
|
// GetEmailAddress returns the Account email address
|
|
func (p *LinkedInProvider) GetEmailAddress(ctx context.Context, s *sessions.SessionState) (string, error) {
|
|
if s.AccessToken == "" {
|
|
return "", errors.New("missing access token")
|
|
}
|
|
|
|
requestURL := p.ProfileURL.String() + "?q=members&projection=(elements*(handle~))"
|
|
json, err := requests.New(requestURL).
|
|
WithContext(ctx).
|
|
WithHeaders(makeLinkedInHeader(s.AccessToken)).
|
|
Do().
|
|
UnmarshalSimpleJSON()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
email, err := json.Get("elements").GetIndex(0).Get("handle~").Get("emailAddress").String()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return email, nil
|
|
}
|
|
|
|
// ValidateSession validates the AccessToken
|
|
func (p *LinkedInProvider) ValidateSession(ctx context.Context, s *sessions.SessionState) bool {
|
|
return validateToken(ctx, p, s.AccessToken, makeLinkedInHeader(s.AccessToken))
|
|
}
|