mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-10-31 14:15:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package oauth
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"crypto/rand"
 | |
| 	"crypto/tls"
 | |
| 	"encoding/base64"
 | |
| 	"net/http"
 | |
| 
 | |
| 	"golang.org/x/oauth2"
 | |
| )
 | |
| 
 | |
| type OAuth struct {
 | |
| 	Config   oauth2.Config
 | |
| 	Context  context.Context
 | |
| 	Token    *oauth2.Token
 | |
| 	Verifier string
 | |
| }
 | |
| 
 | |
| func NewOAuth(config oauth2.Config, insecureSkipVerify bool) *OAuth {
 | |
| 	// Create transport with TLS
 | |
| 	transport := &http.Transport{
 | |
| 		TLSClientConfig: &tls.Config{
 | |
| 			InsecureSkipVerify: insecureSkipVerify,
 | |
| 			MinVersion:         tls.VersionTLS12,
 | |
| 		},
 | |
| 	}
 | |
| 
 | |
| 	// Create a new context
 | |
| 	ctx := context.Background()
 | |
| 
 | |
| 	// Create the HTTP client with the transport
 | |
| 	httpClient := &http.Client{
 | |
| 		Transport: transport,
 | |
| 	}
 | |
| 
 | |
| 	// Set the HTTP client in the context
 | |
| 	ctx = context.WithValue(ctx, oauth2.HTTPClient, httpClient)
 | |
| 
 | |
| 	// Create the verifier
 | |
| 	verifier := oauth2.GenerateVerifier()
 | |
| 
 | |
| 	return &OAuth{
 | |
| 		Config:   config,
 | |
| 		Context:  ctx,
 | |
| 		Verifier: verifier,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (oauth *OAuth) GetAuthURL(state string) string {
 | |
| 	// Return the auth url
 | |
| 	return oauth.Config.AuthCodeURL(state, oauth2.AccessTypeOffline, oauth2.S256ChallengeOption(oauth.Verifier))
 | |
| }
 | |
| 
 | |
| func (oauth *OAuth) ExchangeToken(code string) (string, error) {
 | |
| 	// Exchange the code for a token
 | |
| 	token, err := oauth.Config.Exchange(oauth.Context, code, oauth2.VerifierOption(oauth.Verifier))
 | |
| 
 | |
| 	// Check if there was an error
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 
 | |
| 	// Set the token
 | |
| 	oauth.Token = token
 | |
| 
 | |
| 	// Return the access token
 | |
| 	return oauth.Token.AccessToken, nil
 | |
| }
 | |
| 
 | |
| func (oauth *OAuth) GetClient() *http.Client {
 | |
| 	// Return the http client with the token set
 | |
| 	return oauth.Config.Client(oauth.Context, oauth.Token)
 | |
| }
 | |
| 
 | |
| func (oauth *OAuth) GenerateState() string {
 | |
| 	// Generate a random state string
 | |
| 	b := make([]byte, 128)
 | |
| 
 | |
| 	// Fill the byte slice with random data
 | |
| 	rand.Read(b)
 | |
| 
 | |
| 	// Encode the byte slice to a base64 string
 | |
| 	state := base64.URLEncoding.EncodeToString(b)
 | |
| 
 | |
| 	return state
 | |
| }
 | 
