55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
|
package auth
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"forge.cadoles.com/Cadoles/emissary/internal/auth/user"
|
||
|
"forge.cadoles.com/Cadoles/emissary/internal/command/common"
|
||
|
"forge.cadoles.com/Cadoles/emissary/internal/jwk"
|
||
|
"github.com/lithammer/shortuuid/v4"
|
||
|
"github.com/pkg/errors"
|
||
|
"github.com/urfave/cli/v2"
|
||
|
)
|
||
|
|
||
|
func CreateTokenCommand() *cli.Command {
|
||
|
return &cli.Command{
|
||
|
Name: "create-token",
|
||
|
Usage: "Create a new authentification token",
|
||
|
Flags: []cli.Flag{
|
||
|
&cli.StringFlag{
|
||
|
Name: "role",
|
||
|
Usage: fmt.Sprintf("associate `ROLE` to the token (available: %v)", []user.Role{user.RoleReader, user.RoleWriter}),
|
||
|
Value: string(user.RoleReader),
|
||
|
},
|
||
|
&cli.StringFlag{
|
||
|
Name: "subject",
|
||
|
Usage: "associate `SUBJECT` to the token",
|
||
|
Value: fmt.Sprintf("user-%s", shortuuid.New()),
|
||
|
},
|
||
|
},
|
||
|
Action: func(ctx *cli.Context) error {
|
||
|
conf, err := common.LoadConfig(ctx)
|
||
|
if err != nil {
|
||
|
return errors.Wrap(err, "Could not load configuration")
|
||
|
}
|
||
|
|
||
|
subject := ctx.String("subject")
|
||
|
role := ctx.String("role")
|
||
|
|
||
|
key, err := jwk.LoadOrGenerate(string(conf.Server.PrivateKeyPath), jwk.DefaultKeySize)
|
||
|
if err != nil {
|
||
|
return errors.WithStack(err)
|
||
|
}
|
||
|
|
||
|
token, err := user.GenerateToken(ctx.Context, key, string(conf.Server.Issuer), subject, user.Role(role))
|
||
|
if err != nil {
|
||
|
return errors.WithStack(err)
|
||
|
}
|
||
|
|
||
|
fmt.Println(token)
|
||
|
|
||
|
return nil
|
||
|
},
|
||
|
}
|
||
|
}
|