mirror of
				https://github.com/steveiliop56/tinyauth.git
				synced 2025-11-03 23:55:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			158 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			158 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package cmd
 | 
						|
 | 
						|
import (
 | 
						|
	"strings"
 | 
						|
	"tinyauth/internal/bootstrap"
 | 
						|
	"tinyauth/internal/config"
 | 
						|
	"tinyauth/internal/utils"
 | 
						|
 | 
						|
	"github.com/go-playground/validator/v10"
 | 
						|
	"github.com/rs/zerolog"
 | 
						|
	"github.com/rs/zerolog/log"
 | 
						|
	"github.com/spf13/cobra"
 | 
						|
	"github.com/spf13/viper"
 | 
						|
)
 | 
						|
 | 
						|
type rootCmd struct {
 | 
						|
	root *cobra.Command
 | 
						|
	cmd  *cobra.Command
 | 
						|
 | 
						|
	viper *viper.Viper
 | 
						|
}
 | 
						|
 | 
						|
func newRootCmd() *rootCmd {
 | 
						|
	return &rootCmd{
 | 
						|
		viper: viper.New(),
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (c *rootCmd) Register() {
 | 
						|
	c.cmd = &cobra.Command{
 | 
						|
		Use:   "tinyauth",
 | 
						|
		Short: "The simplest way to protect your apps with a login screen",
 | 
						|
		Long:  `Tinyauth is a simple authentication middleware that adds a simple login screen or OAuth with Google, Github or any other provider to all of your docker apps.`,
 | 
						|
		Run:   c.run,
 | 
						|
	}
 | 
						|
 | 
						|
	c.viper.AutomaticEnv()
 | 
						|
 | 
						|
	configOptions := []struct {
 | 
						|
		name        string
 | 
						|
		defaultVal  any
 | 
						|
		description string
 | 
						|
	}{
 | 
						|
		{"port", 3000, "Port to run the server on."},
 | 
						|
		{"address", "0.0.0.0", "Address to bind the server to."},
 | 
						|
		{"app-url", "", "The Tinyauth URL."},
 | 
						|
		{"users", "", "Comma separated list of users in the format username:hash."},
 | 
						|
		{"users-file", "", "Path to a file containing users in the format username:hash."},
 | 
						|
		{"secure-cookie", false, "Send cookie over secure connection only."},
 | 
						|
		{"oauth-whitelist", "", "Comma separated list of email addresses to whitelist when using OAuth."},
 | 
						|
		{"oauth-auto-redirect", "none", "Auto redirect to the specified OAuth provider if configured. (available providers: github, google, generic)"},
 | 
						|
		{"session-expiry", 86400, "Session (cookie) expiration time in seconds."},
 | 
						|
		{"login-timeout", 300, "Login timeout in seconds after max retries reached (0 to disable)."},
 | 
						|
		{"login-max-retries", 5, "Maximum login attempts before timeout (0 to disable)."},
 | 
						|
		{"log-level", "info", "Log level."},
 | 
						|
		{"app-title", "Tinyauth", "Title of the app."},
 | 
						|
		{"forgot-password-message", "", "Message to show on the forgot password page."},
 | 
						|
		{"background-image", "/background.jpg", "Background image URL for the login page."},
 | 
						|
		{"ldap-address", "", "LDAP server address (e.g. ldap://localhost:389)."},
 | 
						|
		{"ldap-bind-dn", "", "LDAP bind DN (e.g. uid=user,dc=example,dc=com)."},
 | 
						|
		{"ldap-bind-password", "", "LDAP bind password."},
 | 
						|
		{"ldap-base-dn", "", "LDAP base DN (e.g. dc=example,dc=com)."},
 | 
						|
		{"ldap-insecure", false, "Skip certificate verification for the LDAP server."},
 | 
						|
		{"ldap-search-filter", "(uid=%s)", "LDAP search filter for user lookup."},
 | 
						|
		{"resources-dir", "/data/resources", "Path to a directory containing custom resources (e.g. background image)."},
 | 
						|
		{"database-path", "/data/tinyauth.db", "Path to the Sqlite database file."},
 | 
						|
		{"trusted-proxies", "", "Comma separated list of trusted proxies (IP addresses or CIDRs) for correct client IP detection."},
 | 
						|
		{"disable-analytics", false, "Disable anonymous version collection."},
 | 
						|
		{"disable-resources", false, "Disable the resources server."},
 | 
						|
	}
 | 
						|
 | 
						|
	for _, opt := range configOptions {
 | 
						|
		switch v := opt.defaultVal.(type) {
 | 
						|
		case bool:
 | 
						|
			c.cmd.Flags().Bool(opt.name, v, opt.description)
 | 
						|
		case int:
 | 
						|
			c.cmd.Flags().Int(opt.name, v, opt.description)
 | 
						|
		case string:
 | 
						|
			c.cmd.Flags().String(opt.name, v, opt.description)
 | 
						|
		}
 | 
						|
 | 
						|
		// Create uppercase env var name
 | 
						|
		envVar := strings.ReplaceAll(strings.ToUpper(opt.name), "-", "_")
 | 
						|
		c.viper.BindEnv(opt.name, envVar)
 | 
						|
	}
 | 
						|
 | 
						|
	c.viper.BindPFlags(c.cmd.Flags())
 | 
						|
 | 
						|
	if c.root != nil {
 | 
						|
		c.root.AddCommand(c.cmd)
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (c *rootCmd) GetCmd() *cobra.Command {
 | 
						|
	return c.cmd
 | 
						|
}
 | 
						|
 | 
						|
func (c *rootCmd) run(cmd *cobra.Command, args []string) {
 | 
						|
	var conf config.Config
 | 
						|
 | 
						|
	err := c.viper.Unmarshal(&conf)
 | 
						|
	if err != nil {
 | 
						|
		log.Fatal().Err(err).Msg("Failed to parse config")
 | 
						|
	}
 | 
						|
 | 
						|
	v := validator.New()
 | 
						|
	err = v.Struct(conf)
 | 
						|
	if err != nil {
 | 
						|
		log.Fatal().Err(err).Msg("Invalid config")
 | 
						|
	}
 | 
						|
 | 
						|
	log.Logger = log.Level(zerolog.Level(utils.GetLogLevel(conf.LogLevel)))
 | 
						|
	log.Info().Str("version", strings.TrimSpace(config.Version)).Msg("Starting Tinyauth")
 | 
						|
 | 
						|
	if log.Logger.GetLevel() == zerolog.TraceLevel {
 | 
						|
		log.Warn().Msg("Log level set to trace, this will log sensitive information!")
 | 
						|
	}
 | 
						|
 | 
						|
	app := bootstrap.NewBootstrapApp(conf)
 | 
						|
 | 
						|
	err = app.Setup()
 | 
						|
	if err != nil {
 | 
						|
		log.Fatal().Err(err).Msg("Failed to setup app")
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func Run() {
 | 
						|
	rootCmd := newRootCmd()
 | 
						|
	rootCmd.Register()
 | 
						|
	root := rootCmd.GetCmd()
 | 
						|
 | 
						|
	userCmd := &cobra.Command{
 | 
						|
		Use:   "user",
 | 
						|
		Short: "User utilities",
 | 
						|
		Long:  `Utilities for creating and verifying tinyauth compatible users.`,
 | 
						|
	}
 | 
						|
	totpCmd := &cobra.Command{
 | 
						|
		Use:   "totp",
 | 
						|
		Short: "Totp utilities",
 | 
						|
		Long:  `Utilities for creating and verifying totp codes.`,
 | 
						|
	}
 | 
						|
 | 
						|
	newCreateUserCmd(userCmd).Register()
 | 
						|
	newVerifyUserCmd(userCmd).Register()
 | 
						|
	newGenerateTotpCmd(totpCmd).Register()
 | 
						|
	newVersionCmd(root).Register()
 | 
						|
	newHealthcheckCmd(root).Register()
 | 
						|
 | 
						|
	root.AddCommand(userCmd)
 | 
						|
	root.AddCommand(totpCmd)
 | 
						|
 | 
						|
	err := root.Execute()
 | 
						|
 | 
						|
	if err != nil {
 | 
						|
		log.Fatal().Err(err).Msg("Failed to execute root command")
 | 
						|
	}
 | 
						|
}
 |