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
//! OpenAPI documentation generation integrations.
//!
//! This module provides integrations with popular OpenAPI documentation generators:
//!
//! - **utoipa**: Compile-time OpenAPI documentation generation via derive macros.
//! Enable with the `utoipa` feature.
//!
//! - **vespera**: OpenAPI 3.1 specification structures and route discovery.
//! Enable with the `vespera` feature.
//!
//! # Route-Level Integration
//!
//! Both integrations support route-level OpenAPI metadata:
//!
//! ```rust,ignore
//! use tako::{router::Router, Method};
//!
//! let mut router = Router::new();
//! router.route(Method::GET, "/users/{id}", get_user)
//! .summary("Get user by ID")
//! .description("Retrieves a user by their unique identifier")
//! .tag("users")
//! .response(200, "Successful response")
//! .response(404, "User not found");
//! ```
//!
//! # Examples
//!
//! ## Using utoipa
//!
//! ```rust,ignore
//! use tako::openapi::utoipa::{OpenApi, OpenApiJson, ToSchema};
//!
//! #[derive(ToSchema)]
//! struct User {
//! id: u64,
//! name: String,
//! }
//!
//! #[derive(OpenApi)]
//! #[openapi(components(schemas(User)))]
//! struct ApiDoc;
//!
//! async fn openapi(_req: tako::types::Request) -> OpenApiJson {
//! OpenApiJson(ApiDoc::openapi())
//! }
//! ```
//!
//! ## Using vespera
//!
//! ```rust,ignore
//! use tako::openapi::vespera::{OpenApi, Info, VesperaOpenApiJson};
//!
//! async fn openapi(_req: tako::types::Request) -> VesperaOpenApiJson {
//! let spec = OpenApi {
//! info: Info {
//! title: "My API".to_string(),
//! version: "1.0.0".to_string(),
//! ..Default::default()
//! },
//! ..Default::default()
//! };
//! VesperaOpenApiJson(spec)
//! }
//! ```
use BTreeMap;
/// OpenAPI metadata that can be attached to a route.
///
/// This struct stores operation-level OpenAPI information that can be
/// used to generate OpenAPI specifications from Tako routes.
/// OpenAPI parameter definition.
/// Location of an OpenAPI parameter.
/// OpenAPI request body definition.
/// A property definition for request body schema.
/// OpenAPI UI helpers (Swagger UI, Scalar, RapiDoc, Redoc).