mirror of
https://git.ondrovo.com/MightyPork/group-actor.git
synced 2024-11-21 15:41:03 +00:00
improve /add user
This commit is contained in:
parent
957f0dbb3b
commit
674b9da6fa
4 changed files with 24 additions and 26 deletions
|
@ -1,5 +1,8 @@
|
|||
# Changelog
|
||||
|
||||
## v0.2.3
|
||||
- `/add user` will now try to follow even if already a member
|
||||
|
||||
## v0.2.2
|
||||
- All hashtags, server names and handles are now lowercased = case-insensitive
|
||||
- Prevent the `-a` flag overwriting existing group in the config
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -328,7 +328,7 @@ checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
|
|||
|
||||
[[package]]
|
||||
name = "fedigroups"
|
||||
version = "0.2.2"
|
||||
version = "0.2.3"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "fedigroups"
|
||||
version = "0.2.2"
|
||||
version = "0.2.3"
|
||||
authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
|
||||
edition = "2018"
|
||||
publish = false
|
||||
|
|
|
@ -379,7 +379,6 @@ impl<'a> ProcessMention<'a> {
|
|||
async fn cmd_add_member(&mut self, user: &str) -> Result<(), GroupError> {
|
||||
let u = normalize_acct(user, &self.group_acct)?;
|
||||
if self.is_admin {
|
||||
if !self.config.is_member(&u) {
|
||||
match self.config.set_member(&u, true) {
|
||||
Ok(_) => {
|
||||
self.add_reply(format!("User {} added to the group!", u));
|
||||
|
@ -390,9 +389,6 @@ impl<'a> ProcessMention<'a> {
|
|||
self.add_reply(format!("Failed to add user {} to group: {}", u, e));
|
||||
}
|
||||
}
|
||||
} else {
|
||||
debug!("User was already a member");
|
||||
}
|
||||
} else {
|
||||
self.add_reply("Only admins can manage members");
|
||||
}
|
||||
|
@ -402,7 +398,6 @@ impl<'a> ProcessMention<'a> {
|
|||
async fn cmd_remove_member(&mut self, user: &str) -> Result<(), GroupError> {
|
||||
let u = normalize_acct(user, &self.group_acct)?;
|
||||
if self.is_admin {
|
||||
if self.config.is_member(&u) {
|
||||
match self.config.set_member(&u, false) {
|
||||
Ok(_) => {
|
||||
self.add_reply(format!("User {} removed from the group.", u));
|
||||
|
@ -413,7 +408,6 @@ impl<'a> ProcessMention<'a> {
|
|||
unreachable!()
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
self.add_reply("Only admins can manage members");
|
||||
}
|
||||
|
@ -586,10 +580,11 @@ impl<'a> ProcessMention<'a> {
|
|||
// admin can leave but that's a bad idea
|
||||
let _ = self.config.set_member(&self.status_acct, false);
|
||||
self.add_reply("You're no longer a group member. Unfollow the group user to stop receiving group messages.");
|
||||
}
|
||||
|
||||
self.unfollow_user_by_id(&self.status_user_id).await
|
||||
.log_error("Failed to unfollow");
|
||||
}
|
||||
}
|
||||
|
||||
async fn cmd_join(&mut self) {
|
||||
if self.config.is_member_or_admin(&self.status_acct) {
|
||||
|
|
Loading…
Reference in a new issue