mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-05 08:47:35 +08:00
removing windows installer portions
This commit is contained in:
@@ -7,68 +7,6 @@ import (
|
||||
// "os"
|
||||
)
|
||||
|
||||
// SetJWT func will used to create the JWT while signing in and signing out
|
||||
//func SetJWT(client nodepb.NodeServiceClient, network string) (context.Context, error) {
|
||||
// home := ncutils.GetNetclientPathSpecific()
|
||||
// tokentext, err := os.ReadFile(home + "nettoken-" + network)
|
||||
// if err != nil {
|
||||
// err = AutoLogin(client, network)
|
||||
// if err != nil {
|
||||
// return nil, status.Errorf(codes.Unauthenticated, fmt.Sprintf("Something went wrong with Auto Login: %v", err))
|
||||
// }
|
||||
// tokentext, err = ncutils.GetFileWithRetry(home+"nettoken-"+network, 1)
|
||||
// if err != nil {
|
||||
// return nil, status.Errorf(codes.Unauthenticated, fmt.Sprintf("Something went wrong: %v", err))
|
||||
// }
|
||||
// }
|
||||
// token := string(tokentext)
|
||||
//
|
||||
// // Anything linked to this variable will transmit request headers.
|
||||
// md := metadata.New(map[string]string{"authorization": token})
|
||||
// ctx := context.Background()
|
||||
// ctx = metadata.NewOutgoingContext(ctx, md)
|
||||
// return ctx, nil
|
||||
//}
|
||||
|
||||
// AutoLogin - auto logins whenever client needs to request from server
|
||||
//func AutoLogin(client nodepb.NodeServiceClient, network string) error {
|
||||
// home := ncutils.GetNetclientPathSpecific()
|
||||
// cfg, err := config.ReadConfig(network)
|
||||
// if err != nil {
|
||||
// return err
|
||||
// }
|
||||
// pass, err := RetrieveSecret(network)
|
||||
// if err != nil {
|
||||
// return err
|
||||
// }
|
||||
// node := models.Node{
|
||||
// Password: pass,
|
||||
// MacAddress: cfg.Node.MacAddress,
|
||||
// ID: cfg.Node.ID,
|
||||
// Network: network,
|
||||
// }
|
||||
// data, err := json.Marshal(&node)
|
||||
// if err != nil {
|
||||
// return nil
|
||||
// }
|
||||
//
|
||||
// login := &nodepb.Object{
|
||||
// Data: string(data),
|
||||
// Type: nodepb.NODE_TYPE,
|
||||
// }
|
||||
// // RPC call
|
||||
// res, err := client.Login(context.TODO(), login)
|
||||
// if err != nil {
|
||||
// return err
|
||||
// }
|
||||
// tokenstring := []byte(res.Data)
|
||||
// err = os.WriteFile(home+"nettoken-"+network, tokenstring, 0600)
|
||||
// if err != nil {
|
||||
// return err
|
||||
// }
|
||||
// return err
|
||||
//}
|
||||
|
||||
// StoreSecret - stores auth secret locally
|
||||
func StoreSecret(key string, network string) error {
|
||||
d1 := []byte(key)
|
||||
|
Reference in New Issue
Block a user