20ce61da5a
* Fix Auth Headers * Tweak Oauth to work for Google Co-authored-by: Ben Toogood <ben@micro.mu> Co-authored-by: Asim Aslam <asim@aslam.me>
55 lines
1.0 KiB
Go
55 lines
1.0 KiB
Go
package oauth
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"github.com/micro/go-micro/v2/auth/provider"
|
|
)
|
|
|
|
// NewProvider returns an initialised oauth provider
|
|
func NewProvider(opts ...provider.Option) provider.Provider {
|
|
var options provider.Options
|
|
for _, o := range opts {
|
|
o(&options)
|
|
}
|
|
return &oauth{options}
|
|
}
|
|
|
|
type oauth struct {
|
|
opts provider.Options
|
|
}
|
|
|
|
func (o *oauth) String() string {
|
|
return "oauth"
|
|
}
|
|
|
|
func (o *oauth) Options() provider.Options {
|
|
return o.opts
|
|
}
|
|
|
|
func (o *oauth) Endpoint() string {
|
|
params := make(url.Values)
|
|
params.Add("response_type", "code")
|
|
|
|
if clientID := o.opts.ClientID; len(clientID) > 0 {
|
|
params.Add("client_id", clientID)
|
|
}
|
|
|
|
if scope := o.opts.Scope; len(scope) > 0 {
|
|
// spaces are url encoded since this cannot be passed in env vars
|
|
params.Add("scope", strings.ReplaceAll(scope, "%20", " "))
|
|
}
|
|
|
|
if redir := o.Redirect(); len(redir) > 0 {
|
|
params.Add("redirect_uri", redir)
|
|
}
|
|
|
|
return fmt.Sprintf("%v?%v", o.opts.Endpoint, params.Encode())
|
|
}
|
|
|
|
func (o *oauth) Redirect() string {
|
|
return o.opts.Redirect
|
|
}
|