Files
matrix-rust-sdk/examples/image_bot/src/main.rs
T
Marco Antonio Alvarez 10069fbead MSC2530: added the ability to send media with captions (#3226)
Now that there is some support for [MSC2530](https://github.com/matrix-org/matrix-spec-proposals/pull/2530), I gave adding sending captions a try. ( This is my first time with Rust 😄  )

I tried it on Element X with a hardcoded caption and it seems to work well
![image](https://github.com/matrix-org/matrix-rust-sdk/assets/683652/597e5ebf-f7f2-498f-97a4-ac98613c1134)

(It even got forwarded through mautrix-whatsapp and the caption was visible on the Whatsapp side)

---

* ffi: Expose filename and formatted body fields for media captions

In relevance to MSC2530

* MSC2530: added the ability to send media with captions

Signed-off-by: Marco Antonio Alvarez <surakin@gmail.com>

* signoff

Signed-off-by: Marco Antonio Alvarez <surakin@gmail.com>

* fixing the import messup

* fix missing parameters in documentation

* fix formatting

* move optional parameters to the end

* more formatting fixes

* more formatting fixes

* rename url parameter to filename in send_attachment and helpers

* fix send_attachment documentation example

* move caption and formatted_caption into attachmentconfig

* fix formatting

* fix formatting

* fix formatting (hopefully the last one)

* updated stale comments

* simplify attachment message comments

---------

Signed-off-by: Marco Antonio Alvarez <surakin@gmail.com>
Co-authored-by: SpiritCroc <dev@spiritcroc.de>
2024-03-19 11:08:47 +01:00

79 lines
2.3 KiB
Rust

use std::{env, fs, process::exit};
use matrix_sdk::{
self,
attachment::AttachmentConfig,
config::SyncSettings,
ruma::events::room::message::{MessageType, OriginalSyncRoomMessageEvent},
Client, Room, RoomState,
};
use url::Url;
async fn on_room_message(event: OriginalSyncRoomMessageEvent, room: Room, image: Vec<u8>) {
if room.state() != RoomState::Joined {
return;
}
let MessageType::Text(text_content) = event.content.msgtype else { return };
if text_content.body.contains("!image") {
println!("sending image");
room.send_attachment(
"cat.jpg",
&mime::IMAGE_JPEG,
image,
AttachmentConfig::new().caption(Some("my pretty cat".to_owned())),
)
.await
.unwrap();
println!("message sent");
}
}
async fn login_and_sync(
homeserver_url: String,
username: String,
password: String,
image: Vec<u8>,
) -> matrix_sdk::Result<()> {
let homeserver_url = Url::parse(&homeserver_url).expect("Couldn't parse the homeserver URL");
let client = Client::new(homeserver_url).await.unwrap();
client
.matrix_auth()
.login_username(&username, &password)
.initial_device_display_name("command bot")
.await?;
let response = client.sync_once(SyncSettings::default()).await.unwrap();
client.add_event_handler(move |ev, room| on_room_message(ev, room, image));
let settings = SyncSettings::default().token(response.next_batch);
client.sync(settings).await?;
Ok(())
}
#[tokio::main]
async fn main() -> anyhow::Result<()> {
tracing_subscriber::fmt::init();
let (homeserver_url, username, password, image_path) =
match (env::args().nth(1), env::args().nth(2), env::args().nth(3), env::args().nth(4)) {
(Some(a), Some(b), Some(c), Some(d)) => (a, b, c, d),
_ => {
eprintln!(
"Usage: {} <homeserver_url> <username> <password> <image>",
env::args().next().unwrap()
);
exit(1)
}
};
println!("helloooo {homeserver_url} {username} {password} {image_path:#?}");
let image = fs::read(&image_path).expect("Can't open image file.");
login_and_sync(homeserver_url, username, password, image).await?;
Ok(())
}