mirror of
https://github.com/Pardus-LiderAhenk/ahenk
synced 2024-11-10 05:22:15 +03:00
xmpp client features were implemented
This commit is contained in:
parent
49f638ddee
commit
12ae1bc696
2 changed files with 140 additions and 0 deletions
140
opt/ahenk/base/messaging/Messaging.py
Normal file
140
opt/ahenk/base/messaging/Messaging.py
Normal file
|
@ -0,0 +1,140 @@
|
|||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import configparser
|
||||
import logging
|
||||
import slixmpp
|
||||
from slixmpp.exceptions import IqError, IqTimeout
|
||||
|
||||
"""
|
||||
--fetch parameters of connection from conf file
|
||||
--connect xmpp
|
||||
--send direct message
|
||||
--receive direct message
|
||||
--send muc message
|
||||
--receive muc message
|
||||
--listen to muc invites
|
||||
--auto accept muc invites
|
||||
--send auto reply to muc messages
|
||||
--receive file (0065)
|
||||
--send file (0065)
|
||||
|
||||
"""
|
||||
|
||||
class Messaging(slixmpp.ClientXMPP):
|
||||
|
||||
def __init__(self):
|
||||
|
||||
# configuration reading
|
||||
conf = configparser.ConfigParser()
|
||||
conf._interpolation = configparser.ExtendedInterpolation()
|
||||
conf.read('conf.ini')
|
||||
logging.info('Configuration parameters were read')
|
||||
|
||||
#set parameters
|
||||
slixmpp.ClientXMPP.__init__(self, conf.get('Connection_Param', 'jid'), conf.get('Connection_Param', 'password'))
|
||||
self.nick = conf.get('Connection_Param', 'nick')
|
||||
self.receiver=conf.get('Receiver_Param','jid')
|
||||
self.sendfile=open(conf.get('Send_File_Param','path'), 'rb')
|
||||
self.receivefile=conf.get('Receive_File_Param', 'path')
|
||||
logging.info('Parameters were established')
|
||||
|
||||
self.add_event_handler("session_start", self.start)
|
||||
self.room=self.add_event_handler("groupchat_invite", self.invite_auto_accept)
|
||||
|
||||
self.add_listeners()
|
||||
#!!! you have to use modified slixmpp for file transfering
|
||||
#self.send_file()
|
||||
|
||||
def add_listeners(self):
|
||||
|
||||
self.add_event_handler("groupchat_message", self.recv_muc_message)
|
||||
self.add_event_handler("message", self.recv_direct_message)
|
||||
|
||||
#file_listeners
|
||||
#self.add_event_handler("socks5_connected", self.stream_opened)
|
||||
#self.add_event_handler("socks5_data", self.stream_data)
|
||||
#self.add_event_handler("socks5_closed", self.stream_closed)
|
||||
|
||||
logging.info('Listeners were added')
|
||||
|
||||
|
||||
def stream_opened(self, sid):
|
||||
logging.info('Stream opened. %s', sid)
|
||||
return open(self.receivefile, 'wb')
|
||||
|
||||
def stream_data(self, data):
|
||||
logging.info('Stream data.')
|
||||
self.file.write(data)
|
||||
|
||||
def stream_closed(self, exception):
|
||||
logging.info('Stream closed. %s', exception)
|
||||
self.file.close()
|
||||
#self.disconnect()
|
||||
|
||||
|
||||
def send_file(self):
|
||||
try:
|
||||
# Open the S5B stream in which to write to.
|
||||
proxy = yield from self['xep_0065'].handshake(self.receiver)
|
||||
|
||||
# Send the entire file.
|
||||
while True:
|
||||
data = self.file.read(1048576)
|
||||
if not data:
|
||||
break
|
||||
yield from proxy.write(data)
|
||||
# And finally close the stream.
|
||||
proxy.transport.write_eof()
|
||||
except (IqError, IqTimeout):
|
||||
print('File transfer errored')
|
||||
else:
|
||||
print('File transfer finished')
|
||||
finally:
|
||||
self.file.close()
|
||||
|
||||
|
||||
|
||||
def start(self, event):
|
||||
self.get_roster()
|
||||
self.send_presence()
|
||||
|
||||
|
||||
def invite_auto_accept(self, inv):
|
||||
|
||||
self.room=inv['from']
|
||||
print("(%s) invite is accepted" % str(self.room))
|
||||
self.plugin['xep_0045'].joinMUC(self.room,self.nick,wait=True)
|
||||
self.send_message(mto=self.room.bare,mbody="Hi all!",mtype='groupchat')
|
||||
return self.room
|
||||
|
||||
def recv_muc_message(self, msg):#auto reply
|
||||
|
||||
if msg['mucnick'] != self.nick:
|
||||
print("%s : %s" % (str(msg['from']),str(msg['body'])) )
|
||||
self.send_message(mto=msg['from'].bare,mbody="I got it, %s." % msg['mucnick'],mtype='groupchat')
|
||||
else:
|
||||
print("%s : %s" % (str(msg['mucnick']),str(msg['body'])))
|
||||
|
||||
def send_direct_message(self,msg):
|
||||
self.send_message(mto=self.receiver,mbody=msg,mtype='chat')
|
||||
|
||||
def recv_direct_message(self, msg):
|
||||
if msg['type'] in ('chat', 'normal'):
|
||||
print ("%s : %s" % (msg['from'], msg['body']))
|
||||
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
xmpp = Messaging()
|
||||
xmpp.register_plugin('xep_0030') # Service Discovery
|
||||
xmpp.register_plugin('xep_0045') # Multi-User Chat
|
||||
xmpp.register_plugin('xep_0199') # XMPP Ping
|
||||
xmpp.register_plugin('xep_0065') # SOCKS5 Bytestreams
|
||||
|
||||
logging.info('Plugins were registered: xep_0030,xep_0045,xep_0199,xep_0065')
|
||||
|
||||
# Connect to the XMPP server and start processing XMPP stanzas.
|
||||
xmpp.connect()
|
||||
xmpp.process()
|
0
opt/ahenk/base/messaging/__init__.py
Normal file
0
opt/ahenk/base/messaging/__init__.py
Normal file
Loading…
Reference in a new issue