aboutsummaryrefslogtreecommitdiff
path: root/server/auth/provider.go
blob: d4a8e58aef5c84bf645dee56b8fcc1e7415470a6 (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
package auth

import (
	"fmt"
	"net/http"

	"golang.org/x/oauth2"
)

// Provider is an abstraction of different auth methods.
type Provider interface {
	Name() string
	StartSession(string, *http.Request) *Session
	Exchange(string) (*oauth2.Token, error)
	Username(*oauth2.Token) string
	Valid(*oauth2.Token) bool
	Revoke(*oauth2.Token) error
}

// Session stores authentication state.
type Session struct {
	AuthURL string
	Token   *oauth2.Token
}

// Authorize obtains data from the provider and retains an access token that
// can be stored for later access.
func (s *Session) Authorize(provider Provider, code string) error {
	t, err := provider.Exchange(code)
	if err != nil {
		return err
	}
	s.Token = t
	return nil
}

// Oauth2RedirectURL returns an OAuth redirect_uri for this request.
func Oauth2RedirectURL(r *http.Request) string {
	protocol := "http"
	if r.TLS != nil {
		protocol = "https"
	}
	return fmt.Sprintf("%s://%s/auth/callback", protocol, r.Host)
}