-
Notifications
You must be signed in to change notification settings - Fork 14
/
swagger.go
144 lines (128 loc) · 5.11 KB
/
swagger.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
package swagno
import (
"encoding/json"
"log"
"os"
"github.com/go-swagno/swagno/components/definition"
"github.com/go-swagno/swagno/components/endpoint"
"github.com/go-swagno/swagno/components/tag"
)
// The full JSON model for swagger v2 documentation
// https://swagger.io/docs/specification/2-0/basic-structure/
type Swagger struct {
Swagger string `json:"swagger" default:"2.0"`
Info Info `json:"info"`
Paths map[string]map[string]endpoint.JsonEndPoint `json:"paths"`
BasePath string `json:"basePath" default:"/"`
Host string `json:"host" default:""`
Definitions map[string]definition.Definition `json:"definitions"`
Schemes []string `json:"schemes,omitempty"`
Tags []tag.Tag `json:"tags,omitempty"`
SecurityDefinitions map[string]securityDefinition `json:"securityDefinitions,omitempty"`
endpoints []*endpoint.EndPoint
}
// Info represents the information about the API.
// https://swagger.io/specification/v2/#info-object
type Info struct {
Title string `json:"title"`
Description string `json:"description"`
Version string `json:"version"`
TermsOfService string `json:"termsOfService,omitempty"`
Contact *Contact `json:"contact,omitempty"`
License *License `json:"license,omitempty"`
}
// securityDefinition represents the security definition object in Swagger.
// https://swagger.io/specification/v2/#securityDefinitionsObject
type securityDefinition struct {
Type string `json:"type"`
Description string `json:"description,omitempty"`
Name string `json:"name,omitempty"`
In string `json:"in,omitempty"`
Flow string `json:"flow,omitempty"`
AuthorizationUrl string `json:"authorizationUrl,omitempty"`
TokenUrl string `json:"tokenUrl,omitempty"`
Scopes map[string]string `json:"scopes,omitempty"`
}
// New creates a new swagger instance with the provided config
func New(c Config) *Swagger {
return buildSwagger(c)
}
func (swagger *Swagger) AddTags(tags ...tag.Tag) {
swagger.Tags = append(swagger.Tags, tags...)
}
// AddEndPoints adds eddpoints Swagger object
func (s *Swagger) AddEndpoints(e []*endpoint.EndPoint) {
s.endpoints = append(s.endpoints, e...)
}
// AddEndPoint adds eddpoint Swagger object
func (s *Swagger) AddEndpoint(e *endpoint.EndPoint) {
s.endpoints = append(s.endpoints, e)
}
// Contact represents the contact information for the API.
// https://swagger.io/specification/v2/#contact-object
type Contact struct {
Name string `json:"name,omitempty"`
Url string `json:"url,omitempty"`
Email string `json:"email,omitempty"`
}
// License represents the license information for the API.
// https://swagger.io/specification/v2/#license-object
type License struct {
Name string `json:"name,omitempty"`
URL string `json:"url,omitempty"`
}
// Config struct represents the configuration for Swagger documentation.
type Config struct {
Title string // title of the Swagger documentation
Version string // version of the Swagger documentation
Description string // description of the Swagger documentation
Host string // host URL for the API
Path string // path to the Swagger JSON file
License *License // license information for the Swagger documentation
Contact *Contact // contact information for the Swagger documentation
TermsOfService string // term of service information for the Swagger documentation
}
// buildSwagger creates a new swagger instance with the given title, version, and optional arguments.
func buildSwagger(c Config) (swagger *Swagger) {
if c.Title == "" {
c.Title = "Swagger API"
}
if c.Version == "" {
c.Version = "1.0"
}
if c.Path == "" {
c.Path = "/"
}
swagger = &Swagger{
Swagger: "2.0",
Info: Info{
Title: c.Title,
Description: c.Description,
Version: c.Version,
License: c.License,
Contact: c.Contact,
TermsOfService: c.TermsOfService,
},
Paths: make(map[string]map[string]endpoint.JsonEndPoint),
BasePath: c.Path,
Host: c.Host,
Definitions: make(map[string]definition.Definition),
Schemes: []string{"http", "https"},
Tags: []tag.Tag{},
SecurityDefinitions: make(map[string]securityDefinition),
endpoints: []*endpoint.EndPoint{},
}
return
}
// ExportSwaggerDocs exports the Swagger documentation as a JSON file.
func (swagger *Swagger) ExportSwaggerDocs(out_file string) string {
json, err := json.MarshalIndent(swagger, "", " ")
if err != nil {
log.Println("Error while generating swagger json")
}
err = os.WriteFile(out_file, json, 0644)
if err != nil {
log.Println("Error writing swagger file")
}
return string(json)
}