forked from jhthorsen/mojolicious-plugin-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
268 lines (195 loc) · 7.5 KB
/
README
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
266
267
NAME
Mojolicious::Plugin::OpenAPI - OpenAPI / Swagger plugin for Mojolicious
SYNOPSIS
use Mojolicious::Lite;
# Will be moved under "basePath", resulting in "POST /api/echo"
post "/echo" => sub {
# Validate input request or return an error document
my $c = shift->openapi->valid_input or return;
# Generate some data
my $data = {body => $c->validation->param("body")};
# Validate the output response and render it to the user agent
# using a custom "openapi" handler.
$c->render(openapi => $data);
}, "echo";
# Load specification and start web server
plugin OpenAPI => {url => "data://main/api.json"};
app->start;
__DATA__
@@ api.json
{
"swagger" : "2.0",
"info" : { "version": "0.8", "title" : "Pets" },
"schemes" : [ "http" ],
"basePath" : "/api",
"paths" : {
"/echo" : {
"post" : {
"x-mojo-name" : "echo",
"parameters" : [
{ "in": "body", "name": "body", "schema": { "type" : "object" } }
],
"responses" : {
"200": {
"description": "Echo response",
"schema": { "type": "object" }
}
}
}
}
}
}
See Mojolicious::Plugin::OpenAPI::Guides::Tutorial for a tutorial on how
to write a "full" app with application class and controllers.
DESCRIPTION
Mojolicious::Plugin::OpenAPI is Mojolicious::Plugin that add routes and
input/output validation to your Mojolicious application based on a
OpenAPI (Swagger) specification.
Have a look at the "SEE ALSO" for references to more documentation, or
jump right to the tutorial.
Mojolicious::Plugin::OpenAPI will replace Mojolicious::Plugin::Swagger2.
HELPERS
openapi.spec
$hash = $c->openapi->spec($json_pointer)
$hash = $c->openapi->spec("/info/title")
$hash = $c->openapi->spec;
Returns the OpenAPI specification. A JSON Pointer can be used to extract
a given section of the specification. The default value of $json_pointer
will be relative to the current operation. Example:
{
"paths": {
"/pets": {
"get": {
// This datastructure is returned by default
}
}
}
}
openapi.render_spec
$c = $c->openapi->render_spec;
Used to render the specification as either "html" or "json". Set the
"stash" in Mojolicious variable "format" to change the format to render.
This helper is called by default, when accessing the "basePath"
resource.
The "html" rendering needs improvement. Any help or feedback is much
appreciated.
openapi.validate
@errors = $c->openapi->validate;
Used to validate a request. @errors holds a list of
JSON::Validator::Error objects or empty list on valid input.
Note that this helper is only for customization. You probably want
"openapi.valid_input" in most cases.
Validated input parameters will be copied to
"Mojolicious::Controller/validation", which again can be extracted by
the "name" in the parameters list from the spec. Example:
# specification:
"parameters": [{"in": "body", "name": "whatever", "schema": {"type": "object"}}],
# controller
my $body = $c->validation->param("whatever");
openapi.valid_input
$c = $c->openapi->valid_input;
Returns the Mojolicious::Controller object if the input is valid or
automatically render an error document if not and return false. See
"SYNOPSIS" for example usage.
RENDERER
This plugin register a new handler called "openapi". The special thing
about this handler is that it will validate the data before sending it
back to the user agent. Examples:
$c->render(json => {foo => 123}); # without validation
$c->render(openapi => {foo => 123}); # with validation
This handler will also use "renderer" to format the output data. The
code below shows the default "renderer" which generates JSON data:
$app->plugin(
OpenAPI => {
renderer => sub {
my ($c, $data) = @_;
return Mojo::JSON::encode_json($data);
}
}
);
ATTRIBUTES
route
$route = $self->route;
The parent Mojolicious::Routes::Route object for all the OpenAPI
endpoints.
validator
$jv = $self->validator;
Holds a JSON::Validator::OpenAPI::Mojolicious object.
METHODS
register
$self->register($app, \%config);
Loads the OpenAPI specification, validates it and add routes to $app. It
will also set up "HELPERS" and adds a before_render hook for
auto-rendering of error documents.
%config can have:
* allow_invalid_ref
The OpenAPI specification does not allow "$ref" at every level, but
setting this flag to a true value will ignore the $ref check.
Note that setting this attribute is discourage.
* coerce
See "coerce" in JSON::Validator for possible values that "coerce" can
take.
Default: 1
* default_response
Used to set the "default" response schema, unless already specified in
the spec. Set this argument to "undef()" if you don't want the default
to be added.
Default value:
{
description => "Default response.",
schema => {
type => "object",
required => ["errors"],
properties => {
errors => {
type => "array",
items => {
type => "object",
required => ["message", "path"],
properties => {message => {"type" => "string"}, path => {"type" => "string"}}
}
}
}
}
}
Note! The default "description" might change.
* log_level
"log_level" is used when logging invalid request/response error
messages.
Default: "warn".
* renderer
See "RENDERER".
* route
"route" can be specified in case you want to have a protected API.
Example:
$app->plugin(OpenAPI => {
route => $app->routes->under("/api")->to("user#auth"),
url => $app->home->rel_file("cool.api"),
});
* spec_route_name
Name of the route that handles the "basePath" part of the
specification and serves the specification. Defaults to "x-mojo-name"
in the specification at the top level.
* url
See "schema" in JSON::Validator for the different "url" formats that
is accepted.
"spec" is an alias for "url", which might make more sense if your
specification is written in perl, instead of JSON or YAML.
* version_from_class
Can be used to overriden "/info/version" in the API specification,
from the return value from the "VERSION()" method in
"version_from_class".
Defaults to the current $app.
AUTHOR
Jan Henning Thorsen
COPYRIGHT AND LICENSE
Copyright (C) 2016, Jan Henning Thorsen
This program is free software, you can redistribute it and/or modify it
under the terms of the Artistic License version 2.0.
SEE ALSO
* Mojolicious::Plugin::OpenAPI::Guides::Tutorial
* Mojolicious::Plugin::OpenAPI::Security
* <http://thorsen.pm/perl/programming/2015/07/05/mojolicious-swagger2.ht
ml>.
* OpenAPI specification <https://openapis.org/specification>
* Mojolicious::Plugin::Swagger2.