Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add small example on how to use Client::send #1

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions matrix_sdk/examples/get_profiles.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
use std::convert::TryFrom;
use std::{env, process::exit};

use url::Url;

use matrix_sdk::{
self, api::r0::profile, identifiers::UserId, Client, ClientConfig, Result as MatrixResult,
};

#[derive(Debug)]
struct UserProfile {
avatar_url: Option<String>,
displayname: Option<String>,
}

/// This function calls the GET profile endpoint
/// Spec: https://matrix.org/docs/spec/client_server/r0.6.1#get-matrix-client-r0-profile-userid
/// Ruma: https://docs.rs/ruma-client-api/0.9.0/ruma_client_api/r0/profile/get_profile/index.html
async fn get_profile(client: Client, mxid: UserId) -> MatrixResult<UserProfile> {
// First construct the request you want to make
// See https://docs.rs/ruma-client-api/0.9.0/ruma_client_api/index.html for all available Endpoints
let request = profile::get_profile::Request {
user_id: mxid.clone(),
};

// Start the request using matrix_sdk::Client::send
let resp = client.send(request).await?;

// Use the response and construct a UserProfile struct.
// See https://docs.rs/ruma-client-api/0.9.0/ruma_client_api/r0/profile/get_profile/struct.Response.html
// for details on the Response for this Request
let user_profile = UserProfile {
avatar_url: resp.avatar_url,
displayname: resp.displayname,
};
Ok(user_profile)
}

async fn login(
homeserver_url: String,
username: String,
password: String,
) -> Result<Client, matrix_sdk::Error> {
let client_config = ClientConfig::new()
.proxy("http://localhost:8080")?
.disable_ssl_verification();
let homeserver_url = Url::parse(&homeserver_url).expect("Couldn't parse the homeserver URL");
let client = Client::new_with_config(homeserver_url, None, client_config).unwrap();

client
.login(username, password, None, Some("rust-sdk".to_string()))
.await?;

Ok(client)
}

#[tokio::main]
async fn main() -> Result<(), matrix_sdk::Error> {
tracing_subscriber::fmt::init();

let (homeserver_url, username, password) =
match (env::args().nth(1), env::args().nth(2), env::args().nth(3)) {
(Some(a), Some(b), Some(c)) => (a, b, c),
_ => {
eprintln!(
"Usage: {} <homeserver_url> <mxid> <password>",
env::args().next().unwrap()
);
exit(1)
}
};

let client = login(homeserver_url, username.clone(), password).await?;

let user_id = UserId::try_from(username.clone()).expect("Couldn't parse the MXID");
let profile = get_profile(client, user_id).await?;
println!("{:#?}", profile);
Ok(())
}
18 changes: 18 additions & 0 deletions matrix_sdk/src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -926,6 +926,24 @@ impl Client {
/// # Arguments
///
/// * `request` - A filled out and valid request for the endpoint to be hit
///
/// # Example
///
/// ```compile_fail
/// use matrix_sdk::api::r0::profile;
///
/// // First construct the request you want to make
/// // See https://docs.rs/ruma-client-api/latest/ruma_client_api/index.html
/// // for all available Endpoints
/// let request = profile::get_profile::Request {
/// user_id: mxid.clone(),
/// };
///
/// // Start the request using Client::send()
/// let resp = client.send(request).await.unwrap();
///
/// // Check the corresponding Response struct to find out what types are returned
/// ```
pub async fn send<Request: Endpoint<ResponseError = crate::api::Error> + std::fmt::Debug>(
&self,
request: Request,
Expand Down