chrly/internal/cmd/token.go

36 lines
642 B
Go

package cmd
import (
"fmt"
"ely.by/chrly/internal/security"
"github.com/spf13/cobra"
)
var tokenCmd = &cobra.Command{
Use: "token",
Short: "Creates a new token, which allows to interact with Chrly API",
RunE: func(cmd *cobra.Command, args []string) error {
container := shouldGetContainer()
var auth *security.Jwt
err := container.Resolve(&auth)
if err != nil {
return err
}
token, err := auth.NewToken(security.ProfileScope)
if err != nil {
return fmt.Errorf("Unable to create a new token. The error is %v\n", err)
}
fmt.Println(token)
return nil
},
}
func init() {
RootCmd.AddCommand(tokenCmd)
}