diff options
author | James Booth <boothj5@gmail.com> | 2014-10-12 01:10:46 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-10-12 01:10:46 +0100 |
commit | 77684cda007391ba57cfbaea22bde071bee2925d (patch) | |
tree | f2e81c7984f861a618d90d4cd5f55c7e27f08fc8 /src/command | |
parent | 8b1d0bdc3f4b1577a0fff767f670174c2b20113d (diff) | |
download | profani-tty-77684cda007391ba57cfbaea22bde071bee2925d.tar.gz |
Allow /role list and /affiliation list with no args
Diffstat (limited to 'src/command')
-rw-r--r-- | src/command/command.c | 4 | ||||
-rw-r--r-- | src/command/commands.c | 23 |
2 files changed, 21 insertions, 6 deletions
diff --git a/src/command/command.c b/src/command/command.c index c09bf63e..7d35c609 100644 --- a/src/command/command.c +++ b/src/command/command.c @@ -354,7 +354,7 @@ static struct cmd_t command_defs[] = { "/affiliation set|list [affiliation] [jid]", "-----------------------------------------", "set affiliation jid - Set the affiliation of user with jid.", - "list affiliation - List all users with the specified affiliation.", + "list [affiliation] - List all users with the specified affiliation, or all if none specified.", "The affiliation may be one of owner, admin, member, outcast or none.", NULL } } }, @@ -364,7 +364,7 @@ static struct cmd_t command_defs[] = { "/role set|list [role] [nick]", "----------------------------", "set role nick - Set the role of occupant with nick.", - "list role - List all occupants with the specified role.", + "list [role] - List all occupants with the specified role, or all if none specified.", "The role may be one of moderator, participant, visitor or none.", NULL } } }, diff --git a/src/command/commands.c b/src/command/commands.c index 9530b370..3e8d58d3 100644 --- a/src/command/commands.c +++ b/src/command/commands.c @@ -2244,7 +2244,17 @@ cmd_affiliation(gchar **args, struct cmd_help_t help) return TRUE; } + char *room = ui_current_recipient(); + char *affiliation = args[1]; + if (!affiliation) { + iq_room_affiliation_list(room, "owner"); + iq_room_affiliation_list(room, "admin"); + iq_room_affiliation_list(room, "member"); + iq_room_affiliation_list(room, "outcast"); + return TRUE; + } + if ((g_strcmp0(affiliation, "owner") != 0) && (g_strcmp0(affiliation, "admin") != 0) && (g_strcmp0(affiliation, "member") != 0) && @@ -2254,7 +2264,6 @@ cmd_affiliation(gchar **args, struct cmd_help_t help) return TRUE; } - char *room = ui_current_recipient(); ProfWin *window = wins_get_by_recipient(room); if (g_strcmp0(cmd, "list") == 0) { @@ -2303,7 +2312,16 @@ cmd_role(gchar **args, struct cmd_help_t help) return TRUE; } + char *room = ui_current_recipient(); + char *role = args[1]; + if (!role) { + iq_room_role_list(room, "moderator"); + iq_room_role_list(room, "participant"); + iq_room_role_list(room, "visitor"); + return TRUE; + } + if ((g_strcmp0(role, "visitor") != 0) && (g_strcmp0(role, "participant") != 0) && (g_strcmp0(role, "moderator") != 0) && @@ -2312,14 +2330,11 @@ cmd_role(gchar **args, struct cmd_help_t help) return TRUE; } - char *room = ui_current_recipient(); ProfWin *window = wins_get_by_recipient(room); if (g_strcmp0(cmd, "list") == 0) { if (g_strcmp0(role, "none") == 0) { win_save_print(window, '!', NULL, 0, 0, "", "Cannot list users with no role."); - } else if (g_strcmp0(role, "visitor") == 0) { - win_save_print(window, '!', NULL, 0, 0, "", "Cannot list users with visitor role."); } else { iq_room_role_list(room, role); } |