Documentation
¶
Overview ¶
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
Package cmd Copyright © 2022 Noah Hsu<i@nn.ci>
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Cancel2FACmd = &cobra.Command{ Use: "cancel2fa", Short: "Delete 2FA of admin user", Run: func(cmd *cobra.Command, args []string) { Init() admin, err := op.GetAdmin() if err != nil { utils.Log.Errorf("failed to get admin user: %+v", err) } else { err := op.Cancel2FAByUser(admin) if err != nil { utils.Log.Errorf("failed to cancel 2FA: %+v", err) } } }, }
Cancel2FACmd represents the delete2fa command
View Source
var LangCmd = &cobra.Command{ Use: "lang", Short: "Generate language json file", Run: func(cmd *cobra.Command, args []string) { err := os.MkdirAll("lang", 0777) if err != nil { utils.Log.Fatal("failed create folder: %s", err.Error()) } generateDriversJson() generateSettingsJson() }, }
LangCmd represents the lang command
View Source
var PasswordCmd = &cobra.Command{ Use: "admin", Aliases: []string{"password"}, Short: "Show admin user's info", Run: func(cmd *cobra.Command, args []string) { Init() admin, err := op.GetAdmin() if err != nil { utils.Log.Errorf("failed get admin user: %+v", err) } else { utils.Log.Infof("admin user's info: \nusername: %s\npassword: %s", admin.Username, admin.Password) } }, }
PasswordCmd represents the password command
View Source
var RestartCmd = &cobra.Command{ Use: "restart", Short: "Restart alist server by daemon/pid file", Run: func(cmd *cobra.Command, args []string) { stop() start() }, }
RestartCmd represents the restart command
View Source
var RootCmd = &cobra.Command{
Use: "alist",
Short: "A file list program that supports multiple storage.",
Long: `A file list program that supports multiple storage,
built with love by Xhofe and friends in Go/Solid.js.
Complete documentation is available at https://alist.nn.ci/`,
}
View Source
var ServerCmd = &cobra.Command{ Use: "server", Short: "Start the server at the specified address", Long: `Start the server at the specified address the address is defined in config file`, Run: func(cmd *cobra.Command, args []string) { Init() bootstrap.InitAria2() bootstrap.InitQbittorrent() bootstrap.LoadStorages() if !flags.Debug && !flags.Dev { gin.SetMode(gin.ReleaseMode) } r := gin.New() r.Use(gin.LoggerWithWriter(log.StandardLogger().Out), gin.RecoveryWithWriter(log.StandardLogger().Out)) server.Init(r) base := fmt.Sprintf("%s:%d", conf.Conf.Address, conf.Conf.Port) utils.Log.Infof("start server @ %s", base) srv := &http.Server{Addr: base, Handler: r} go func() { var err error if conf.Conf.Scheme.Https { err = srv.ListenAndServeTLS(conf.Conf.Scheme.CertFile, conf.Conf.Scheme.KeyFile) } else { err = srv.ListenAndServe() } if err != nil && err != http.ErrServerClosed { utils.Log.Fatalf("failed to start: %s", err.Error()) } }() quit := make(chan os.Signal) signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM) <-quit utils.Log.Println("Shutdown Server ...") ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second) defer cancel() if err := srv.Shutdown(ctx); err != nil { utils.Log.Fatal("Server Shutdown:", err) } select { case <-ctx.Done(): utils.Log.Println("timeout of 1 seconds.") } utils.Log.Println("Server exiting") }, }
ServerCmd represents the server command
View Source
var StartCmd = &cobra.Command{ Use: "start", Short: "Silent start alist server with `--force-bin-dir`", Run: func(cmd *cobra.Command, args []string) { start() }, }
StartCmd represents the start command
View Source
var StopCmd = &cobra.Command{ Use: "stop", Short: "Stop alist server by daemon/pid file", Run: func(cmd *cobra.Command, args []string) { stop() }, }
StopCmd represents the stop command
View Source
var VersionCmd = &cobra.Command{ Use: "version", Short: "Show current version of AList", Run: func(cmd *cobra.Command, args []string) { fmt.Printf(`Built At: %s Go Version: %s Author: %s Commit ID: %s Version: %s WebVersion: %s `, conf.BuiltAt, conf.GoVersion, conf.GitAuthor, conf.GitCommit, conf.Version, conf.WebVersion) os.Exit(0) }, }
VersionCmd represents the version command
Functions ¶
Types ¶
Source Files
¶
Click to show internal directories.
Click to hide internal directories.