chrly/cmd/token.go

30 lines
586 B
Go
Raw Normal View History

2018-01-16 02:22:22 +05:30
package cmd
import (
"fmt"
"log"
"github.com/elyby/chrly/auth"
2018-01-16 02:22:22 +05:30
"github.com/spf13/cobra"
"github.com/spf13/viper"
2018-01-16 02:22:22 +05:30
)
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",
2018-01-16 02:22:22 +05:30
Run: func(cmd *cobra.Command, args []string) {
jwtAuth := &auth.JwtAuth{Key: []byte(viper.GetString("chrly.secret"))}
token, err := jwtAuth.NewToken(auth.SkinScope)
if err != nil {
log.Fatalf("Unable to create new token. The error is %v\n", err)
2018-01-16 02:22:22 +05:30
}
fmt.Printf("%s\n", token)
2018-01-16 02:22:22 +05:30
},
}
func init() {
RootCmd.AddCommand(tokenCmd)
}