test converting import data to db params
Some checks are pending
CI / Lint (push) Waiting to run
CI / Test (push) Waiting to run
CI / End-to-End (push) Waiting to run
CI / Publish Docker (push) Blocked by required conditions
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-25 12:42:45 +10:00
parent 08568e3600
commit 2bae3e7541
2 changed files with 43 additions and 1 deletions

View File

@@ -1,21 +1,48 @@
package handler
import (
"encoding/json"
"fmt"
"io"
"net/http"
"vctp/db"
queries "vctp/db/queries"
models "vctp/server/models"
)
// VmImport is used for bulk import of existing VMs
func (h *Handler) VmImport(w http.ResponseWriter, r *http.Request) {
reqBody, err := io.ReadAll(r.Body)
if err != nil {
h.Logger.Error("Invalid data received", "error", err)
fmt.Fprintf(w, "Invalid data received")
w.WriteHeader(http.StatusInternalServerError)
return
} else {
h.Logger.Debug("received input data", "length", len(reqBody))
}
h.Logger.Debug("received import request", "body", string(reqBody))
// Decode the JSON body into CloudEventReceived struct
var inData models.ImportReceived
if err := json.Unmarshal(reqBody, &inData); err != nil {
h.Logger.Error("unable to decode json", "error", err)
http.Error(w, "Invalid JSON body", http.StatusBadRequest)
return
} else {
h.Logger.Debug("successfully decoded JSON")
prettyPrint(inData)
}
// Create an instance of CreateInventoryParams
var params queries.CreateInventoryParams
// Convert vmModel to CreateInventoryParams using the utility function
db.ConvertToSQLParams(&inData, &params)
prettyPrint(params)
//h.Logger.Debug("received import request", "body", string(reqBody))
w.WriteHeader(http.StatusOK)
fmt.Fprintf(w, "Import Request (%d): %v\n", len(reqBody), string(reqBody))
}

View File

@@ -64,6 +64,21 @@ type CloudEventReceived struct {
} `json:"cloudEvent"`
}
type ImportReceived struct {
Name string `json:"Name"`
Vcenter string `json:"Vcenter"`
VmId string `json:"VmId"`
InitialRam int `json:"InitialRam"`
PowerState int `json:"PowerState"`
CreationTime int `json:"CreationTime"`
InitialVcpus int `json:"InitialVcpus"`
ProvisionedDisk float64 `json:"ProvisionedDisk"`
Folder string `json:"Folder"`
ResourcePool string `json:"ResourcePool"`
Datacenter string `json:"Datacenter"`
Cluster string `json:"Cluster"`
}
type ConfigChangesReceived struct {
Modified string `json:"modified"`
}