examples/lm/mood.lua
author Myhailo Danylenko <isbear@ukrpost.net>
Mon, 21 Mar 2016 02:04:02 +0200
changeset 152 0cf6c938ac03
parent 68 742878c74b8e
permissions -rw-r--r--
api: Minor fix


-- USER MOOD (XEP-0107)

-- library

local pep = require 'lm.pep'

--

local F = { }

function F.publish ( conn, success, fail, mood, message )
	local item = { xmlns = 'http://jabber.org/protocol/mood' }
	if mood then
		item[mood] = { }
	end
	if message then
		item.text = { message }
	end
	pep.publish ( conn, 'http://jabber.org/protocol/mood', { mood = item }, success, fail )
end

return F

-- vim: se ts=4: --