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 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
//! Implements [OpenApi Responses][responses].
//!
//! [responses]: https://spec.openapis.org/oas/latest.html#responses-object
use std::collections::BTreeMap;
use indexmap::IndexMap;
use serde::{Deserialize, Serialize};
use crate::openapi::{Ref, RefOr};
use crate::IntoResponses;
use super::{builder, header::Header, set_value, Content};
builder! {
ResponsesBuilder;
/// Implements [OpenAPI Responses Object][responses].
///
/// Responses is a map holding api operation responses identified by their status code.
///
/// [responses]: https://spec.openapis.org/oas/latest.html#responses-object
#[non_exhaustive]
#[derive(Serialize, Deserialize, Default, Clone, PartialEq)]
#[cfg_attr(feature = "debug", derive(Debug))]
#[serde(rename_all = "camelCase")]
pub struct Responses {
/// Map containing status code as a key with represented response as a value.
#[serde(flatten)]
pub responses: BTreeMap<String, RefOr<Response>>,
}
}
impl Responses {
pub fn new() -> Self {
Default::default()
}
}
impl ResponsesBuilder {
/// Add a [`Response`].
pub fn response<S: Into<String>, R: Into<RefOr<Response>>>(
mut self,
code: S,
response: R,
) -> Self {
self.responses.insert(code.into(), response.into());
self
}
/// Add responses from an iterator over a pair of `(status_code, response): (String, Response)`.
pub fn responses_from_iter<
I: IntoIterator<Item = (C, R)>,
C: Into<String>,
R: Into<RefOr<Response>>,
>(
mut self,
iter: I,
) -> Self {
self.responses.extend(
iter.into_iter()
.map(|(code, response)| (code.into(), response.into())),
);
self
}
/// Add responses from a type that implements [`IntoResponses`].
pub fn responses_from_into_responses<I: IntoResponses>(mut self) -> Self {
self.responses.extend(I::responses());
self
}
}
impl From<Responses> for BTreeMap<String, RefOr<Response>> {
fn from(responses: Responses) -> Self {
responses.responses
}
}
impl<C, R> FromIterator<(C, R)> for Responses
where
C: Into<String>,
R: Into<RefOr<Response>>,
{
fn from_iter<T: IntoIterator<Item = (C, R)>>(iter: T) -> Self {
Self {
responses: BTreeMap::from_iter(
iter.into_iter()
.map(|(code, response)| (code.into(), response.into())),
),
}
}
}
builder! {
ResponseBuilder;
/// Implements [OpenAPI Response Object][response].
///
/// Response is api operation response.
///
/// [response]: https://spec.openapis.org/oas/latest.html#response-object
#[non_exhaustive]
#[derive(Serialize, Deserialize, Default, Clone, PartialEq)]
#[cfg_attr(feature = "debug", derive(Debug))]
#[serde(rename_all = "camelCase")]
pub struct Response {
/// Description of the response. Response support markdown syntax.
pub description: String,
/// Map of headers identified by their name. `Content-Type` header will be ignored.
#[serde(skip_serializing_if = "BTreeMap::is_empty", default)]
pub headers: BTreeMap<String, Header>,
/// Map of response [`Content`] objects identified by response body content type e.g `application/json`.
///
/// [`Content`]s are stored within [`IndexMap`] to retain their insertion order. Swagger UI
/// will create and show default example according to the first entry in `content` map.
#[serde(skip_serializing_if = "IndexMap::is_empty", default)]
pub content: IndexMap<String, Content>,
}
}
impl Response {
/// Construct a new [`Response`].
///
/// Function takes description as argument.
pub fn new<S: Into<String>>(description: S) -> Self {
Self {
description: description.into(),
..Default::default()
}
}
}
impl ResponseBuilder {
/// Add description. Description supports markdown syntax.
pub fn description<I: Into<String>>(mut self, description: I) -> Self {
set_value!(self description description.into())
}
/// Add [`Content`] of the [`Response`] with content type e.g `application/json`.
pub fn content<S: Into<String>>(mut self, content_type: S, content: Content) -> Self {
self.content.insert(content_type.into(), content);
self
}
/// Add response [`Header`].
pub fn header<S: Into<String>>(mut self, name: S, header: Header) -> Self {
self.headers.insert(name.into(), header);
self
}
}
impl From<ResponseBuilder> for RefOr<Response> {
fn from(builder: ResponseBuilder) -> Self {
Self::T(builder.build())
}
}
impl From<Ref> for RefOr<Response> {
fn from(r: Ref) -> Self {
Self::Ref(r)
}
}
/// Trait with convenience functions for documenting response bodies.
///
/// With a single method call we can add [`Content`] to our [`ResponseBuilder`] and [`Response`]
/// that references a [schema][schema] using content-type `"application/json"`.
///
/// _**Add json response from schema ref.**_
/// ```rust
/// use utoipa::openapi::response::{ResponseBuilder, ResponseExt};
///
/// let request = ResponseBuilder::new()
/// .description("A sample response")
/// .json_schema_ref("MyResponsePayload").build();
/// ```
///
/// If serialized to JSON, the above will result in a response schema like this.
/// ```json
/// {
/// "description": "A sample response",
/// "content": {
/// "application/json": {
/// "schema": {
/// "$ref": "#/components/schemas/MyResponsePayload"
/// }
/// }
/// }
/// }
/// ```
///
/// [response]: crate::ToResponse
/// [schema]: crate::ToSchema
///
#[cfg(feature = "openapi_extensions")]
#[cfg_attr(doc_cfg, doc(cfg(feature = "openapi_extensions")))]
pub trait ResponseExt {
/// Add [`Content`] to [`Response`] referring to a _`schema`_
/// with Content-Type `application/json`.
fn json_schema_ref(self, ref_name: &str) -> Self;
}
#[cfg(feature = "openapi_extensions")]
impl ResponseExt for Response {
fn json_schema_ref(mut self, ref_name: &str) -> Response {
self.content.insert(
"application/json".to_string(),
Content::new(crate::openapi::Ref::from_schema_name(ref_name)),
);
self
}
}
#[cfg(feature = "openapi_extensions")]
impl ResponseExt for ResponseBuilder {
fn json_schema_ref(self, ref_name: &str) -> ResponseBuilder {
self.content(
"application/json",
Content::new(crate::openapi::Ref::from_schema_name(ref_name)),
)
}
}
#[cfg(test)]
mod tests {
use super::{Content, ResponseBuilder, Responses};
use assert_json_diff::assert_json_eq;
use serde_json::json;
#[test]
fn responses_new() {
let responses = Responses::new();
assert!(responses.responses.is_empty());
}
#[test]
fn response_builder() -> Result<(), serde_json::Error> {
let request_body = ResponseBuilder::new()
.description("A sample response")
.content(
"application/json",
Content::new(crate::openapi::Ref::from_schema_name("MySchemaPayload")),
)
.build();
let serialized = serde_json::to_string_pretty(&request_body)?;
println!("serialized json:\n {serialized}");
assert_json_eq!(
request_body,
json!({
"description": "A sample response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MySchemaPayload"
}
}
}
})
);
Ok(())
}
}
#[cfg(all(test, feature = "openapi_extensions"))]
mod openapi_extensions_tests {
use assert_json_diff::assert_json_eq;
use serde_json::json;
use crate::openapi::ResponseBuilder;
use super::ResponseExt;
#[test]
fn response_ext() {
let request_body = ResponseBuilder::new()
.description("A sample response")
.build()
.json_schema_ref("MySchemaPayload");
assert_json_eq!(
request_body,
json!({
"description": "A sample response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MySchemaPayload"
}
}
}
})
);
}
#[test]
fn response_builder_ext() {
let request_body = ResponseBuilder::new()
.description("A sample response")
.json_schema_ref("MySchemaPayload")
.build();
assert_json_eq!(
request_body,
json!({
"description": "A sample response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/MySchemaPayload"
}
}
}
})
);
}
}