mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 08:47:12 +08:00
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
package commands
|
|
|
|
import (
|
|
"github.com/manifoldco/promptui"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
)
|
|
|
|
// ClientsResetCommand configures the command name, flags, and action.
|
|
var ClientsResetCommand = &cli.Command{
|
|
Name: "reset",
|
|
Usage: "Removes all registered client applications",
|
|
Flags: []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "trace",
|
|
Aliases: []string{"t"},
|
|
Usage: "shows trace logs for debugging",
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "yes",
|
|
Aliases: []string{"y"},
|
|
Usage: "runs the command non-interactively",
|
|
},
|
|
},
|
|
Action: clientsResetAction,
|
|
}
|
|
|
|
// clientsResetAction removes all registered client applications.
|
|
func clientsResetAction(ctx *cli.Context) error {
|
|
return CallWithDependencies(ctx, func(conf *config.Config) error {
|
|
confirmed := RunNonInteractively(ctx.Bool("yes"))
|
|
|
|
// Show prompt?
|
|
if !confirmed {
|
|
actionPrompt := promptui.Prompt{
|
|
Label: "Reset the client database to a clean state?",
|
|
IsConfirm: true,
|
|
}
|
|
|
|
if _, err := actionPrompt.Run(); err != nil {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
if ctx.Bool("trace") {
|
|
log.SetLevel(logrus.TraceLevel)
|
|
log.Infoln("reset: enabled trace mode")
|
|
}
|
|
|
|
db := conf.Db()
|
|
|
|
// Drop existing auth_clients table.
|
|
if err := db.DropTableIfExists(entity.Client{}).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
// Re-create auth_clients.
|
|
if err := db.CreateTable(entity.Client{}).Error; err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Infof("the client database has been recreated and is now in a clean state")
|
|
|
|
return nil
|
|
})
|
|
}
|