Auth: Add CLI command to create access tokens for apps #782 #808 #3943

You can now run "photoprism auth add" to create new client access tokens
that allow external applications to use the built-in REST API.

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2024-01-05 16:31:07 +01:00
parent d6ec8c069e
commit 713593da4e
117 changed files with 2528 additions and 938 deletions

25
internal/commands/auth.go Normal file
View File

@@ -0,0 +1,25 @@
package commands
import (
"github.com/urfave/cli"
)
// AuthCommands registers the API authentication subcommands.
var AuthCommands = cli.Command{
Name: "auth",
Aliases: []string{"sess"},
Usage: "API authentication subcommands",
Subcommands: []cli.Command{
AuthListCommand,
AuthAddCommand,
AuthShowCommand,
AuthRemoveCommand,
AuthClearCommand,
},
}
// tokensFlag represents a CLI flag to include tokens in a report.
var tokensFlag = cli.BoolFlag{
Name: "tokens",
Usage: "show preview and download tokens",
}