feat: add support for multiple rooms
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
koalp 2021-05-01 23:49:35 +02:00
parent a64096fa87
commit ac5ef59dfa
Signed by: koalp
GPG Key ID: 35B21047DEB09A81
6 changed files with 27 additions and 22 deletions

View File

@ -1,6 +1,6 @@
--- ---
name: "🗣 Design discussion" name: "🗣 Discussion"
about: "For discussion about the design of features in the application, when there are several possibilities for implementation" about: "For discussion about the software, when you want to discuss about several conception possibilities"
title: "" title: ""
labels: labels:
- "type::discussion" - "type::discussion"
@ -8,12 +8,8 @@ labels:
--- ---
*describe shortly the problem* *describe the problem *
## Requirements
*list requirements that the feature have*
## Propositions ## Propositions
*explain the different implementation that you would propose for the feature* *(optionnal) explain the different implementation that you would propose*

View File

@ -20,7 +20,7 @@ pub(crate) struct Builder {
password: String, password: String,
homeserver: String, homeserver: String,
//TODO: rooms //TODO: rooms
room: String, rooms: Vec<String>,
} }
impl Builder { impl Builder {
@ -34,9 +34,11 @@ impl Builder {
.login(self.user.as_str(), self.password.as_str(), None, None) .login(self.user.as_str(), self.password.as_str(), None, None)
.await?; .await?;
assert!(client.logged_in().await); assert!(client.logged_in().await);
client for room in &self.rooms {
.join_room_by_id(&self.room.as_str().try_into()?) client
.await?; .join_room_by_id(&room.as_str().try_into()?)
.await?;
}
Ok(Chatbot { client }) Ok(Chatbot { client })
} }
@ -56,8 +58,15 @@ impl Builder {
self self
} }
pub(crate) fn room(&mut self, room: &impl AsRef<str>) -> &mut Self { pub(crate) fn room(&mut self, room: impl AsRef<str>) -> &mut Self {
self.room = room.as_ref().into(); self.rooms.push(room.as_ref().into());
self
}
pub(crate) fn rooms(&mut self, rooms: Vec<String>) -> &mut Self {
for room in rooms {
self.room(room);
}
self self
} }
} }

View File

@ -9,20 +9,20 @@ use crate::Chatbot;
pub async fn run() -> Result<()> { pub async fn run() -> Result<()> {
dotenv().ok(); dotenv().ok();
let (user, password, homeserver, room) = match ( let (user, password, homeserver, rooms) = match (
env::var("CRIEUR_MATRIX_USER"), env::var("CRIEUR_MATRIX_USER"),
env::var("CRIEUR_MATRIX_PASSWORD"), env::var("CRIEUR_MATRIX_PASSWORD"),
env::var("CRIEUR_MATRIX_HOMESERVER"), env::var("CRIEUR_MATRIX_HOMESERVER"),
env::var("CRIEUR_MATRIX_ROOM"), env::var("CRIEUR_MATRIX_ROOMS"),
) { ) {
(Ok(user), Ok(password), Ok(homeserver), Ok(room)) => (user, password, homeserver, room), (Ok(user), Ok(password), Ok(homeserver), Ok(rooms)) => (user, password, homeserver, rooms.split(",").map(|s| s.to_string()).collect::<Vec<String>>()),
_ => bail!("Configuration incomplete, please set all required environment variables"), _ => bail!("Configuration incomplete, please set all required environment variables"),
}; };
let chatbot = Chatbot::builder() let chatbot = Chatbot::builder()
.login(&user, &password) .login(&user, &password)
.homeserver(&homeserver) .homeserver(&homeserver)
.room(&room) .rooms(rooms)
.connect() .connect()
.await?; .await?;

View File

@ -87,7 +87,7 @@ where
}; };
room.send_attachment( room.send_attachment(
"test.html", "article.html",
&mime::TEXT_HTML_UTF_8, &mime::TEXT_HTML_UTF_8,
&mut article_html.as_bytes(), &mut article_html.as_bytes(),
None, None,

View File

@ -8,7 +8,7 @@ title: Build and run the chatbot
CRIEUR_MATRIX_USER=user CRIEUR_MATRIX_USER=user
CRIEUR_MATRIX_PASSWORD=password CRIEUR_MATRIX_PASSWORD=password
CRIEUR_MATRIX_HOMESERVER=https://homeserv.er CRIEUR_MATRIX_HOMESERVER=https://homeserv.er
CRIEUR_MATRIX_ROOM=roomid CRIEUR_MATRIX_ROOMS=roomid1,roomid2,
``` ```
You can put it in a `.env` file. You can put it in a `.env` file.

View File

@ -13,5 +13,5 @@ CRIEUR_MATRIX_PASSWORD
CRIEUR_MATRIX_HOMESERVER CRIEUR_MATRIX_HOMESERVER
: homeserver of the matrix bot account : homeserver of the matrix bot account
CRIEUR_MATRIX_ROOM CRIEUR_MATRIX_ROOMS
: the room in which to listen to events : rooms in which to listen to events