mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-28 13:43:12 +08:00
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
package commands
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/manifoldco/promptui"
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/photoprism/photoprism/internal/entity"
|
|
"github.com/photoprism/photoprism/pkg/clean"
|
|
)
|
|
|
|
// ClientsRemoveCommand configures the command name, flags, and action.
|
|
var ClientsRemoveCommand = &cli.Command{
|
|
Name: "rm",
|
|
Usage: "Deletes the specified client application",
|
|
ArgsUsage: "[client id]",
|
|
Flags: []cli.Flag{
|
|
&cli.BoolFlag{
|
|
Name: "force",
|
|
Aliases: []string{"f"},
|
|
Usage: "skips asking for confirmation",
|
|
},
|
|
},
|
|
Action: clientsRemoveAction,
|
|
}
|
|
|
|
// clientsRemoveAction deletes a registered client application
|
|
func clientsRemoveAction(ctx *cli.Context) error {
|
|
return CallWithDependencies(ctx, func(conf *config.Config) error {
|
|
conf.MigrateDb(false, nil)
|
|
|
|
id := clean.UID(ctx.Args().First())
|
|
|
|
// Name or UID provided?
|
|
if id == "" {
|
|
log.Infof("no valid client id specified")
|
|
return cli.ShowSubcommandHelp(ctx)
|
|
}
|
|
|
|
// Find client record.
|
|
var m *entity.Client
|
|
|
|
m = entity.FindClientByUID(id)
|
|
|
|
if m == nil {
|
|
return fmt.Errorf("client %s not found", clean.Log(id))
|
|
} else if m.Deleted() {
|
|
return fmt.Errorf("client %s has already been deleted", clean.Log(id))
|
|
}
|
|
|
|
if !ctx.Bool("force") && !RunNonInteractively(false) {
|
|
actionPrompt := promptui.Prompt{
|
|
Label: fmt.Sprintf("Delete client %s?", m.GetUID()),
|
|
IsConfirm: true,
|
|
}
|
|
|
|
if _, err := actionPrompt.Run(); err != nil {
|
|
log.Infof("client %s was not deleted", m.GetUID())
|
|
return nil
|
|
}
|
|
}
|
|
|
|
if err := m.Delete(); err != nil {
|
|
return err
|
|
}
|
|
|
|
log.Infof("client %s has been deleted", m.GetUID())
|
|
|
|
return nil
|
|
})
|
|
}
|