mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-10-31 06:05:43 +00:00 
			
		
		
		
	 504a3b87b4
			
		
	
	504a3b87b4
	
	
	
		
			
			* wip: add middlewares * refactor: use context fom middleware in handlers * refactor: use controller approach in handlers * refactor: move oauth providers into services (non-working) * feat: create oauth broker service * refactor: use a boostrap service to bootstrap the app * refactor: split utils into smaller files * refactor: use more clear name for frontend assets * feat: allow customizability of resources dir * fix: fix typo in ui middleware * fix: validate resource file paths in ui middleware * refactor: move resource handling to a controller * feat: add some logging * fix: configure middlewares before groups * fix: use correct api path in login mutation * fix: coderabbit suggestions * fix: further coderabbit suggestions
		
			
				
	
	
		
			105 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package controller
 | |
| 
 | |
| import (
 | |
| 	"tinyauth/internal/utils"
 | |
| 
 | |
| 	"github.com/gin-gonic/gin"
 | |
| 	"github.com/rs/zerolog/log"
 | |
| )
 | |
| 
 | |
| type UserContextResponse struct {
 | |
| 	Status      int    `json:"status"`
 | |
| 	Message     string `json:"message"`
 | |
| 	IsLoggedIn  bool   `json:"isLoggedIn"`
 | |
| 	Username    string `json:"username"`
 | |
| 	Name        string `json:"name"`
 | |
| 	Email       string `json:"email"`
 | |
| 	Provider    string `json:"provider"`
 | |
| 	Oauth       bool   `json:"oauth"`
 | |
| 	TotpPending bool   `json:"totpPending"`
 | |
| }
 | |
| 
 | |
| type AppContextResponse struct {
 | |
| 	Status                int      `json:"status"`
 | |
| 	Message               string   `json:"message"`
 | |
| 	ConfiguredProviders   []string `json:"configuredProviders"`
 | |
| 	DisableContinue       bool     `json:"disableContinue"`
 | |
| 	Title                 string   `json:"title"`
 | |
| 	GenericName           string   `json:"genericName"`
 | |
| 	Domain                string   `json:"domain"`
 | |
| 	ForgotPasswordMessage string   `json:"forgotPasswordMessage"`
 | |
| 	BackgroundImage       string   `json:"backgroundImage"`
 | |
| 	OAuthAutoRedirect     string   `json:"oauthAutoRedirect"`
 | |
| }
 | |
| 
 | |
| type ContextControllerConfig struct {
 | |
| 	ConfiguredProviders   []string
 | |
| 	DisableContinue       bool
 | |
| 	Title                 string
 | |
| 	GenericName           string
 | |
| 	Domain                string
 | |
| 	ForgotPasswordMessage string
 | |
| 	BackgroundImage       string
 | |
| 	OAuthAutoRedirect     string
 | |
| }
 | |
| 
 | |
| type ContextController struct {
 | |
| 	Config ContextControllerConfig
 | |
| 	Router *gin.RouterGroup
 | |
| }
 | |
| 
 | |
| func NewContextController(config ContextControllerConfig, router *gin.RouterGroup) *ContextController {
 | |
| 	return &ContextController{
 | |
| 		Config: config,
 | |
| 		Router: router,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (controller *ContextController) SetupRoutes() {
 | |
| 	contextGroup := controller.Router.Group("/context")
 | |
| 	contextGroup.GET("/user", controller.userContextHandler)
 | |
| 	contextGroup.GET("/app", controller.appContextHandler)
 | |
| }
 | |
| 
 | |
| func (controller *ContextController) userContextHandler(c *gin.Context) {
 | |
| 	context, err := utils.GetContext(c)
 | |
| 
 | |
| 	userContext := UserContextResponse{
 | |
| 		Status:      200,
 | |
| 		Message:     "Success",
 | |
| 		IsLoggedIn:  context.IsLoggedIn,
 | |
| 		Username:    context.Username,
 | |
| 		Name:        context.Name,
 | |
| 		Email:       context.Email,
 | |
| 		Provider:    context.Provider,
 | |
| 		Oauth:       context.OAuth,
 | |
| 		TotpPending: context.TotpPending,
 | |
| 	}
 | |
| 
 | |
| 	if err != nil {
 | |
| 		log.Debug().Err(err).Msg("No user context found in request")
 | |
| 		userContext.Status = 401
 | |
| 		userContext.Message = "Unauthorized"
 | |
| 		userContext.IsLoggedIn = false
 | |
| 		c.JSON(200, userContext)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	c.JSON(200, userContext)
 | |
| }
 | |
| 
 | |
| func (controller *ContextController) appContextHandler(c *gin.Context) {
 | |
| 	c.JSON(200, AppContextResponse{
 | |
| 		Status:                200,
 | |
| 		Message:               "Success",
 | |
| 		ConfiguredProviders:   controller.Config.ConfiguredProviders,
 | |
| 		DisableContinue:       controller.Config.DisableContinue,
 | |
| 		Title:                 controller.Config.Title,
 | |
| 		GenericName:           controller.Config.GenericName,
 | |
| 		Domain:                controller.Config.Domain,
 | |
| 		ForgotPasswordMessage: controller.Config.ForgotPasswordMessage,
 | |
| 		BackgroundImage:       controller.Config.BackgroundImage,
 | |
| 		OAuthAutoRedirect:     controller.Config.OAuthAutoRedirect,
 | |
| 	})
 | |
| }
 |