78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
package disks
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
"strconv"
|
|
|
|
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
|
|
)
|
|
|
|
// ShareRequest struct to share disk data
|
|
type ShareRequest struct {
|
|
// ID of the disk to share
|
|
// Required: true
|
|
DiskID uint64 `url:"diskId" json:"diskId" validate:"required"`
|
|
}
|
|
|
|
type wrapperShareRequest struct {
|
|
ShareRequest
|
|
|
|
AsyncMode bool `url:"async_mode" json:"async_mode"`
|
|
}
|
|
|
|
// Share shares data disk
|
|
func (d Disks) Share(ctx context.Context, req ShareRequest) (bool, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return false, validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudapi/disks/share"
|
|
|
|
wrappedReq := wrapperShareRequest{
|
|
ShareRequest: req,
|
|
AsyncMode: false,
|
|
}
|
|
|
|
res, err := d.client.DecortApiCall(ctx, http.MethodPost, url, wrappedReq)
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
result, err := strconv.ParseBool(string(res))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
// ShareAsync shares data disk in async mode
|
|
func (d Disks) ShareAsync(ctx context.Context, req ShareRequest) (string, error) {
|
|
err := validators.ValidateRequest(req)
|
|
if err != nil {
|
|
return "", validators.ValidationErrors(validators.GetErrors(err))
|
|
}
|
|
|
|
url := "/cloudapi/disks/share"
|
|
|
|
wrappedReq := wrapperShareRequest{
|
|
ShareRequest: 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
|
|
}
|