2022-12-22 17:56:47 +03:00
|
|
|
package extnet
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2026-09-15 17:23:58 +03:00
|
|
|
"encoding/json"
|
2022-12-22 17:56:47 +03:00
|
|
|
"net/http"
|
|
|
|
|
"strconv"
|
2023-03-24 17:09:30 +03:00
|
|
|
|
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
2022-12-22 17:56:47 +03:00
|
|
|
)
|
|
|
|
|
|
2023-10-25 17:37:18 +03:00
|
|
|
// DeviceDeployRequest struct to deploy network device
|
2022-12-22 17:56:47 +03:00
|
|
|
type DeviceDeployRequest struct {
|
|
|
|
|
// ID of external network
|
|
|
|
|
// Required: true
|
2023-03-24 17:09:30 +03:00
|
|
|
NetID uint64 `url:"net_id" json:"net_id" validate:"required"`
|
2022-12-22 17:56:47 +03:00
|
|
|
}
|
|
|
|
|
|
2026-09-15 17:23:58 +03:00
|
|
|
type asyncWrapperDeviceDeployRequest struct {
|
|
|
|
|
DeviceDeployRequest
|
|
|
|
|
AsyncMode bool `url:"async_mode"`
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-22 17:56:47 +03:00
|
|
|
// DeviceDeploy deploys network device for external network (make not virtual, "physical")
|
|
|
|
|
func (e ExtNet) DeviceDeploy(ctx context.Context, req DeviceDeployRequest) (bool, error) {
|
2023-03-24 17:09:30 +03:00
|
|
|
err := validators.ValidateRequest(req)
|
2022-12-22 17:56:47 +03:00
|
|
|
if err != nil {
|
2023-10-25 17:37:18 +03:00
|
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
2022-12-22 17:56:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url := "/cloudbroker/extnet/deviceDeploy"
|
|
|
|
|
|
2026-09-15 17:23:58 +03:00
|
|
|
syncReq := asyncWrapperDeviceDeployRequest{
|
|
|
|
|
DeviceDeployRequest: req,
|
|
|
|
|
AsyncMode: false,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
res, err := e.client.DecortApiCall(ctx, http.MethodPost, url, syncReq)
|
2022-12-22 17:56:47 +03:00
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
|
}
|
2026-09-15 17:23:58 +03:00
|
|
|
|
|
|
|
|
// AsyncDeviceDeploy deploys network device for external network (make not virtual, "physical") in async mode
|
|
|
|
|
func (e ExtNet) AsyncDeviceDeploy(ctx context.Context, req DeviceDeployRequest) (string, error) {
|
|
|
|
|
err := validators.ValidateRequest(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", validators.ValidationErrors(validators.GetErrors(err))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url := "/cloudbroker/extnet/deviceDeploy"
|
|
|
|
|
|
|
|
|
|
syncReq := asyncWrapperDeviceDeployRequest{
|
|
|
|
|
DeviceDeployRequest: req,
|
|
|
|
|
AsyncMode: true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result, err := e.client.DecortApiCall(ctx, http.MethodPost, url, syncReq)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var resp string
|
|
|
|
|
|
|
|
|
|
err = json.Unmarshal(result, &resp)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return resp, nil
|
|
|
|
|
}
|