2024-12-14 19:55:56 +00:00
|
|
|
// Code generated by ogen, DO NOT EDIT.
|
|
|
|
|
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/go-faster/errors"
|
|
|
|
"go.opentelemetry.io/otel/attribute"
|
|
|
|
"go.opentelemetry.io/otel/codes"
|
|
|
|
"go.opentelemetry.io/otel/metric"
|
|
|
|
semconv "go.opentelemetry.io/otel/semconv/v1.26.0"
|
|
|
|
"go.opentelemetry.io/otel/trace"
|
|
|
|
|
|
|
|
"github.com/ogen-go/ogen/conv"
|
|
|
|
ht "github.com/ogen-go/ogen/http"
|
|
|
|
"github.com/ogen-go/ogen/otelogen"
|
|
|
|
"github.com/ogen-go/ogen/uri"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Invoker invokes operations described by OpenAPI v3 specification.
|
|
|
|
type Invoker interface {
|
|
|
|
// ActionSubmissionReleased invokes actionSubmissionReleased operation.
|
|
|
|
//
|
|
|
|
// (Internal endpoint) Role Releaser changes status from releasing -> released.
|
|
|
|
//
|
|
|
|
// POST /submissions/{SubmissionID}/status/releaser-released
|
|
|
|
ActionSubmissionReleased(ctx context.Context, params ActionSubmissionReleasedParams) error
|
|
|
|
// ActionSubmissionUploaded invokes actionSubmissionUploaded operation.
|
|
|
|
//
|
|
|
|
// (Internal endpoint) Role Validator changes status from Uploading -> Uploaded.
|
|
|
|
//
|
|
|
|
// POST /submissions/{SubmissionID}/status/validator-uploaded
|
|
|
|
ActionSubmissionUploaded(ctx context.Context, params ActionSubmissionUploadedParams) error
|
|
|
|
// ActionSubmissionValidated invokes actionSubmissionValidated operation.
|
|
|
|
//
|
|
|
|
// (Internal endpoint) Role Validator changes status from Validating -> Validated.
|
|
|
|
//
|
|
|
|
// POST /submissions/{SubmissionID}/status/validator-validated
|
|
|
|
ActionSubmissionValidated(ctx context.Context, params ActionSubmissionValidatedParams) error
|
|
|
|
}
|
|
|
|
|
|
|
|
// Client implements OAS client.
|
|
|
|
type Client struct {
|
|
|
|
serverURL *url.URL
|
|
|
|
baseClient
|
|
|
|
}
|
|
|
|
type errorHandler interface {
|
|
|
|
NewError(ctx context.Context, err error) *ErrorStatusCode
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ Handler = struct {
|
|
|
|
errorHandler
|
|
|
|
*Client
|
|
|
|
}{}
|
|
|
|
|
|
|
|
func trimTrailingSlashes(u *url.URL) {
|
|
|
|
u.Path = strings.TrimRight(u.Path, "/")
|
|
|
|
u.RawPath = strings.TrimRight(u.RawPath, "/")
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewClient initializes new Client defined by OAS.
|
|
|
|
func NewClient(serverURL string, opts ...ClientOption) (*Client, error) {
|
|
|
|
u, err := url.Parse(serverURL)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
trimTrailingSlashes(u)
|
|
|
|
|
|
|
|
c, err := newClientConfig(opts...).baseClient()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return &Client{
|
|
|
|
serverURL: u,
|
|
|
|
baseClient: c,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type serverURLKey struct{}
|
|
|
|
|
|
|
|
// WithServerURL sets context key to override server URL.
|
|
|
|
func WithServerURL(ctx context.Context, u *url.URL) context.Context {
|
|
|
|
return context.WithValue(ctx, serverURLKey{}, u)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) requestURL(ctx context.Context) *url.URL {
|
|
|
|
u, ok := ctx.Value(serverURLKey{}).(*url.URL)
|
|
|
|
if !ok {
|
|
|
|
return c.serverURL
|
|
|
|
}
|
|
|
|
return u
|
|
|
|
}
|
|
|
|
|
|
|
|
// ActionSubmissionReleased invokes actionSubmissionReleased operation.
|
|
|
|
//
|
|
|
|
// (Internal endpoint) Role Releaser changes status from releasing -> released.
|
|
|
|
//
|
|
|
|
// POST /submissions/{SubmissionID}/status/releaser-released
|
|
|
|
func (c *Client) ActionSubmissionReleased(ctx context.Context, params ActionSubmissionReleasedParams) error {
|
|
|
|
_, err := c.sendActionSubmissionReleased(ctx, params)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) sendActionSubmissionReleased(ctx context.Context, params ActionSubmissionReleasedParams) (res *ActionSubmissionReleasedNoContent, err error) {
|
|
|
|
otelAttrs := []attribute.KeyValue{
|
|
|
|
otelogen.OperationID("actionSubmissionReleased"),
|
|
|
|
semconv.HTTPRequestMethodKey.String("POST"),
|
|
|
|
semconv.HTTPRouteKey.String("/submissions/{SubmissionID}/status/releaser-released"),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run stopwatch.
|
|
|
|
startTime := time.Now()
|
|
|
|
defer func() {
|
|
|
|
// Use floating point division here for higher precision (instead of Millisecond method).
|
|
|
|
elapsedDuration := time.Since(startTime)
|
|
|
|
c.duration.Record(ctx, float64(elapsedDuration)/float64(time.Millisecond), metric.WithAttributes(otelAttrs...))
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Increment request counter.
|
|
|
|
c.requests.Add(ctx, 1, metric.WithAttributes(otelAttrs...))
|
|
|
|
|
|
|
|
// Start a span for this request.
|
|
|
|
ctx, span := c.cfg.Tracer.Start(ctx, ActionSubmissionReleasedOperation,
|
|
|
|
trace.WithAttributes(otelAttrs...),
|
|
|
|
clientSpanKind,
|
|
|
|
)
|
|
|
|
// Track stage for error reporting.
|
|
|
|
var stage string
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
span.RecordError(err)
|
|
|
|
span.SetStatus(codes.Error, stage)
|
|
|
|
c.errors.Add(ctx, 1, metric.WithAttributes(otelAttrs...))
|
|
|
|
}
|
|
|
|
span.End()
|
|
|
|
}()
|
|
|
|
|
|
|
|
stage = "BuildURL"
|
|
|
|
u := uri.Clone(c.requestURL(ctx))
|
|
|
|
var pathParts [3]string
|
|
|
|
pathParts[0] = "/submissions/"
|
|
|
|
{
|
|
|
|
// Encode "SubmissionID" parameter.
|
|
|
|
e := uri.NewPathEncoder(uri.PathEncoderConfig{
|
|
|
|
Param: "SubmissionID",
|
|
|
|
Style: uri.PathStyleSimple,
|
|
|
|
Explode: false,
|
|
|
|
})
|
|
|
|
if err := func() error {
|
|
|
|
return e.EncodeValue(conv.Int64ToString(params.SubmissionID))
|
|
|
|
}(); err != nil {
|
|
|
|
return res, errors.Wrap(err, "encode path")
|
|
|
|
}
|
|
|
|
encoded, err := e.Result()
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "encode path")
|
|
|
|
}
|
|
|
|
pathParts[1] = encoded
|
|
|
|
}
|
|
|
|
pathParts[2] = "/status/releaser-released"
|
|
|
|
uri.AddPathParts(u, pathParts[:]...)
|
|
|
|
|
|
|
|
stage = "EncodeRequest"
|
|
|
|
r, err := ht.NewRequest(ctx, "POST", u)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "create request")
|
|
|
|
}
|
|
|
|
|
|
|
|
stage = "SendRequest"
|
|
|
|
resp, err := c.cfg.Client.Do(r)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "do request")
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
stage = "DecodeResponse"
|
|
|
|
result, err := decodeActionSubmissionReleasedResponse(resp)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "decode response")
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ActionSubmissionUploaded invokes actionSubmissionUploaded operation.
|
|
|
|
//
|
|
|
|
// (Internal endpoint) Role Validator changes status from Uploading -> Uploaded.
|
|
|
|
//
|
|
|
|
// POST /submissions/{SubmissionID}/status/validator-uploaded
|
|
|
|
func (c *Client) ActionSubmissionUploaded(ctx context.Context, params ActionSubmissionUploadedParams) error {
|
|
|
|
_, err := c.sendActionSubmissionUploaded(ctx, params)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) sendActionSubmissionUploaded(ctx context.Context, params ActionSubmissionUploadedParams) (res *ActionSubmissionUploadedNoContent, err error) {
|
|
|
|
otelAttrs := []attribute.KeyValue{
|
|
|
|
otelogen.OperationID("actionSubmissionUploaded"),
|
|
|
|
semconv.HTTPRequestMethodKey.String("POST"),
|
|
|
|
semconv.HTTPRouteKey.String("/submissions/{SubmissionID}/status/validator-uploaded"),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run stopwatch.
|
|
|
|
startTime := time.Now()
|
|
|
|
defer func() {
|
|
|
|
// Use floating point division here for higher precision (instead of Millisecond method).
|
|
|
|
elapsedDuration := time.Since(startTime)
|
|
|
|
c.duration.Record(ctx, float64(elapsedDuration)/float64(time.Millisecond), metric.WithAttributes(otelAttrs...))
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Increment request counter.
|
|
|
|
c.requests.Add(ctx, 1, metric.WithAttributes(otelAttrs...))
|
|
|
|
|
|
|
|
// Start a span for this request.
|
|
|
|
ctx, span := c.cfg.Tracer.Start(ctx, ActionSubmissionUploadedOperation,
|
|
|
|
trace.WithAttributes(otelAttrs...),
|
|
|
|
clientSpanKind,
|
|
|
|
)
|
|
|
|
// Track stage for error reporting.
|
|
|
|
var stage string
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
span.RecordError(err)
|
|
|
|
span.SetStatus(codes.Error, stage)
|
|
|
|
c.errors.Add(ctx, 1, metric.WithAttributes(otelAttrs...))
|
|
|
|
}
|
|
|
|
span.End()
|
|
|
|
}()
|
|
|
|
|
|
|
|
stage = "BuildURL"
|
|
|
|
u := uri.Clone(c.requestURL(ctx))
|
|
|
|
var pathParts [3]string
|
|
|
|
pathParts[0] = "/submissions/"
|
|
|
|
{
|
|
|
|
// Encode "SubmissionID" parameter.
|
|
|
|
e := uri.NewPathEncoder(uri.PathEncoderConfig{
|
|
|
|
Param: "SubmissionID",
|
|
|
|
Style: uri.PathStyleSimple,
|
|
|
|
Explode: false,
|
|
|
|
})
|
|
|
|
if err := func() error {
|
|
|
|
return e.EncodeValue(conv.Int64ToString(params.SubmissionID))
|
|
|
|
}(); err != nil {
|
|
|
|
return res, errors.Wrap(err, "encode path")
|
|
|
|
}
|
|
|
|
encoded, err := e.Result()
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "encode path")
|
|
|
|
}
|
|
|
|
pathParts[1] = encoded
|
|
|
|
}
|
|
|
|
pathParts[2] = "/status/validator-uploaded"
|
|
|
|
uri.AddPathParts(u, pathParts[:]...)
|
|
|
|
|
2024-12-15 08:09:19 +00:00
|
|
|
stage = "EncodeQueryParams"
|
|
|
|
q := uri.NewQueryEncoder()
|
|
|
|
{
|
|
|
|
// Encode "TargetAssetID" parameter.
|
|
|
|
cfg := uri.QueryParameterEncodingConfig{
|
|
|
|
Name: "TargetAssetID",
|
|
|
|
Style: uri.QueryStyleForm,
|
|
|
|
Explode: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := q.EncodeParam(cfg, func(e uri.Encoder) error {
|
|
|
|
if val, ok := params.TargetAssetID.Get(); ok {
|
|
|
|
return e.EncodeValue(conv.Int64ToString(val))
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}); err != nil {
|
|
|
|
return res, errors.Wrap(err, "encode query")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
u.RawQuery = q.Values().Encode()
|
|
|
|
|
2024-12-14 19:55:56 +00:00
|
|
|
stage = "EncodeRequest"
|
|
|
|
r, err := ht.NewRequest(ctx, "POST", u)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "create request")
|
|
|
|
}
|
|
|
|
|
|
|
|
stage = "SendRequest"
|
|
|
|
resp, err := c.cfg.Client.Do(r)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "do request")
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
stage = "DecodeResponse"
|
|
|
|
result, err := decodeActionSubmissionUploadedResponse(resp)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "decode response")
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ActionSubmissionValidated invokes actionSubmissionValidated operation.
|
|
|
|
//
|
|
|
|
// (Internal endpoint) Role Validator changes status from Validating -> Validated.
|
|
|
|
//
|
|
|
|
// POST /submissions/{SubmissionID}/status/validator-validated
|
|
|
|
func (c *Client) ActionSubmissionValidated(ctx context.Context, params ActionSubmissionValidatedParams) error {
|
|
|
|
_, err := c.sendActionSubmissionValidated(ctx, params)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) sendActionSubmissionValidated(ctx context.Context, params ActionSubmissionValidatedParams) (res *ActionSubmissionValidatedNoContent, err error) {
|
|
|
|
otelAttrs := []attribute.KeyValue{
|
|
|
|
otelogen.OperationID("actionSubmissionValidated"),
|
|
|
|
semconv.HTTPRequestMethodKey.String("POST"),
|
|
|
|
semconv.HTTPRouteKey.String("/submissions/{SubmissionID}/status/validator-validated"),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Run stopwatch.
|
|
|
|
startTime := time.Now()
|
|
|
|
defer func() {
|
|
|
|
// Use floating point division here for higher precision (instead of Millisecond method).
|
|
|
|
elapsedDuration := time.Since(startTime)
|
|
|
|
c.duration.Record(ctx, float64(elapsedDuration)/float64(time.Millisecond), metric.WithAttributes(otelAttrs...))
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Increment request counter.
|
|
|
|
c.requests.Add(ctx, 1, metric.WithAttributes(otelAttrs...))
|
|
|
|
|
|
|
|
// Start a span for this request.
|
|
|
|
ctx, span := c.cfg.Tracer.Start(ctx, ActionSubmissionValidatedOperation,
|
|
|
|
trace.WithAttributes(otelAttrs...),
|
|
|
|
clientSpanKind,
|
|
|
|
)
|
|
|
|
// Track stage for error reporting.
|
|
|
|
var stage string
|
|
|
|
defer func() {
|
|
|
|
if err != nil {
|
|
|
|
span.RecordError(err)
|
|
|
|
span.SetStatus(codes.Error, stage)
|
|
|
|
c.errors.Add(ctx, 1, metric.WithAttributes(otelAttrs...))
|
|
|
|
}
|
|
|
|
span.End()
|
|
|
|
}()
|
|
|
|
|
|
|
|
stage = "BuildURL"
|
|
|
|
u := uri.Clone(c.requestURL(ctx))
|
|
|
|
var pathParts [3]string
|
|
|
|
pathParts[0] = "/submissions/"
|
|
|
|
{
|
|
|
|
// Encode "SubmissionID" parameter.
|
|
|
|
e := uri.NewPathEncoder(uri.PathEncoderConfig{
|
|
|
|
Param: "SubmissionID",
|
|
|
|
Style: uri.PathStyleSimple,
|
|
|
|
Explode: false,
|
|
|
|
})
|
|
|
|
if err := func() error {
|
|
|
|
return e.EncodeValue(conv.Int64ToString(params.SubmissionID))
|
|
|
|
}(); err != nil {
|
|
|
|
return res, errors.Wrap(err, "encode path")
|
|
|
|
}
|
|
|
|
encoded, err := e.Result()
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "encode path")
|
|
|
|
}
|
|
|
|
pathParts[1] = encoded
|
|
|
|
}
|
|
|
|
pathParts[2] = "/status/validator-validated"
|
|
|
|
uri.AddPathParts(u, pathParts[:]...)
|
|
|
|
|
|
|
|
stage = "EncodeRequest"
|
|
|
|
r, err := ht.NewRequest(ctx, "POST", u)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "create request")
|
|
|
|
}
|
|
|
|
|
|
|
|
stage = "SendRequest"
|
|
|
|
resp, err := c.cfg.Client.Do(r)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "do request")
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
|
|
|
|
stage = "DecodeResponse"
|
|
|
|
result, err := decodeActionSubmissionValidatedResponse(resp)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "decode response")
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|