blob: 729e18b2283ac74c3118f15d0606c5f0a0e4334e [file] [log] [blame]
Serge Bazanskicc25bdf2018-10-25 14:02:58 +02001// Copyright 2015 go-swagger maintainers
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package runtime
16
17import (
18 "fmt"
19 "io"
20)
21
22// A ClientResponse represents a client response
23// This bridges between responses obtained from different transports
24type ClientResponse interface {
25 Code() int
26 Message() string
27 GetHeader(string) string
28 Body() io.ReadCloser
29}
30
31// A ClientResponseReaderFunc turns a function into a ClientResponseReader interface implementation
32type ClientResponseReaderFunc func(ClientResponse, Consumer) (interface{}, error)
33
34// ReadResponse reads the response
35func (read ClientResponseReaderFunc) ReadResponse(resp ClientResponse, consumer Consumer) (interface{}, error) {
36 return read(resp, consumer)
37}
38
39// A ClientResponseReader is an interface for things want to read a response.
40// An application of this is to create structs from response values
41type ClientResponseReader interface {
42 ReadResponse(ClientResponse, Consumer) (interface{}, error)
43}
44
45// NewAPIError creates a new API error
46func NewAPIError(opName string, payload interface{}, code int) *APIError {
47 return &APIError{
48 OperationName: opName,
49 Response: payload,
50 Code: code,
51 }
52}
53
54// APIError wraps an error model and captures the status code
55type APIError struct {
56 OperationName string
57 Response interface{}
58 Code int
59}
60
61func (a *APIError) Error() string {
62 return fmt.Sprintf("%s (status %d): %+v ", a.OperationName, a.Code, a.Response)
63}