forked from sch/Slixfeed
6c16fa4af1
Assign handlers to "self". Towards better handling of subscription and unsubscription. Minor fixes.
31 lines
793 B
Python
31 lines
793 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
NOTE
|
|
|
|
Accept symbols 🉑️ 👍️ ✍
|
|
|
|
TODO
|
|
|
|
Remove subscription from JID that do not (stopped) share presence.
|
|
|
|
"""
|
|
|
|
class XmppPresence:
|
|
|
|
|
|
def send(self, jid, status_message, presence_type=None, status_type=None):
|
|
self.send_presence(pto=jid,
|
|
pfrom=self.boundjid.bare,
|
|
pshow=status_type,
|
|
pstatus=status_message,
|
|
ptype=presence_type)
|
|
|
|
|
|
def subscription(self, jid, presence_type):
|
|
self.send_presence_subscription(pto=jid,
|
|
pfrom=self.boundjid.bare,
|
|
ptype=presence_type,
|
|
pnick=self.alias)
|