forked from OpenAPITools/openapi-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauthorization.mustache
More file actions
67 lines (65 loc) · 2.14 KB
/
authorization.mustache
File metadata and controls
67 lines (65 loc) · 2.14 KB
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
{{#basicAuthorization}}
/// {{classnamePascalCase}} APIs - Authorization.
#[async_trait]
#[allow(clippy::ptr_arg)]
pub trait {{classnamePascalCase}}Authorization {
type Claims;
{{#operation}}
{{#vendorExtensions}}
{{#x-has-auth-methods}}
{{#basicAuthorization}}
{{#vendorExtensions}}
/// Authorization{{#summary}} - {{{.}}}{{/summary}}.
/// {{{operationId}}} - {{{httpMethod}}} {{{basePathWithoutHost}}}{{{path}}}
async fn {{{x-operation-id}}}_authorize(
&self,
method: &Method,
host: &Host,
cookies: &CookieJar,
claims: &Self::Claims,
{{#headerParams.size}}
header_params: &models::{{{operationIdCamelCase}}}HeaderParams,
{{/headerParams.size}}
{{#pathParams.size}}
path_params: &models::{{{operationIdCamelCase}}}PathParams,
{{/pathParams.size}}
{{#queryParams.size}}
query_params: &models::{{{operationIdCamelCase}}}QueryParams,
{{/queryParams.size}}
{{^x-consumes-multipart-related}}
{{^x-consumes-multipart}}
{{#bodyParam}}
{{#vendorExtensions}}
{{^x-consumes-plain-text}}
body: &{{^required}}Option<{{/required}}{{{dataType}}}{{^required}}>{{/required}},
{{/x-consumes-plain-text}}
{{#x-consumes-plain-text}}
{{#isString}}
body: &String,
{{/isString}}
{{^isString}}
body: &Bytes,
{{/isString}}
{{/x-consumes-plain-text}}
{{/vendorExtensions}}
{{/bodyParam}}
{{/x-consumes-multipart}}
{{/x-consumes-multipart-related}}
{{#x-consumes-multipart}}
body: &Multipart,
{{/x-consumes-multipart}}
{{#x-consumes-multipart-related}}
body: &axum::body::Body,
{{/x-consumes-multipart-related}}
) -> Result<super::Authorization, ()> {
Ok(super::Authorization::Authorized)
}
{{/vendorExtensions}}
{{/basicAuthorization}}
{{/x-has-auth-methods}}
{{/vendorExtensions}}
{{^-last}}
{{/-last}}
{{/operation}}
}
{{/basicAuthorization}}