# HG changeset patch # User Matthew Wild # Date 1248624318 -3600 # Node ID 5097583259e00e57ec47c3d7e91ea56641a35e62 # Parent d11606859400529ebe7a5c785c5c7dcaa6e785f4 mod_console: Show status and priority of clients diff -r d11606859400 -r 5097583259e0 plugins/mod_console.lua --- a/plugins/mod_console.lua Sun Jul 26 18:22:10 2009 +0500 +++ b/plugins/mod_console.lua Sun Jul 26 17:05:18 2009 +0100 @@ -325,10 +325,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";