1
0
mirror of https://github.com/profanity-im/profanity.git synced 2025-01-03 14:57:42 -05:00

Added /room ban command

This commit is contained in:
James Booth 2014-10-06 23:17:40 +01:00
parent 78a1556f12
commit 3228746827
2 changed files with 20 additions and 0 deletions

View File

@ -1252,6 +1252,7 @@ cmd_init(void)
autocomplete_add(room_ac, "info");
autocomplete_add(room_ac, "subject");
autocomplete_add(room_ac, "kick");
autocomplete_add(room_ac, "ban");
autocomplete_add(room_ac, "role");
autocomplete_add(room_ac, "affiliation");
@ -2355,6 +2356,13 @@ _room_autocomplete(char *input, int *size)
}
}
if (jid_ac != NULL) {
result = autocomplete_param_with_ac(input, size, "/room ban", jid_ac, TRUE);
if (result != NULL) {
return result;
}
}
result = autocomplete_param_with_ac(input, size, "/room", room_ac, TRUE);
if (result != NULL) {
return result;

View File

@ -2128,6 +2128,7 @@ cmd_room(gchar **args, struct cmd_help_t help)
(g_strcmp0(args[0], "config") != 0) &&
(g_strcmp0(args[0], "subject") != 0) &&
(g_strcmp0(args[0], "kick") != 0) &&
(g_strcmp0(args[0], "ban") != 0) &&
(g_strcmp0(args[0], "role") != 0) &&
(g_strcmp0(args[0], "affiliation") != 0) &&
(g_strcmp0(args[0], "info") != 0)) {
@ -2195,6 +2196,17 @@ cmd_room(gchar **args, struct cmd_help_t help)
return TRUE;
}
if (g_strcmp0(args[0], "ban") == 0) {
char *jid = args[1];
if (jid) {
char *reason = args[2];
iq_room_affiliation_set(room, jid, "outcast", reason);
} else {
cons_show("Usage: %s", help.usage);
}
return TRUE;
}
if (g_strcmp0(args[0], "affiliation") == 0) {
char *cmd = args[1];
if (cmd == NULL) {