Implemented JWT Gen Command

This commit is contained in:
darmiel 2021-06-01 22:18:31 +02:00
parent 7f7de954e2
commit 181500f31a

76
cmd/jwtgen.go Normal file
View file

@ -0,0 +1,76 @@
/*
Copyright © 2021 darmiel <hi@d2a.io>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package cmd
import (
"fmt"
"github.com/dgrijalva/jwt-go"
"github.com/spf13/cobra"
"github.com/spf13/viper"
"log"
"time"
)
type Claim struct {
MaxBody int64 `json:"max_body"`
CountNum int `json:"count_num_id"`
jwt.StandardClaims
}
// jwtgenCmd represents the jwtgen command
var jwtgenCmd = &cobra.Command{
Use: "jwtgen",
Short: "Generate JWT Token",
Run: func(cmd *cobra.Command, args []string) {
secret := viper.GetString("jwt")
maxBody := viper.GetInt64("max-body")
audience := viper.GetString("audience")
issuer := viper.GetString("issuer")
count := viper.GetInt("count")
claims := &Claim{
MaxBody: maxBody,
StandardClaims: jwt.StandardClaims{
Audience: audience,
IssuedAt: time.Now().Unix(),
Issuer: issuer,
},
}
fmt.Println("🔨 Generating", count, "JWT-Tokens ...")
for i := 0; i < count; i++ {
claims.CountNum = i
token := jwt.NewWithClaims(jwt.SigningMethodHS512, claims)
signed, err := token.SignedString([]byte(secret))
if err != nil {
log.Fatalln("Error signing:", err)
return
}
fmt.Println(signed)
}
fmt.Println("🤗 Done!")
},
}
func init() {
rootCmd.AddCommand(jwtgenCmd)
regStrP(jwtgenCmd, "secret", "s", "", "Secret")
regStrP(jwtgenCmd, "audience", "a", "", "Audience")
regStrP(jwtgenCmd, "Issuer", "i", "", "Issuer")
regInt64P(jwtgenCmd, "max-body", "x", 1_000_000, "Max-Body")
regIntP(jwtgenCmd, "count", "c", 1, "Token Count")
}