2021-03-26 00:17:52 +08:00
|
|
|
package functions
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2021-04-20 09:50:58 +08:00
|
|
|
"os"
|
2021-03-26 00:17:52 +08:00
|
|
|
"github.com/gravitl/netmaker/config"
|
|
|
|
"github.com/gravitl/netmaker/models"
|
|
|
|
"github.com/dgrijalva/jwt-go"
|
|
|
|
)
|
|
|
|
|
|
|
|
var jwtSecretKey = []byte("(BytesOverTheWire)")
|
|
|
|
|
|
|
|
// CreateJWT func will used to create the JWT while signing in and signing out
|
2021-04-13 12:42:35 +08:00
|
|
|
func CreateJWT(macaddress string, network string) (response string, err error) {
|
2021-03-26 00:17:52 +08:00
|
|
|
expirationTime := time.Now().Add(5 * time.Minute)
|
|
|
|
claims := &models.Claims{
|
|
|
|
MacAddress: macaddress,
|
2021-04-13 12:42:35 +08:00
|
|
|
Network: network,
|
2021-03-26 00:17:52 +08:00
|
|
|
StandardClaims: jwt.StandardClaims{
|
|
|
|
ExpiresAt: expirationTime.Unix(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
|
|
|
tokenString, err := token.SignedString(jwtSecretKey)
|
|
|
|
if err == nil {
|
|
|
|
return tokenString, nil
|
|
|
|
}
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
func CreateUserJWT(username string, isadmin bool) (response string, err error) {
|
|
|
|
expirationTime := time.Now().Add(60 * time.Minute)
|
|
|
|
claims := &models.UserClaims{
|
|
|
|
UserName: username,
|
|
|
|
IsAdmin: isadmin,
|
|
|
|
StandardClaims: jwt.StandardClaims{
|
|
|
|
ExpiresAt: expirationTime.Unix(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
|
|
|
tokenString, err := token.SignedString(jwtSecretKey)
|
|
|
|
if err == nil {
|
|
|
|
return tokenString, nil
|
|
|
|
}
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
// VerifyToken func will used to Verify the JWT Token while using APIS
|
|
|
|
func VerifyUserToken(tokenString string) (username string, isadmin bool, err error) {
|
|
|
|
claims := &models.UserClaims{}
|
|
|
|
|
2021-04-20 09:50:58 +08:00
|
|
|
if tokenString == config.Config.Server.MasterKey || (tokenString == os.Getenv("MASTER_KEY") && tokenString != "") {
|
2021-04-15 10:59:25 +08:00
|
|
|
return "masteradministrator", true, nil
|
|
|
|
}
|
|
|
|
|
2021-03-26 00:17:52 +08:00
|
|
|
token, err := jwt.ParseWithClaims(tokenString, claims, func(token *jwt.Token) (interface{}, error) {
|
|
|
|
return jwtSecretKey, nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if token != nil {
|
|
|
|
return claims.UserName, claims.IsAdmin, nil
|
|
|
|
}
|
|
|
|
return "", false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// VerifyToken func will used to Verify the JWT Token while using APIS
|
2021-04-13 12:42:35 +08:00
|
|
|
func VerifyToken(tokenString string) (macaddress string, network string, err error) {
|
2021-03-26 00:17:52 +08:00
|
|
|
claims := &models.Claims{}
|
|
|
|
|
|
|
|
//this may be a stupid way of serving up a master key
|
|
|
|
//TODO: look into a different method. Encryption?
|
2021-04-20 09:50:58 +08:00
|
|
|
if tokenString == config.Config.Server.MasterKey || (tokenString == os.Getenv("MASTER_KEY") && tokenString != "") {
|
2021-03-26 00:17:52 +08:00
|
|
|
return "mastermac", "", nil
|
|
|
|
}
|
|
|
|
|
|
|
|
token, err := jwt.ParseWithClaims(tokenString, claims, func(token *jwt.Token) (interface{}, error) {
|
|
|
|
return jwtSecretKey, nil
|
|
|
|
})
|
|
|
|
|
|
|
|
if token != nil {
|
2021-04-13 12:42:35 +08:00
|
|
|
return claims.MacAddress, claims.Network, nil
|
2021-03-26 00:17:52 +08:00
|
|
|
}
|
|
|
|
return "", "", err
|
|
|
|
}
|
|
|
|
|