chrly/internal/cmd/token.go

36 lines
642 B
Go
Raw Normal View History

2018-01-16 02:22:22 +05:30
package cmd
import (
"fmt"
"ely.by/chrly/internal/security"
2018-01-16 02:22:22 +05:30
"github.com/spf13/cobra"
)
var tokenCmd = &cobra.Command{
Use: "token",
2018-02-15 02:19:22 +05:30
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)
2018-01-16 02:22:22 +05:30
}
fmt.Println(token)
return nil
2018-01-16 02:22:22 +05:30
},
}
func init() {
RootCmd.AddCommand(tokenCmd)
}