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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372
//! Implements [OpenAPI Server Object][server] types to configure target servers.
//!
//! OpenAPI will implicitly add [`Server`] with `url = "/"` to [`OpenApi`][openapi] when no servers
//! are defined.
//!
//! [`Server`] can be used to alter connection url for _**path operations**_. It can be a
//! relative path e.g `/api/v1` or valid http url e.g. `http://alternative.api.com/api/v1`.
//!
//! Relative path will append to the **sever address** so the connection url for _**path operations**_
//! will become `server address + relative path`.
//!
//! Optionally it also supports parameter substitution with `{variable}` syntax.
//!
//! # Examples
//!
//! Create new server with relative path.
//! ```rust
//! # use salvo_oapi::server::Server;
//! Server::new("/api/v1");
//! ```
//!
//! Create server with custom url using a builder.
//! ```rust
//! # use salvo_oapi::server::Server;
//! Server::new("https://alternative.api.url.test/api");
//! ```
//!
//! Create server with builder and variable substitution.
//! ```rust
//! # use salvo_oapi::server::{Server, ServerVariable};
//! Server::new("/api/{version}/{username}")
//! .add_variable("version", ServerVariable::new()
//! .enum_values(["v1", "v2"])
//! .default_value("v1"))
//! .add_variable("username", ServerVariable::new()
//! .default_value("the_user"));
//! ```
//!
//! [server]: https://spec.openapis.org/oas/latest.html#server-object
//! [openapi]: ../struct.OpenApi.html
use std::cmp::{Ord, Ordering, PartialOrd};
use std::collections::{BTreeMap, BTreeSet};
use std::ops::{Deref, DerefMut};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Default, Clone, PartialEq, Debug)]
/// Collection for [`Server`] objects.
pub struct Servers(pub BTreeSet<Server>);
impl Deref for Servers {
type Target = BTreeSet<Server>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for Servers {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl IntoIterator for Servers {
type Item = Server;
type IntoIter = <BTreeSet<Server> as IntoIterator>::IntoIter;
fn into_iter(self) -> Self::IntoIter {
self.0.into_iter()
}
}
impl Servers {
/// Construct a new empty [`Servers`]. This is effectively same as calling [`Servers::default`].
pub fn new() -> Self {
Default::default()
}
/// Returns `true` if instance contains no elements.
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
/// Inserts a server into the instance and returns `self`.
pub fn server<S: Into<Server>>(mut self, server: S) -> Self {
self.insert(server);
self
}
/// Inserts a server into the instance.
pub fn insert<S: Into<Server>>(&mut self, server: S) {
let server = server.into();
let exist_server = self.0.iter().find(|s| s.url == server.url).cloned();
if let Some(mut exist_server) = exist_server {
let Server {
description,
mut variables,
..
} = server;
exist_server.variables.append(&mut variables);
if description.is_some() {
exist_server.description = description;
}
self.0.insert(exist_server);
} else {
self.0.insert(server);
}
}
/// Moves all elements from `other` into `self`, leaving `other` empty.
///
/// If a key from `other` is already present in `self`, the respective
/// value from `self` will be overwritten with the respective value from `other`.
pub fn append(&mut self, other: &mut Servers) {
let servers = std::mem::take(&mut other.0);
for server in servers {
self.insert(server);
}
}
/// Extends a collection with the contents of an iterator.
pub fn extend<I>(&mut self, iter: I)
where
I: IntoIterator<Item = Server>,
{
for server in iter.into_iter() {
self.insert(server);
}
}
}
/// Represents target server object. It can be used to alter server connection for
/// _**path operations**_.
///
/// By default OpenAPI will implicitly implement [`Server`] with `url = "/"` if no servers is provided to
/// the [`OpenApi`][openapi].
///
/// [openapi]: ../struct.OpenApi.html
#[non_exhaustive]
#[derive(Serialize, Deserialize, Default, Clone, Debug, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct Server {
/// Target url of the [`Server`]. It can be valid http url or relative path.
///
/// Url also supports variable substitution with `{variable}` syntax. The substitutions
/// then can be configured with [`Server::variables`] map.
pub url: String,
/// Optional description describing the target server url. Description supports markdown syntax.
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<String>,
/// Optional map of variable name and its substitution value used in [`Server::url`].
#[serde(skip_serializing_if = "ServerVariables::is_empty")]
pub variables: ServerVariables,
}
impl Ord for Server {
fn cmp(&self, other: &Self) -> Ordering {
self.url.cmp(&other.url)
}
}
impl PartialOrd for Server {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Server {
/// Construct a new [`Server`] with given url. Url can be valid http url or context path of the url.
///
/// If url is valid http url then all path operation request's will be forwarded to the selected [`Server`].
///
/// If url is path of url e.g. `/api/v1` then the url will be appended to the servers address and the
/// operations will be forwarded to location `server address + url`.
///
///
/// # Examples
///
/// Create new server with url path.
/// ```
/// # use salvo_oapi::server::Server;
/// Server::new("/api/v1");
/// ```
///
/// Create new server with alternative server.
/// ```
/// # use salvo_oapi::server::Server;
/// Server::new("https://alternative.pet-api.test/api/v1");
/// ```
pub fn new<S: Into<String>>(url: S) -> Self {
Self {
url: url.into(),
..Default::default()
}
}
/// Add url to the target [`Server`].
pub fn url<U: Into<String>>(mut self, url: U) -> Self {
self.url = url.into();
self
}
/// Add or change description of the [`Server`].
pub fn description<S: Into<String>>(mut self, description: S) -> Self {
self.description = Some(description.into());
self
}
/// Add parameter to [`Server`] which is used to substitute values in [`Server::url`] and returns `Self`.
///
/// * `name` Defines name of the parameter which is being substituted within the url. If url has
/// `{username}` substitution then the name should be `username`.
/// * `parameter` Use [`ServerVariable`] to define how the parameter is being substituted
/// within the url.
pub fn add_variable<N: Into<String>, V: Into<ServerVariable>>(mut self, name: N, variable: V) -> Self {
self.variables.insert(name.into(), variable.into());
self
}
}
/// Server Variables information for OpenApi.
#[derive(Serialize, Deserialize, Default, Clone, PartialEq, Eq, Debug)]
pub struct ServerVariables(pub BTreeMap<String, ServerVariable>);
impl Deref for ServerVariables {
type Target = BTreeMap<String, ServerVariable>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for ServerVariables {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl ServerVariables {
/// Construct a new empty [`ServerVariables`]. This is effectively same as calling [`ServerVariables::default`].
pub fn new() -> Self {
Default::default()
}
/// Returns `true` if instance contains no elements.
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
/// Inserts a key-value pair into the instance and returns `self`.
pub fn server_varible<K: Into<String>, V: Into<ServerVariable>>(mut self, key: K, variable: V) -> Self {
self.insert(key, variable);
self
}
/// Inserts a key-value pair into the instance.
pub fn insert<K: Into<String>, V: Into<ServerVariable>>(&mut self, key: K, variable: V) {
let key = key.into();
let mut variable = variable.into();
self.0
.entry(key)
.and_modify(|item| {
if variable.description.is_some() {
item.description = variable.description.take();
}
item.default_value = variable.default_value.clone();
item.enum_values.append(&mut variable.enum_values);
})
.or_insert(variable);
}
/// Moves all elements from `other` into `self`, leaving `other` empty.
///
/// If a key from `other` is already present in `self`, the respective
/// value from `self` will be overwritten with the respective value from `other`.
pub fn append(&mut self, other: &mut ServerVariables) {
let variables = std::mem::take(&mut other.0);
for (key, variable) in variables {
self.insert(key, variable);
}
}
/// Extends a collection with the contents of an iterator.
pub fn extend<I>(&mut self, iter: I)
where
I: IntoIterator<Item = (String, ServerVariable)>,
{
for (key, variable) in iter.into_iter() {
self.insert(key, variable);
}
}
}
/// Implements [OpenAPI Server Variable][server_variable] used to substitute variables in [`Server::url`].
///
/// [server_variable]: https://spec.openapis.org/oas/latest.html#server-variable-object
#[non_exhaustive]
#[derive(Serialize, Deserialize, Default, Clone, Debug, PartialEq, Eq)]
pub struct ServerVariable {
/// Default value used to substitute parameter if no other value is being provided.
#[serde(rename = "default")]
default_value: String,
/// Optional description describing the variable of substitution. Markdown syntax is supported.
#[serde(skip_serializing_if = "Option::is_none")]
description: Option<String>,
/// Enum values can be used to limit possible options for substitution. If enum values is used
/// the [`ServerVariable::default_value`] must contain one of the enum values.
#[serde(rename = "enum", skip_serializing_if = "BTreeSet::is_empty")]
enum_values: BTreeSet<String>,
}
impl ServerVariable {
/// Construct a new empty [`ServerVariable`]. This is effectively same as calling [`ServerVariable::default`].
pub fn new() -> Self {
Default::default()
}
/// Add default value for substitution.
pub fn default_value<S: Into<String>>(mut self, default_value: S) -> Self {
self.default_value = default_value.into();
self
}
/// Add or change description of substituted parameter.
pub fn description<S: Into<String>>(mut self, description: S) -> Self {
self.description = Some(description.into());
self
}
/// Add or change possible values used to substitute parameter.
pub fn enum_values<I: IntoIterator<Item = V>, V: Into<String>>(mut self, enum_values: I) -> Self {
self.enum_values = enum_values.into_iter().map(|value| value.into()).collect();
self
}
}
#[cfg(test)]
mod tests {
use super::*;
macro_rules! test_fn {
($name:ident: $schema:expr; $expected:literal) => {
#[test]
fn $name() {
let value = serde_json::to_value($schema).unwrap();
let expected_value: serde_json::Value = serde_json::from_str($expected).unwrap();
assert_eq!(
value,
expected_value,
"testing serializing \"{}\": \nactual:\n{}\nexpected:\n{}",
stringify!($name),
value,
expected_value
);
println!("{}", &serde_json::to_string_pretty(&$schema).unwrap());
}
};
}
test_fn! {
create_server_with_builder_and_variable_substitution:
Server::new("/api/{version}/{username}")
.add_variable("version", ServerVariable::new()
.enum_values(["v1", "v2"])
.description("api version")
.default_value("v1"))
.add_variable("username", ServerVariable::new()
.default_value("the_user"));
r###"{
"url": "/api/{version}/{username}",
"variables": {
"version": {
"enum": ["v1", "v2"],
"default": "v1",
"description": "api version"
},
"username": {
"default": "the_user"
}
}
}"###
}
}