Software /
code /
prosody
Changeset
1798:4c8f3fa9d926
mod_console: Show status and priority of clients
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sun, 26 Jul 2009 17:05:18 +0100 |
parents | 1796:5f7b2f940816 |
children | 1799:c9c1987430c6 1800:cea841708dd4 |
files | plugins/mod_console.lua |
diffstat | 1 files changed, 11 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_console.lua Sun Sep 20 15:16:25 2009 +0100 +++ b/plugins/mod_console.lua Sun Jul 26 17:05:18 2009 +0100 @@ -359,10 +359,19 @@ function def_env.c2s:show(match_jid) local print, count = self.session.print, 0; - show_c2s(function (jid) + show_c2s(function (jid, session) if (not match_jid) or jid:match(match_jid) then count = count + 1; - print(jid); + local status, priority = "unavailable", tostring(session.priority or "-"); + if session.presence then + status = session.presence:child_with_name("show"); + if status then + status = status:get_text() or "[invalid!]"; + else + status = "available"; + end + end + print(jid.." - "..status.."("..priority..")"); end end); return true, "Total: "..count.." clients";