summaryrefslogtreecommitdiff
blob: e97e99768227e649bc7132a8231d567863c82d35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package auth

import (
	"context"
	"encoding/gob"
	"github.com/coreos/go-oidc"
	"github.com/gorilla/sessions"
	"go-gentoo/pkg/config"
	"go-gentoo/pkg/models"
	"golang.org/x/oauth2"
)

var (
	Oauth2Config oauth2.Config
	Verifier     *oidc.IDTokenVerifier
	Ctx          context.Context
	CookieStore  *sessions.CookieStore
)

func Init() {
	gob.Register(&models.User{})

	Ctx = context.Background()
	provider, err := oidc.NewProvider(Ctx, config.OIDConfigURL())
	if err != nil {
		panic(err)
	}

	CookieStore = sessions.NewCookieStore([]byte(config.SessionSecret()))

	// Configure an OpenID Connect aware OAuth2 client.
	Oauth2Config = oauth2.Config{
		ClientID:     config.OIDClientID(),
		ClientSecret: config.OIDClientSecret(),
		RedirectURL:  config.ApplicationURL() + "/auth/callback",
		// Discovery returns the OAuth2 endpoints.
		Endpoint: provider.Endpoint(),
		// "openid" is a required scope for OpenID Connect flows.
		Scopes: []string{oidc.ScopeOpenID, "profile", "email"},
	}

	oidcConfig := &oidc.Config{
		ClientID: config.OIDClientID(),
	}
	Verifier = provider.Verifier(oidcConfig)

}