mirror of
https://github.com/gravitl/netmaker.git
synced 2025-09-08 14:15:25 +08:00
73 lines
No EOL
1.9 KiB
Go
73 lines
No EOL
1.9 KiB
Go
// package main
|
|
|
|
// import (
|
|
// "bytes"
|
|
// "encoding/json"
|
|
// "fmt"
|
|
// "io"
|
|
// "log"
|
|
// "net/http"
|
|
|
|
// "github.com/gravitl/netclient/config"
|
|
// "github.com/gravitl/netclient/functions"
|
|
// "github.com/gravitl/netmaker/models"
|
|
// "github.com/kr/pretty"
|
|
// )
|
|
|
|
// func main() {
|
|
// cfg := &config.ClientConfig{}
|
|
// cfg.Network = "short"
|
|
// cfg.ReadConfig()
|
|
// token, err := functions.Authenticate(cfg)
|
|
// if err != nil {
|
|
// log.Fatal(err)
|
|
// } else {
|
|
// log.Println("success", token)
|
|
// }
|
|
// url := "https://" + cfg.Server.API + "/api/nodes/" + cfg.Network + "/" + cfg.Node.ID
|
|
|
|
// response, err := api("", http.MethodGet, url, token)
|
|
// if err != nil {
|
|
// fmt.Println(err)
|
|
// }
|
|
// fmt.Println(response.StatusCode, response.Status)
|
|
// if response.StatusCode != http.StatusOK {
|
|
// bytes, err := io.ReadAll(response.Body)
|
|
// if err != nil {
|
|
// fmt.Println(err)
|
|
// }
|
|
// pretty.Println(string(bytes))
|
|
// }
|
|
// defer response.Body.Close()
|
|
// node := models.LegacyNode{}
|
|
// if err := json.NewDecoder(response.Body).Decode(&node); err != nil {
|
|
// fmt.Println(err)
|
|
// }
|
|
// pretty.Println(node)
|
|
// }
|
|
|
|
// func api(data any, method, url, authorization string) (*http.Response, error) {
|
|
// var request *http.Request
|
|
// var err error
|
|
// if data != "" {
|
|
// payload, err := json.Marshal(data)
|
|
// if err != nil {
|
|
// return nil, fmt.Errorf("error encoding data %w", err)
|
|
// }
|
|
// request, err = http.NewRequest(method, url, bytes.NewBuffer(payload))
|
|
// if err != nil {
|
|
// return nil, fmt.Errorf("error creating http request %w", err)
|
|
// }
|
|
// request.Header.Set("Content-Type", "application/json")
|
|
// } else {
|
|
// request, err = http.NewRequest(method, url, nil)
|
|
// if err != nil {
|
|
// return nil, fmt.Errorf("error creating http request %w", err)
|
|
// }
|
|
// }
|
|
// if authorization != "" {
|
|
// request.Header.Set("authorization", "Bearer "+authorization)
|
|
// }
|
|
// client := http.Client{}
|
|
// return client.Do(request)
|
|
// } |