forked from savaki/swag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
builder.go
197 lines (167 loc) · 4.62 KB
/
builder.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
// Copyright 2017 Matt Ho
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package swag
import "github.com/myml/swag/swagger"
// Builder uses the builder pattern to generate a swagger definition
type Builder struct {
API *swagger.API
}
// Option provides configuration options to the swagger api builder
type Option func(builder *Builder)
// Description sets info.description
func Description(v string) Option {
return func(builder *Builder) {
builder.API.Info.Description = v
}
}
// Version sets info.version
func Version(v string) Option {
return func(builder *Builder) {
builder.API.Info.Version = v
}
}
// TermsOfService sets info.termsOfService
func TermsOfService(v string) Option {
return func(builder *Builder) {
builder.API.Info.TermsOfService = v
}
}
// Title sets info.title
func Title(v string) Option {
return func(builder *Builder) {
builder.API.Info.Title = v
}
}
// ContactEmail sets info.contact.email
func ContactEmail(v string) Option {
return func(builder *Builder) {
builder.API.Info.Contact.Email = v
}
}
// License sets both info.license.name and info.license.url
func License(name, url string) Option {
return func(builder *Builder) {
builder.API.Info.License.Name = name
builder.API.Info.License.URL = url
}
}
// BasePath sets basePath
func BasePath(v string) Option {
return func(builder *Builder) {
builder.API.BasePath = v
}
}
// Schemes sets the scheme
func Schemes(v ...string) Option {
return func(builder *Builder) {
builder.API.Schemes = v
}
}
// TagOption provides additional customizations to the #Tag option
type TagOption func(tag *swagger.Tag)
// TagDescription sets externalDocs.description on the tag field
func TagDescription(v string) TagOption {
return func(t *swagger.Tag) {
t.Docs.Description = v
}
}
// TagURL sets externalDocs.url on the tag field
func TagURL(v string) TagOption {
return func(t *swagger.Tag) {
t.Docs.URL = v
}
}
// Tag adds a tag to the swagger api
func Tag(name, description string, options ...TagOption) Option {
return func(builder *Builder) {
if builder.API.Tags == nil {
builder.API.Tags = []swagger.Tag{}
}
t := swagger.Tag{
Name: name,
Description: description,
}
for _, opt := range options {
opt(&t)
}
builder.API.Tags = append(builder.API.Tags, t)
}
}
// Host specifies the host field
func Host(v string) Option {
return func(builder *Builder) {
builder.API.Host = v
}
}
// Endpoints allows the endpoints to be added dynamically to the Api
func Endpoints(endpoints ...*swagger.Endpoint) Option {
return func(builder *Builder) {
for _, e := range endpoints {
builder.API.AddEndpoint(e)
}
}
}
// SecurityScheme creates a new security definition for the API.
func SecurityScheme(name string, options ...swagger.SecuritySchemeOption) Option {
return func(builder *Builder) {
if builder.API.SecurityDefinitions == nil {
builder.API.SecurityDefinitions = map[string]swagger.SecurityScheme{}
}
scheme := swagger.SecurityScheme{}
for _, opt := range options {
opt(&scheme)
}
builder.API.SecurityDefinitions[name] = scheme
}
}
// Security sets a default security scheme for all endpoints in the API.
func Security(scheme string, scopes ...string) Option {
return func(b *Builder) {
if b.API.Security == nil {
b.API.Security = &swagger.SecurityRequirement{}
}
if b.API.Security.Requirements == nil {
b.API.Security.Requirements = []map[string][]string{}
}
b.API.Security.Requirements = append(b.API.Security.Requirements, map[string][]string{scheme: scopes})
}
}
// New constructs a new api builder
func New(options ...Option) *swagger.API {
b := &Builder{
API: &swagger.API{
BasePath: "/",
Swagger: "2.0",
Schemes: []string{"http"},
Info: swagger.Info{
Contact: swagger.Contact{
Email: "your-email-address",
},
Description: "Describe your API",
Title: "Your API Title",
Version: "SNAPSHOT",
TermsOfService: "http://swagger.io/terms/",
License: swagger.License{
Name: "Apache 2.0",
URL: "http://www.apache.org/licenses/LICENSE-2.0.html",
},
},
},
}
for _, opt := range options {
opt(b)
}
return b.API
}