2024-04-16 14:26:06 +03:00
|
|
|
package disks
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"context"
|
2026-08-28 16:36:41 +03:00
|
|
|
"encoding/json"
|
2024-04-16 14:26:06 +03:00
|
|
|
"net/http"
|
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// ReplicationReverseRequest struct to change role between disks replications
|
|
|
|
|
type ReplicationReverseRequest struct {
|
|
|
|
|
// Id of the disk
|
|
|
|
|
// Required: true
|
|
|
|
|
DiskID uint64 `url:"diskId" json:"diskId" validate:"required"`
|
|
|
|
|
}
|
|
|
|
|
|
2026-08-28 16:36:41 +03:00
|
|
|
type wrapperReplicationReverseRequest struct {
|
|
|
|
|
ReplicationReverseRequest
|
|
|
|
|
|
|
|
|
|
AsyncMode bool `url:"async_mode" json:"async_mode"`
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-16 14:26:06 +03:00
|
|
|
// ReplicationReverse change role between disks replications
|
|
|
|
|
func (d Disks) ReplicationReverse(ctx context.Context, req ReplicationReverseRequest) (bool, error) {
|
|
|
|
|
err := validators.ValidateRequest(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url := "/cloudapi/disks/replicationReverse"
|
|
|
|
|
|
2026-08-28 16:36:41 +03:00
|
|
|
wrappedReq := wrapperReplicationReverseRequest{
|
|
|
|
|
ReplicationReverseRequest: req,
|
|
|
|
|
AsyncMode: false,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
res, err := d.client.DecortApiCall(ctx, http.MethodPost, url, wrappedReq)
|
2024-04-16 14:26:06 +03:00
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
|
|
|
if err != nil {
|
|
|
|
|
return false, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
|
}
|
2026-08-28 16:36:41 +03:00
|
|
|
|
|
|
|
|
// ReplicationReverseAsync changes role between disks replications in async mode
|
|
|
|
|
func (d Disks) ReplicationReverseAsync(ctx context.Context, req ReplicationReverseRequest) (string, error) {
|
|
|
|
|
err := validators.ValidateRequest(req)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", validators.ValidationErrors(validators.GetErrors(err))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
url := "/cloudapi/disks/replicationReverse"
|
|
|
|
|
|
|
|
|
|
wrappedReq := wrapperReplicationReverseRequest{
|
|
|
|
|
ReplicationReverseRequest: req,
|
|
|
|
|
AsyncMode: true,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
res, err := d.client.DecortApiCall(ctx, http.MethodPost, url, wrappedReq)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var result string
|
|
|
|
|
if err := json.Unmarshal(res, &result); err != nil {
|
|
|
|
|
return "", err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
|
}
|