Files
decort-golang-sdk/pkg/cloudapi/disks/share.go

78 lines
1.6 KiB
Go
Raw Normal View History

2023-01-23 15:39:41 +03:00
package disks
import (
"context"
2026-08-28 16:36:41 +03:00
"encoding/json"
2023-01-23 15:39:41 +03:00
"net/http"
"strconv"
2023-03-24 17:09:30 +03:00
"repository.basistech.ru/BASIS/decort-golang-sdk/internal/validators"
2023-01-23 15:39:41 +03:00
)
2023-10-25 17:37:18 +03:00
// ShareRequest struct to share disk data
2023-01-23 15:39:41 +03:00
type ShareRequest struct {
// ID of the disk to share
// Required: true
2023-03-24 17:09:30 +03:00
DiskID uint64 `url:"diskId" json:"diskId" validate:"required"`
2023-01-23 15:39:41 +03:00
}
2026-08-28 16:36:41 +03:00
type wrapperShareRequest struct {
ShareRequest
AsyncMode bool `url:"async_mode" json:"async_mode"`
}
2023-01-23 15:39:41 +03:00
// Share shares data disk
func (d Disks) Share(ctx context.Context, req ShareRequest) (bool, error) {
2023-03-24 17:09:30 +03:00
err := validators.ValidateRequest(req)
2023-01-23 15:39:41 +03:00
if err != nil {
2023-10-25 17:37:18 +03:00
return false, validators.ValidationErrors(validators.GetErrors(err))
2023-01-23 15:39:41 +03:00
}
url := "/cloudapi/disks/share"
2026-08-28 16:36:41 +03:00
wrappedReq := wrapperShareRequest{
ShareRequest: req,
AsyncMode: false,
}
res, err := d.client.DecortApiCall(ctx, http.MethodPost, url, wrappedReq)
2023-01-23 15:39:41 +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
// 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
}