mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_csi: Set session.state to simplify CSI modules
Moved here from mod_csi_simple
This commit is contained in:
parent
64b9b5a758
commit
a24712e845
2 changed files with 1 additions and 2 deletions
|
@ -11,6 +11,7 @@ end);
|
||||||
function refire_event(name)
|
function refire_event(name)
|
||||||
return function (event)
|
return function (event)
|
||||||
if event.origin.username then
|
if event.origin.username then
|
||||||
|
session.state = event.stanza.name;
|
||||||
module:fire_event(name, event);
|
module:fire_event(name, event);
|
||||||
return true;
|
return true;
|
||||||
end
|
end
|
||||||
|
|
|
@ -71,7 +71,6 @@ end, -1);
|
||||||
|
|
||||||
module:hook("csi-client-inactive", function (event)
|
module:hook("csi-client-inactive", function (event)
|
||||||
local session = event.origin;
|
local session = event.origin;
|
||||||
session.state = "inactive";
|
|
||||||
if session.pump then
|
if session.pump then
|
||||||
session.pump:pause();
|
session.pump:pause();
|
||||||
else
|
else
|
||||||
|
@ -99,7 +98,6 @@ end);
|
||||||
|
|
||||||
module:hook("csi-client-active", function (event)
|
module:hook("csi-client-active", function (event)
|
||||||
local session = event.origin;
|
local session = event.origin;
|
||||||
session.state = "active";
|
|
||||||
if session.pump then
|
if session.pump then
|
||||||
session.pump:resume();
|
session.pump:resume();
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue