mirror of
https://github.com/pocketbase/pocketbase.git
synced 2025-03-19 14:17:48 +02:00
110 lines
3.1 KiB
Go
110 lines
3.1 KiB
Go
|
package auth
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"context"
|
||
|
"encoding/json"
|
||
|
"errors"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/pocketbase/pocketbase/tools/types"
|
||
|
"golang.org/x/oauth2"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
Providers[NameLinear] = wrapFactory(NewLinearProvider)
|
||
|
}
|
||
|
|
||
|
var _ Provider = (*Linear)(nil)
|
||
|
|
||
|
// NameLinear is the unique name of the Linear provider.
|
||
|
const NameLinear string = "linear"
|
||
|
|
||
|
// Linear allows authentication via Linear OAuth2.
|
||
|
type Linear struct {
|
||
|
BaseProvider
|
||
|
}
|
||
|
|
||
|
// NewLinearProvider creates new Linear provider instance with some defaults.
|
||
|
//
|
||
|
// API reference: https://developers.linear.app/docs/oauth/authentication
|
||
|
func NewLinearProvider() *Linear {
|
||
|
return &Linear{BaseProvider{
|
||
|
ctx: context.Background(),
|
||
|
displayName: "Linear",
|
||
|
pkce: false, // Linear doesn't support PKCE at the moment and returns an error if enabled
|
||
|
scopes: []string{"read"},
|
||
|
authURL: "https://linear.app/oauth/authorize",
|
||
|
tokenURL: "https://api.linear.app/oauth/token",
|
||
|
userInfoURL: "https://api.linear.app/graphql",
|
||
|
}}
|
||
|
}
|
||
|
|
||
|
// FetchAuthUser returns an AuthUser instance based on the Linear's user api.
|
||
|
//
|
||
|
// API reference: https://developers.linear.app/docs/graphql/working-with-the-graphql-api#authentication
|
||
|
func (p *Linear) FetchAuthUser(token *oauth2.Token) (*AuthUser, error) {
|
||
|
data, err := p.FetchRawUserInfo(token)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
rawUser := map[string]any{}
|
||
|
if err := json.Unmarshal(data, &rawUser); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
extracted := struct {
|
||
|
Data struct {
|
||
|
Viewer struct {
|
||
|
Id string `json:"id"`
|
||
|
DisplayName string `json:"displayName"`
|
||
|
Name string `json:"name"`
|
||
|
Email string `json:"email"`
|
||
|
AvatarURL string `json:"avatarUrl"`
|
||
|
Active bool `json:"active"`
|
||
|
} `json:"viewer"`
|
||
|
} `json:"data"`
|
||
|
}{}
|
||
|
|
||
|
if err := json.Unmarshal(data, &extracted); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
|
||
|
if !extracted.Data.Viewer.Active {
|
||
|
return nil, errors.New("the Linear user account is not active")
|
||
|
}
|
||
|
|
||
|
user := &AuthUser{
|
||
|
Id: extracted.Data.Viewer.Id,
|
||
|
Name: extracted.Data.Viewer.Name,
|
||
|
Username: extracted.Data.Viewer.DisplayName,
|
||
|
Email: extracted.Data.Viewer.Email,
|
||
|
AvatarURL: extracted.Data.Viewer.AvatarURL,
|
||
|
RawUser: rawUser,
|
||
|
AccessToken: token.AccessToken,
|
||
|
RefreshToken: token.RefreshToken,
|
||
|
}
|
||
|
|
||
|
user.Expiry, _ = types.ParseDateTime(token.Expiry)
|
||
|
|
||
|
return user, nil
|
||
|
}
|
||
|
|
||
|
// FetchRawUserInfo implements Provider.FetchRawUserInfo interface method.
|
||
|
//
|
||
|
// Linear doesn't have a UserInfo endpoint and information on the user
|
||
|
// is retrieved using their GraphQL API (https://developers.linear.app/docs/graphql/working-with-the-graphql-api#queries-and-mutations)
|
||
|
func (p *Linear) FetchRawUserInfo(token *oauth2.Token) ([]byte, error) {
|
||
|
query := []byte(`{"query": "query Me { viewer { id displayName name email avatarUrl active } }"}`)
|
||
|
bodyReader := bytes.NewReader(query)
|
||
|
|
||
|
req, err := http.NewRequestWithContext(p.ctx, "POST", p.userInfoURL, bodyReader)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
req.Header.Set("Content-Type", "application/json")
|
||
|
|
||
|
return p.sendRawUserInfoRequest(req, token)
|
||
|
}
|