Merge pull request #102 from madsmtm/user_adding_and_kicking

Added new functions and events. Also fixed sending messages to groups.
This commit is contained in:
Taehoon Kim
2017-02-07 16:59:43 +09:00
committed by GitHub

View File

@@ -348,7 +348,7 @@ class Client(object):
users.append(User(entry)) users.append(User(entry))
return users # have bug TypeError: __repr__ returned non-string (type bytes) return users # have bug TypeError: __repr__ returned non-string (type bytes)
def send(self, recipient_id, message=None, message_type='user', like=None, image_id=None): def send(self, recipient_id, message=None, message_type='user', like=None, image_id=None, add_user_ids=None):
"""Send a message with given thread id """Send a message with given thread id
:param recipient_id: the user id or thread id that you want to send a message to :param recipient_id: the user id or thread id that you want to send a message to
@@ -356,21 +356,14 @@ class Client(object):
:param message_type: determines if the recipient_id is for user or thread :param message_type: determines if the recipient_id is for user or thread
:param like: size of the like sticker you want to send :param like: size of the like sticker you want to send
:param image_id: id for the image to send, gotten from the UploadURL :param image_id: id for the image to send, gotten from the UploadURL
:param add_user_ids: a list of user ids to add to a chat
""" """
if message_type.lower() == 'group':
thread_id = recipient_id
user_id = None
else:
thread_id = None
user_id = recipient_id
messageAndOTID=generateOfflineThreadingID() messageAndOTID=generateOfflineThreadingID()
timestamp = now() timestamp = now()
date = datetime.now() date = datetime.now()
data = { data = {
'client': self.client, 'client': self.client,
'action_type' : 'ma-type:user-generated-message',
'author' : 'fbid:' + str(self.uid), 'author' : 'fbid:' + str(self.uid),
'timestamp' : timestamp, 'timestamp' : timestamp,
'timestamp_absolute' : 'Today', 'timestamp_absolute' : 'Today',
@@ -387,7 +380,6 @@ class Client(object):
'is_spoof_warning' : False, 'is_spoof_warning' : False,
'source' : 'source:chat:web', 'source' : 'source:chat:web',
'source_tags[0]' : 'source:chat', 'source_tags[0]' : 'source:chat',
'body' : message,
'html_body' : False, 'html_body' : False,
'ui_push_phase' : 'V3', 'ui_push_phase' : 'V3',
'status' : '0', 'status' : '0',
@@ -396,18 +388,26 @@ class Client(object):
'threading_id':generateMessageID(self.client_id), 'threading_id':generateMessageID(self.client_id),
'ephemeral_ttl_mode:': '0', 'ephemeral_ttl_mode:': '0',
'manual_retry_cnt' : '0', 'manual_retry_cnt' : '0',
'signatureID' : getSignatureID(), 'signatureID' : getSignatureID()
'has_attachment' : image_id != None,
'other_user_fbid' : user_id,
'thread_fbid': thread_id,
'specific_to_list[0]' : 'fbid:' + str(recipient_id),
'specific_to_list[1]' : 'fbid:' + str(self.uid),
} }
if message_type.lower() == 'group': if message_type.lower() == 'group':
data["thread_fbid"] = recipient_id data["thread_fbid"] = recipient_id
else: else:
data["other_user_fbid"] = recipient_id data["other_user_fbid"] = recipient_id
if add_user_ids:
data['action_type'] = 'ma-type:log-message'
# It's possible to add multiple users
for i, add_user_id in enumerate(add_user_ids):
data['log_message_data[added_participants][' + str(i) + ']'] = "fbid:" + str(add_user_id)
data['log_message_type'] = 'log:subscribe'
else:
data['action_type'] = 'ma-type:user-generated-message'
data['body'] = message
data['has_attachment'] = image_id != None
data['specific_to_list[0]'] = 'fbid:' + str(recipient_id)
data['specific_to_list[1]'] = 'fbid:' + str(self.uid)
if image_id: if image_id:
data['image_ids[0]'] = image_id data['image_ids[0]'] = image_id
@@ -698,17 +698,35 @@ class Client(object):
elif m['type'] in ['qprimer']: elif m['type'] in ['qprimer']:
self.on_qprimer(m.get('made')) self.on_qprimer(m.get('made'))
elif m['type'] in ['delta']: elif m['type'] in ['delta']:
if 'messageMetadata' in m['delta']: if 'leftParticipantFbId' in m['delta']:
user_id = m['delta']['leftParticipantFbId']
actor_id = m['delta']['messageMetadata']['actorFbId']
thread_id = m['delta']['messageMetadata']['threadKey']['threadFbId']
self.on_person_removed(user_id, actor_id, thread_id)
elif 'addedParticipants' in m['delta']:
user_ids = [x['userFbId'] for x in m['delta']['addedParticipants']]
actor_id = m['delta']['messageMetadata']['actorFbId']
thread_id = m['delta']['messageMetadata']['threadKey']['threadFbId']
self.on_people_added(user_ids, actor_id, thread_id)
elif 'messageMetadata' in m['delta']:
recipient_id = 0
thread_type = None
if 'threadKey' in m['delta']['messageMetadata']:
if 'threadFbId' in m['delta']['messageMetadata']['threadKey']:
recipient_id = m['delta']['messageMetadata']['threadKey']['threadFbId']
thread_type = 'group'
elif 'otherUserFbId' in m['delta']['messageMetadata']['threadKey']:
recipient_id = m['delta']['messageMetadata']['threadKey']['otherUserFbId']
thread_type = 'user'
mid = m['delta']['messageMetadata']['messageId'] mid = m['delta']['messageMetadata']['messageId']
message = m['delta'].get('body','') message = m['delta'].get('body','')
fbid = m['delta']['messageMetadata']['actorFbId'] fbid = m['delta']['messageMetadata']['actorFbId']
name = None self.on_message(mid, fbid, message, m, recipient_id, thread_type)
self.on_message(mid, fbid, name, message, m)
elif m['type'] in ['jewel_requests_add']: elif m['type'] in ['jewel_requests_add']:
from_id = m['from'] from_id = m['from']
self.on_friend_request(from_id) self.on_friend_request(from_id)
else: else:
log.debug("Unknwon type {}".format(m)) log.debug("Unknown type {}".format(m))
except Exception as e: except Exception as e:
# ex_type, ex, tb = sys.exc_info() # ex_type, ex, tb = sys.exc_info()
self.on_message_error(sys.exc_info(), m) self.on_message_error(sys.exc_info(), m)
@@ -766,6 +784,14 @@ class Client(object):
return r.ok return r.ok
def add_users_to_chat(self, threadID, userID):
"""Add user (userID) to group chat (threadID)
:param threadID: group chat id
:param userID: user id to add to chat
"""
return self.send(threadID, message_type='group', add_user_ids=[userID])
def changeThreadTitle(self, threadID, newTitle): def changeThreadTitle(self, threadID, newTitle):
"""Change title of a group conversation """Change title of a group conversation
@@ -813,6 +839,14 @@ class Client(object):
return r.ok return r.ok
def on_message(self, mid, author_id, message, metadata, recipient_id, thread_type):
'''
subclass Client and override this method to add custom behavior on event
This version of on_message recieves recipient_id and thread_type. For backwards compatability, this data is sent directly to the old on_message.
'''
self.on_message(mid, author_id, None, message, metadata)
def on_message(self, mid, author_id, author_name, message, metadata): def on_message(self, mid, author_id, author_name, message, metadata):
''' '''
@@ -827,7 +861,7 @@ class Client(object):
''' '''
subclass Client and override this method to add custom behavior on event subclass Client and override this method to add custom behavior on event
''' '''
print("friend request from %s"%from_id) log.info("friend request from %s"%from_id)
def on_typing(self, author_id): def on_typing(self, author_id):
@@ -844,6 +878,20 @@ class Client(object):
pass pass
def on_people_added(self, user_ids, actor_id, thread_id):
'''
subclass Client and override this method to add custom behavior on event
'''
log.info("User(s) {} was added to {} by {}".format(repr(user_ids), thread_id, actor_id))
def on_person_removed(self, user_id, actor_id, thread_id):
'''
subclass Client and override this method to add custom behavior on event
'''
log.info("User {} was removed from {} by {}".format(user_id, thread_id, actor_id))
def on_inbox(self, viewer, unseen, unread, other_unseen, other_unread, timestamp): def on_inbox(self, viewer, unseen, unread, other_unseen, other_unread, timestamp):
''' '''
subclass Client and override this method to add custom behavior on event subclass Client and override this method to add custom behavior on event