plugins/mod_disco.lua
author Matthew Wild <mwild1@gmail.com>
Fri, 30 Jan 2009 17:40:25 +0000
changeset 759 5cccfb5da6cb
parent 758 b1885732e979
child 760 90ce865eebd8
permissions -rw-r--r--
0.2->0.3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
759
5cccfb5da6cb 0.2->0.3
Matthew Wild <mwild1@gmail.com>
parents: 758
diff changeset
     1
-- Prosody IM v0.3
519
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 438
diff changeset
     2
-- Copyright (C) 2008 Matthew Wild
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 438
diff changeset
     3
-- Copyright (C) 2008 Waqas Hussain
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 438
diff changeset
     4
-- 
758
b1885732e979 GPL->MIT!
Matthew Wild <mwild1@gmail.com>
parents: 615
diff changeset
     5
-- This project is MIT/X11 licensed. Please see the
b1885732e979 GPL->MIT!
Matthew Wild <mwild1@gmail.com>
parents: 615
diff changeset
     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
cccd610a0ef9 Insert copyright/license headers
Matthew Wild <mwild1@gmail.com>
parents: 438
diff changeset
     9
389
c747d6963d95 Added mod_disco
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
    10
c747d6963d95 Added mod_disco
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
    11
local discomanager_handle = require "core.discomanager".handle;
c747d6963d95 Added mod_disco
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
    12
541
3521e0851c9e Change modules to use the new add_feature module API method.
Waqas Hussain <waqas20@gmail.com>
parents: 519
diff changeset
    13
module:add_feature("http://jabber.org/protocol/disco#info");
3521e0851c9e Change modules to use the new add_feature module API method.
Waqas Hussain <waqas20@gmail.com>
parents: 519
diff changeset
    14
module:add_feature("http://jabber.org/protocol/disco#items");
421
63be85693710 Modules now sending disco replies
Waqas Hussain <waqas20@gmail.com>
parents: 389
diff changeset
    15
438
193f9dd64f17 Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
Matthew Wild <mwild1@gmail.com>
parents: 421
diff changeset
    16
module:add_iq_handler({"c2s", "s2sin"}, "http://jabber.org/protocol/disco#info", function (session, stanza)
389
c747d6963d95 Added mod_disco
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
    17
	session.send(discomanager_handle(stanza));
c747d6963d95 Added mod_disco
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
    18
end);
438
193f9dd64f17 Bumper commit for the new modulemanager API \o/ Updates all the modules, though some more changes may be in store.
Matthew Wild <mwild1@gmail.com>
parents: 421
diff changeset
    19
module:add_iq_handler({"c2s", "s2sin"}, "http://jabber.org/protocol/disco#items", function (session, stanza)
389
c747d6963d95 Added mod_disco
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
    20
	session.send(discomanager_handle(stanza));
c747d6963d95 Added mod_disco
Waqas Hussain <waqas20@gmail.com>
parents:
diff changeset
    21
end);