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/gitea/gitea.go

55 lines
1.5 KiB
Go

// Copyright 2019 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 gitea
import (
"net/http"
"strings"
"git.awesome-for.me/liuzhiguo/go-login/login"
"git.awesome-for.me/liuzhiguo/go-login/login/internal/oauth2"
"git.awesome-for.me/liuzhiguo/go-login/login/logger"
)
var _ login.Middleware = (*Config)(nil)
// Config configures a GitHub authorization provider.
type Config struct {
Client *http.Client
ClientID string
ClientSecret string
Server string
Scope []string
Logger logger.Logger
Dumper logger.Dumper
RedirectURL string
}
// Handler returns a http.Handler that runs h at the
// completion of the GitHub authorization flow. The GitHub
// 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,
AccessTokenURL: server + "/login/oauth/access_token",
AuthorizationURL: server + "/login/oauth/authorize",
Logger: c.Logger,
Dumper: c.Dumper,
RedirectURL: c.RedirectURL,
})
}
func normalizeAddress(address string) string {
if address == "" {
return "https://try.gitea.io"
}
return strings.TrimSuffix(address, "/")
}