2023-04-04 19:45:55 +00:00
|
|
|
// Code generated by ogen, DO NOT EDIT.
|
|
|
|
|
|
|
|
package go_youtubekids_client
|
|
|
|
|
|
|
|
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/trace"
|
|
|
|
|
|
|
|
ht "github.com/ogen-go/ogen/http"
|
|
|
|
"github.com/ogen-go/ogen/otelogen"
|
|
|
|
"github.com/ogen-go/ogen/uri"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Client implements OAS client.
|
|
|
|
type Client struct {
|
|
|
|
serverURL *url.URL
|
|
|
|
baseClient
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// Browse invokes browse operation.
|
|
|
|
//
|
|
|
|
// Get content for resource.
|
|
|
|
//
|
|
|
|
// POST /browse
|
2023-08-22 14:46:51 +00:00
|
|
|
func (c *Client) Browse(ctx context.Context, request *BrowseRequestPayload) (*BrowseResponsePayload, error) {
|
2023-04-04 19:45:55 +00:00
|
|
|
res, err := c.sendBrowse(ctx, request)
|
|
|
|
_ = res
|
|
|
|
return res, err
|
|
|
|
}
|
|
|
|
|
2023-08-22 14:46:51 +00:00
|
|
|
func (c *Client) sendBrowse(ctx context.Context, request *BrowseRequestPayload) (res *BrowseResponsePayload, err error) {
|
2023-04-04 19:45:55 +00:00
|
|
|
otelAttrs := []attribute.KeyValue{
|
|
|
|
otelogen.OperationID("browse"),
|
|
|
|
}
|
2023-08-22 14:46:51 +00:00
|
|
|
// Validate request before sending.
|
|
|
|
if err := func() error {
|
|
|
|
if err := request.Validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}(); err != nil {
|
|
|
|
return res, errors.Wrap(err, "validate")
|
|
|
|
}
|
2023-04-04 19:45:55 +00:00
|
|
|
|
|
|
|
// Run stopwatch.
|
|
|
|
startTime := time.Now()
|
|
|
|
defer func() {
|
|
|
|
elapsedDuration := time.Since(startTime)
|
|
|
|
c.duration.Record(ctx, elapsedDuration.Microseconds(), otelAttrs...)
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Increment request counter.
|
|
|
|
c.requests.Add(ctx, 1, otelAttrs...)
|
|
|
|
|
|
|
|
// Start a span for this request.
|
|
|
|
ctx, span := c.cfg.Tracer.Start(ctx, "Browse",
|
|
|
|
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, otelAttrs...)
|
|
|
|
}
|
|
|
|
span.End()
|
|
|
|
}()
|
|
|
|
|
|
|
|
stage = "BuildURL"
|
|
|
|
u := uri.Clone(c.requestURL(ctx))
|
|
|
|
var pathParts [1]string
|
|
|
|
pathParts[0] = "/browse"
|
|
|
|
uri.AddPathParts(u, pathParts[:]...)
|
|
|
|
|
|
|
|
stage = "EncodeRequest"
|
|
|
|
r, err := ht.NewRequest(ctx, "POST", u, nil)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "create request")
|
|
|
|
}
|
|
|
|
if err := encodeBrowseRequest(request, r); err != nil {
|
|
|
|
return res, errors.Wrap(err, "encode 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 := decodeBrowseResponse(resp)
|
|
|
|
if err != nil {
|
|
|
|
return res, errors.Wrap(err, "decode response")
|
|
|
|
}
|
|
|
|
|
|
|
|
return result, nil
|
|
|
|
}
|