Software /
code /
prosody
Annotate
plugins/mod_ping.lua @ 7964:1023f2add7fe
configure: Fix Lua suffix in FreeBSD preset
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 07 Mar 2017 21:48:05 +0100 |
parent | 6012:7e8a624272bf |
child | 8729:c519c778f2b2 |
rev | line source |
---|---|
1523
841d61be198f
Remove version number from copyright headers
Matthew Wild <mwild1@gmail.com>
parents:
1511
diff
changeset
|
1 -- Prosody IM |
2923
b7049746bd29
Update copyright headers for 2010
Matthew Wild <mwild1@gmail.com>
parents:
2011
diff
changeset
|
2 -- Copyright (C) 2008-2010 Matthew Wild |
b7049746bd29
Update copyright headers for 2010
Matthew Wild <mwild1@gmail.com>
parents:
2011
diff
changeset
|
3 -- Copyright (C) 2008-2010 Waqas Hussain |
5776
bd0ff8ae98a8
Remove all trailing whitespace
Florian Zeitz <florob@babelmonkeys.de>
parents:
4129
diff
changeset
|
4 -- |
758 | 5 -- This project is MIT/X11 licensed. Please see the |
6 -- COPYING file in the source package for more information. | |
519
cccd610a0ef9
Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents:
438
diff
changeset
|
7 -- |
cccd610a0ef9
Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents:
438
diff
changeset
|
8 |
1511
f9f8b7184cbe
mod_ping: Convert from Windows line endings
Matthew Wild <mwild1@gmail.com>
parents:
896
diff
changeset
|
9 local st = require "util.stanza"; |
f9f8b7184cbe
mod_ping: Convert from Windows line endings
Matthew Wild <mwild1@gmail.com>
parents:
896
diff
changeset
|
10 |
f9f8b7184cbe
mod_ping: Convert from Windows line endings
Matthew Wild <mwild1@gmail.com>
parents:
896
diff
changeset
|
11 module:add_feature("urn:xmpp:ping"); |
f9f8b7184cbe
mod_ping: Convert from Windows line endings
Matthew Wild <mwild1@gmail.com>
parents:
896
diff
changeset
|
12 |
2011
8159497c86e3
mod_ping: Updated to use events (which also fixes a few minor issues).
Waqas Hussain <waqas20@gmail.com>
parents:
1523
diff
changeset
|
13 local function ping_handler(event) |
6012
7e8a624272bf
mod_ping: Use type-specific event
Kim Alvefur <zash@zash.se>
parents:
5776
diff
changeset
|
14 return event.origin.send(st.reply(event.stanza)); |
2011
8159497c86e3
mod_ping: Updated to use events (which also fixes a few minor issues).
Waqas Hussain <waqas20@gmail.com>
parents:
1523
diff
changeset
|
15 end |
8159497c86e3
mod_ping: Updated to use events (which also fixes a few minor issues).
Waqas Hussain <waqas20@gmail.com>
parents:
1523
diff
changeset
|
16 |
6012
7e8a624272bf
mod_ping: Use type-specific event
Kim Alvefur <zash@zash.se>
parents:
5776
diff
changeset
|
17 module:hook("iq-get/bare/urn:xmpp:ping:ping", ping_handler); |
7e8a624272bf
mod_ping: Use type-specific event
Kim Alvefur <zash@zash.se>
parents:
5776
diff
changeset
|
18 module:hook("iq-get/host/urn:xmpp:ping:ping", ping_handler); |
3486
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
19 |
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
20 -- Ad-hoc command |
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
21 |
4129
c86b68abe12e
mod_ping: Use util.datetime to generate timestamp in ad-hoc command response (instead of the current use of os.date, which doesn't take timezone into account).
Waqas Hussain <waqas20@gmail.com>
parents:
3486
diff
changeset
|
22 local datetime = require "util.datetime".datetime; |
c86b68abe12e
mod_ping: Use util.datetime to generate timestamp in ad-hoc command response (instead of the current use of os.date, which doesn't take timezone into account).
Waqas Hussain <waqas20@gmail.com>
parents:
3486
diff
changeset
|
23 |
3486
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
24 function ping_command_handler (self, data, state) |
4129
c86b68abe12e
mod_ping: Use util.datetime to generate timestamp in ad-hoc command response (instead of the current use of os.date, which doesn't take timezone into account).
Waqas Hussain <waqas20@gmail.com>
parents:
3486
diff
changeset
|
25 local now = datetime(); |
3486
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
26 return { info = "Pong\n"..now, status = "completed" }; |
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
27 end |
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
28 |
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
29 local adhoc_new = module:require "adhoc".new; |
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
30 local descriptor = adhoc_new("Ping", "ping", ping_command_handler); |
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
31 module:add_item ("adhoc", descriptor); |
8a46bb70016f
mod_ping: Add ad-hoc command
Florian Zeitz <florob@babelmonkeys.de>
parents:
2923
diff
changeset
|
32 |