handle db insert
This commit is contained in:
@@ -1,7 +1,10 @@
|
|||||||
package handler
|
package handler
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"context"
|
||||||
|
"database/sql"
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
@@ -34,13 +37,40 @@ func (h *Handler) VmImport(w http.ResponseWriter, r *http.Request) {
|
|||||||
prettyPrint(inData)
|
prettyPrint(inData)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create an instance of CreateInventoryParams
|
ctx := context.Background()
|
||||||
var params queries.CreateInventoryParams
|
|
||||||
|
|
||||||
// Convert vmModel to CreateInventoryParams using the utility function
|
// TODO - query Inventory table for this VM before adding it
|
||||||
db.ConvertToSQLParams(&inData, ¶ms)
|
h.Logger.Debug("Checking inventory table for VM record")
|
||||||
|
invParams := queries.GetInventoryVmIdParams{
|
||||||
|
VmId: sql.NullString{String: inData.VmId, Valid: inData.VmId != ""},
|
||||||
|
DatacenterName: sql.NullString{String: inData.Datacenter, Valid: inData.Datacenter != ""},
|
||||||
|
}
|
||||||
|
_, err = h.Database.Queries().GetInventoryVmId(ctx, invParams)
|
||||||
|
|
||||||
prettyPrint(params)
|
if err != nil {
|
||||||
|
if errors.Is(err, sql.ErrNoRows) {
|
||||||
|
// do the insert
|
||||||
|
// Create an instance of CreateInventoryParams
|
||||||
|
var params queries.CreateInventoryParams
|
||||||
|
|
||||||
|
// Convert vmModel to CreateInventoryParams using the utility function
|
||||||
|
db.ConvertToSQLParams(&inData, ¶ms)
|
||||||
|
prettyPrint(params)
|
||||||
|
|
||||||
|
// Insert the new inventory record into the database
|
||||||
|
result, err := h.Database.Queries().CreateInventory(ctx, params)
|
||||||
|
if err != nil {
|
||||||
|
h.Logger.Error("unable to perform database insert", "error", err)
|
||||||
|
} else {
|
||||||
|
h.Logger.Debug("created database record", "insert_result", result)
|
||||||
|
}
|
||||||
|
|
||||||
|
} else {
|
||||||
|
h.Logger.Error("unable to check inventory for vm", "error", err, "vm_id", inData.VmId, "datacenter_name", inData.Datacenter)
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
h.Logger.Info("not adding vm to inventory table since record alraedy exists", "vm_id", inData.VmId, "datacenter_name", inData.Datacenter)
|
||||||
|
}
|
||||||
|
|
||||||
//h.Logger.Debug("received import request", "body", string(reqBody))
|
//h.Logger.Debug("received import request", "body", string(reqBody))
|
||||||
w.WriteHeader(http.StatusOK)
|
w.WriteHeader(http.StatusOK)
|
||||||
|
Reference in New Issue
Block a user