ruma_client_api/appservice/set_room_visibility.rs
1//! `PUT /_matrix/client/*/directory/list/appservice/{networkId}/{roomId}`
2//!
3//! Updates the visibility of a given room on the application service's room directory.
4
5pub mod v3 {
6 //! `/v3/` ([spec])
7 //!
8 //! [spec]: https://spec.matrix.org/latest/application-service-api/#put_matrixclientv3directorylistappservicenetworkidroomid
9
10 use ruma_common::{
11 api::{request, response, Metadata},
12 metadata, OwnedRoomId,
13 };
14
15 use crate::room::Visibility;
16
17 const METADATA: Metadata = metadata! {
18 method: PUT,
19 rate_limited: false,
20 authentication: AppserviceToken,
21 history: {
22 1.0 => "/_matrix/client/r0/directory/list/appservice/:network_id/:room_id",
23 1.1 => "/_matrix/client/v3/directory/list/appservice/:network_id/:room_id",
24 }
25 };
26
27 /// Request type for the `set_room_visibility` endpoint.
28 #[request(error = crate::Error)]
29 pub struct Request {
30 /// The protocol (network) ID to update the room list for.
31 #[ruma_api(path)]
32 pub network_id: String,
33
34 /// The room ID to add to the directory.
35 #[ruma_api(path)]
36 pub room_id: OwnedRoomId,
37
38 /// Whether the room should be visible (public) in the directory or not (private).
39 pub visibility: Visibility,
40 }
41
42 /// Response type for the `set_room_visibility` endpoint.
43 #[response(error = crate::Error)]
44 #[derive(Default)]
45 pub struct Response {}
46
47 impl Request {
48 /// Creates a new `Request` with the given network ID, room ID and visibility.
49 pub fn new(network_id: String, room_id: OwnedRoomId, visibility: Visibility) -> Self {
50 Self { network_id, room_id, visibility }
51 }
52 }
53
54 impl Response {
55 /// Creates an empty `Response`.
56 pub fn new() -> Self {
57 Self {}
58 }
59 }
60}