Complete Configuration
This example showcases a nearly complete - and mostly nonsensical - plugin configuration
CompleteConfig.kt |
---|
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265 | package io.github.smiley4.ktoropenapi.examples
import io.github.smiley4.ktoropenapi.OpenApi
import io.github.smiley4.ktoropenapi.config.AuthScheme
import io.github.smiley4.ktoropenapi.config.AuthType
import io.github.smiley4.ktoropenapi.config.OpenApiPluginConfig
import io.github.smiley4.ktoropenapi.get
import io.github.smiley4.ktoropenapi.openApi
import io.github.smiley4.ktorredoc.redoc
import io.github.smiley4.ktorswaggerui.config.OperationsSort
import io.github.smiley4.ktorswaggerui.config.SwaggerUISyntaxHighlight
import io.github.smiley4.ktorswaggerui.config.TagSort
import io.github.smiley4.ktorswaggerui.swaggerUI
import io.github.smiley4.schemakenerator.reflection.ReflectionSteps.analyzeTypeUsingReflection
import io.github.smiley4.schemakenerator.swagger.SwaggerSteps.compileReferencingRoot
import io.github.smiley4.schemakenerator.swagger.SwaggerSteps.generateSwaggerSchema
import io.github.smiley4.schemakenerator.swagger.SwaggerSteps.withTitle
import io.github.smiley4.schemakenerator.swagger.data.TitleType
import io.ktor.http.ContentType
import io.ktor.http.HttpStatusCode
import io.ktor.server.application.Application
import io.ktor.server.application.install
import io.ktor.server.engine.embeddedServer
import io.ktor.server.netty.Netty
import io.ktor.server.response.respondText
import io.ktor.server.routing.route
import io.ktor.server.routing.routing
fun main() {
embeddedServer(Netty, port = 8080, host = "localhost", module = Application::myModule).start(wait = true)
}
class Greeting(
val name: String
)
/**
* A (nearly) complete - and mostly nonsensical - plugin configuration
*/
private fun Application.myModule() {
install(OpenApi) {
info {
title = "Example API"
version = "latest"
description = "An example api."
termsOfService = "example.com"
contact {
name = "Mr. Example"
url = "example.com"
email = "example@example.com"
}
license {
name = "Example License"
url = "example.com"
identifier = "Apache-2.0"
}
}
externalDocs {
url = "example.com"
description = "Project documentation"
}
server {
url = "localhost"
description = "local dev-server"
variable("version") {
default = "1.0"
enum = setOf("1.0", "2.0", "3.0")
description = "the version of the server api"
}
}
server {
url = "example.com"
description = "productive server"
variable("version") {
default = "1.0"
enum = setOf("1.0", "2.0")
description = "the version of the server api"
}
}
security {
defaultUnauthorizedResponse {
description = "Username or password is invalid"
}
defaultSecuritySchemeNames("MySecurityScheme")
securityScheme("MySecurityScheme") {
type = AuthType.HTTP
scheme = AuthScheme.BASIC
}
}
tags {
tagGenerator = { url -> listOf(url.firstOrNull()) }
tag("users") {
description = "routes to manage users"
externalDocUrl = "example.com"
externalDocDescription = "Users documentation"
}
tag("documents") {
description = "routes to manage documents"
externalDocUrl = "example.com"
externalDocDescription = "Document documentation"
}
}
schemas {
schema<String>("string")
generator = { type ->
type
.analyzeTypeUsingReflection()
.generateSwaggerSchema()
.withTitle(TitleType.SIMPLE)
.compileReferencingRoot()
}
}
examples {
example("Id 1") {
description = "First example id"
value = "12345"
}
example("Id 2") {
description = "Second example id"
value = "54321"
}
}
specAssigner = { _, _ -> OpenApiPluginConfig.DEFAULT_SPEC_ID }
pathFilter = { _, url -> url.firstOrNull() != "hidden" }
ignoredRouteSelectors = emptySet()
ignoredRouteSelectorClassNames = emptySet()
postBuild = { api, name -> println("Completed api '$name': $api") }
}
routing {
route("api.json") {
openApi()
}
route("swagger") {
swaggerUI("/api.json") {
deepLinking = true
displayOperationId = false
defaultModelsExpandDepth = 1
defaultModelExpandDepth = 1
displayRequestDuration = false
filter = false
maxDisplayedTags = 99
operationsSorter = OperationsSort.HTTP_METHOD
showExtensions = false
showCommonExtensions = false
tagsSorter = TagSort.ALPHANUMERICALLY
syntaxHighlight = SwaggerUISyntaxHighlight.MONOKAI
tryItOutEnabled = true
requestSnippetsEnabled = true
oauth2RedirectUrl = "example.com"
requestInterceptor = "req => { alert(JSON.stringify(req)); return req; }"
responseInterceptor = "res => { alert(JSON.stringify(res)); return res; }"
supportedSubmitMethods = setOf("get", "put", "post", "delete", "options", "head", "patch", "trace")
onlineSpecValidator()
withCredentials = false
persistAuthorization = false
}
}
route("redoc") {
redoc("/api.json") {
pageTitle = "Redoc - My Api"
disableSearch = false
minCharacterLengthToInitSearch = 1
expandResponses = listOf("all")
expandSingleSchemaField = true
hideDownloadButton = false
hideHostname = false
hideLoading = false
hideRequestPayloadSample = true
hideOneOfDescription = false
hideSchemaPattern = false
hideSchemaTitles = true
hideSecuritySection = false
hideSingleRequestSampleTab = true
jsonSampleExpandLevel = "1"
maxDisplayedEnumValues = 3
menuToggle = true
nativeScrollbars = true
onlyRequiredInSamples = false
pathInMiddlePanel = true
requiredPropsFirst = true
schemaExpansionLevel = "all"
showObjectSchemaExamples = true
showWebhookVerb = true
simpleOneOfTypeLabel = true
sortEnumValuesAlphabetically = true
sortOperationsAlphabetically = true
sortPropsAlphabetically = true
sortTagsAlphabetically = true
theme = """
{
"sidebar": {
"backgroundColor": "lightblue"
},
"rightPanel": {
"backgroundColor": "darkblue"
}
}
""".trimIndent()
}
}
// a documented route
get("hello", {
operationId = "hello"
summary = "hello world route"
description = "A Hello-World route as an example."
tags("hello", "example")
specName = OpenApiPluginConfig.DEFAULT_SPEC_ID
deprecated = false
hidden = false
protected = false
securitySchemeNames(emptyList())
externalDocs {
url = "example.com/hello"
description = "external documentation of 'hello'-route"
}
request {
queryParameter<String>("name") {
description = "the name to greet"
example("Josh") {
value = "Josh"
summary = "Example name"
description = "An example name for this query parameter"
}
}
body<Unit>()
}
response {
code(HttpStatusCode.OK) {
description = "successful request - always returns 'Hello World!'"
header<String>("x-random") {
description = "A header with some random number"
required = true
deprecated = false
explode = false
}
body<Greeting> {
description = "the greeting object with the name of the person to greet."
mediaTypes(ContentType.Application.Json)
required = true
}
}
}
server {
url = "example.com"
description = "productive server for 'hello'-route"
variable("version") {
default = "1.0"
enum = setOf("1.0", "2.0")
description = "the version of the server api"
}
}
}) {
call.respondText("Hello ${call.request.queryParameters["name"]}")
}
}
}
|