Ejabberd hooks with twisted
Fabio Forno - - January 05, 2009Few days ago I’ve found on Launchpad an interesting project by Thomas Hervé, the twisted interface to OTP, which allows to connect to erlang nodes using Twisted Matrix. The idea is incredibily powerful because it allows to easily build mixed-distributed applications using both erlang and python/twisted where they are best. So I gave it a try with ejabberd which has hooks for adding callbacks to its internal components (i.e. it’s possible to intercept and modify packets). Unfortunately I’ve discovered that the present implementation of ejabberd hooks allows to connect only callbacks from the same node of ejabberd, i.e. as an extension module, but ejabberd folks have been incredibily quick in releasing a patch which allows distributed hooks, by adding the “CallNode” atom as parameter. The patch may be not stable yet, but it works perfectly with the last release of ejabberd (2.0.2), and here is an example of a twisted node which intercepts and logs all packets sent and received by any user (here is the full code, change the node names accordingly to your setup).
It works very simply. The hooks are written as methods of a regular python class with the “remote_” prefix:
class UserMonitor(object):
def remote_receive_packet(self, jid, frm, to, packet):
print ">>", to_domish(packet).toXml()
def remote_send_packet(self, frm, to, packet):
print "<<", to_domish(packet).toXml()
which is published by using a PersistentPortMapper:
nodeName = buildNodeName("uccaro@olindo.bluendo.priv")
epmd = PersistentPortMapperFactory(nodeName, cookie, "olindo.bluendo.priv")
epmd.publish(proxy = UserMonitor()) After this it’s possible to call the methods proxy:receive_packtes and proxy:send_packet from any erlang node.
Then we register with ejabberd using a second node which calls the register methods, using the ejabberd api:
@defer.inlineCallbacksdef register_hook(epmd):
# connect to the ejabberd node
inst = yield epmd.connectToNode(“ejabberd”)
# register hooks
r = yield inst.factory.callRemote(
inst,
“ejabberd_hooks”,
“add_dist”,
Atom(“user_receive_packet”), # hook name
“olindo.bluendo.priv”, # virtual host
Atom(“uccaro@olindo.bluendo.priv”), # hook node
Atom(“proxy”), # hook module
Atom(“receive_packet”), # hook method
10
)
And bingo, after this ejabberd happily starts calling our hooks!
As bonus in the code you find also a function which translates from the ejabberd xml representation to twisted domish nodes, which is far more usable.
Categories: Blogs Fabio Forno
Comments
No comments so far, you could be the first.Add comment
Erlang on Twitter
» jkvor (Jacob Vorreuter): Erlang target systems and release handling http://jkvor.com/release-handling
» REDDITSPAMMOR (REDDITSPAMMOR): #reddit Joe Armstrong, the father of Erlang, finally publishes his library of Erlang code!: submitted by p… http://bit.ly/bfBhWR
#rulez
» rmdrimmie (Rob Drimmie): @JamieBeach And by wide variety I mean different syntaxes, conventions. Not c, c++ and obj-c, but c, ruby, lisp or php, python, erlang, etc.
» monadic (alexis richardson): @roidrage and at erlang factory ...
» tm_interesting (Thomas Buck): How Much Has Scala Influenced Erlang? http://functional-orbitz.blogspot.com/2010/03/how-much-has-scala-affected-erlang.html
» YCHackerNews (YC Hacker News): How Much Has Scala Influenced Erlang?: http: Comments: http:
» kicauan (kicauan): How Much Has Scala Influenced Erlang? - http://su.pr/81fsWx
» hntweets (Hacker News): How Much Has Scala Influenced Erlang?: http://bit.ly/9tE1uy Comments: http://bit.ly/darEqv
» hkrnws (hkrnws): How Much Has Scala Influenced Erlang? http://bit.ly/aiEnK5
» darachennis (darachennis): joearms elib1 - get it on github now #erlang
Statistics
Number of aggregated posts: 9911
Number of comments: 380
Most recent article: March 11, 2010
Latest comments
» Jens on Eleven Years of Erlang: Hi, The link to how you started with Erlang is broken. Regards, Jens
» Jeff Martens on It Made Sense in 1978: I agree that word size is machine specific, but it becomes language-specific once it’s in a language definition. In Java an …
» Adley on XP Day Suisse 2009: What a great post. What an inspiration for everyone who is asking ‘Where is all this stuff I’ve asked for?’ and …