1//! `GET /_matrix/client/*/thirdparty/location/{protocol}`
2//!
3//! Fetches third party locations for a protocol.
45pub mod v3 {
6//! `/v3/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/client-server-api/#get_matrixclientv3thirdpartylocationprotocol
910use std::collections::BTreeMap;
1112use ruma_common::{
13 api::{request, response, Metadata},
14 metadata,
15 thirdparty::Location,
16 };
1718const METADATA: Metadata = metadata! {
19 method: GET,
20 rate_limited: false,
21 authentication: AccessToken,
22 history: {
231.0 => "/_matrix/client/r0/thirdparty/location/:protocol",
241.1 => "/_matrix/client/v3/thirdparty/location/:protocol",
25 }
26 };
2728/// Request type for the `get_location_for_protocol` endpoint.
29#[request(error = crate::Error)]
30pub struct Request {
31/// The protocol used to communicate to the third party network.
32#[ruma_api(path)]
33pub protocol: String,
3435/// One or more custom fields to help identify the third party location.
36#[ruma_api(query_all)]
37pub fields: BTreeMap<String, String>,
38 }
3940/// Response type for the `get_location_for_protocol` endpoint.
41#[response(error = crate::Error)]
42pub struct Response {
43/// List of matched third party locations.
44#[ruma_api(body)]
45pub locations: Vec<Location>,
46 }
4748impl Request {
49/// Creates a new `Request` with the given protocol.
50pub fn new(protocol: String) -> Self {
51Self { protocol, fields: BTreeMap::new() }
52 }
53 }
5455impl Response {
56/// Creates a new `Response` with the given locations.
57pub fn new(locations: Vec<Location>) -> Self {
58Self { locations }
59 }
60 }
61}