You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-login/login/gitee/gitee.go

51 lines
1.3 KiB
Go

// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package gitee
import (
"net/http"
"strings"
"git.awesome-for.me/liuzhiguo/go-login/login"
"git.awesome-for.me/liuzhiguo/go-login/login/internal/oauth2"
)
var _ login.Middleware = (*Config)(nil)
// Config configures the Gitee auth provider.
type Config struct {
ClientID string
ClientSecret string
RedirectURL string
Server string
Scope []string
Client *http.Client
}
// Handler returns a http.Handler that runs h at the
// completion of the Gitee authorization flow. The Gitee
// authorization details are available to h in the
// http.Request context.
func (c *Config) Handler(h http.Handler) http.Handler {
server := normalizeAddress(c.Server)
return oauth2.Handler(h, &oauth2.Config{
BasicAuthOff: true,
Client: c.Client,
ClientID: c.ClientID,
ClientSecret: c.ClientSecret,
RedirectURL: c.RedirectURL,
AccessTokenURL: server + "/oauth/token",
AuthorizationURL: server + "/oauth/authorize",
Scope: c.Scope,
})
}
func normalizeAddress(address string) string {
if address == "" {
return "https://gitee.com"
}
return strings.TrimSuffix(address, "/")
}