-
Notifications
You must be signed in to change notification settings - Fork 6
/
get_jwks_v3_responses.go
98 lines (76 loc) · 2.4 KB
/
get_jwks_v3_responses.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright (c) 2021 AccelByte Inc. All Rights Reserved.
// This is licensed software from AccelByte Inc, for limitations
// and restrictions contact your company contract manager.
// Code generated; DO NOT EDIT.
package o_auth2_0
import (
"encoding/json"
"fmt"
"io"
"io/ioutil"
"strings"
"github.com/go-openapi/runtime"
"github.com/go-openapi/strfmt"
"github.com/AccelByte/accelbyte-go-sdk/iam-sdk/pkg/iamclientmodels"
)
// GetJWKSV3Reader is a Reader for the GetJWKSV3 structure.
type GetJWKSV3Reader struct {
formats strfmt.Registry
}
// ReadResponse reads a server response into the received o.
func (o *GetJWKSV3Reader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error) {
switch response.Code() {
case 200:
result := NewGetJWKSV3OK()
if err := result.readResponse(response, consumer, o.formats); err != nil {
return nil, err
}
return result, nil
default:
data, err := ioutil.ReadAll(response.Body())
if err != nil {
return nil, err
}
return nil, fmt.Errorf("Requested GET /iam/v3/oauth/jwks returns an error %d: %s", response.Code(), string(data))
}
}
// NewGetJWKSV3OK creates a GetJWKSV3OK with default headers values
func NewGetJWKSV3OK() *GetJWKSV3OK {
return &GetJWKSV3OK{}
}
/*GetJWKSV3OK handles this case with default header values.
JWKS returned
*/
type GetJWKSV3OK struct {
Payload *iamclientmodels.OauthcommonJWKSet
}
func (o *GetJWKSV3OK) Error() string {
return fmt.Sprintf("[GET /iam/v3/oauth/jwks][%d] getJwksV3OK %+v", 200, o.ToJSONString())
}
func (o *GetJWKSV3OK) ToJSONString() string {
if o.Payload == nil {
return "{}"
}
b, err := json.Marshal(o.Payload)
if err != nil {
fmt.Println(err)
return fmt.Sprintf("Failed to marshal the payload: %+v", o.Payload)
}
return fmt.Sprintf("%+v", string(b))
}
func (o *GetJWKSV3OK) GetPayload() *iamclientmodels.OauthcommonJWKSet {
return o.Payload
}
func (o *GetJWKSV3OK) readResponse(response runtime.ClientResponse, consumer runtime.Consumer, formats strfmt.Registry) error {
// handle file responses
contentDisposition := response.GetHeader("Content-Disposition")
if strings.Contains(strings.ToLower(contentDisposition), "filename=") {
consumer = runtime.ByteStreamConsumer()
}
o.Payload = new(iamclientmodels.OauthcommonJWKSet)
// response payload
if err := consumer.Consume(response.Body(), o.Payload); err != nil && err != io.EOF {
return err
}
return nil
}