comparison src/plugins/plugin_xep_0334.py @ 1955:633b5c21aefd

backend, frontend: messages refactoring (huge commit, not finished): /!\ database schema has been modified, do a backup before updating message have been refactored, here are the main changes: - languages are now handled - all messages have an uid (internal to SàT) - message updating is anticipated - subject is now first class - new naming scheme is used newMessage => messageNew, getHistory => historyGet, sendMessage => messageSend - minimal compatibility refactoring in quick_frontend/Primitivus, better refactoring should follow - threads handling - delayed messages are saved into history - info messages may also be saved in history (e.g. to keep track of people joining/leaving a room) - duplicate messages should be avoided - historyGet return messages in right order, no need to sort again - plugins have been updated to follow new features, some of them need to be reworked (e.g. OTR) - XEP-0203 (Delayed Delivery) is now fully handled in core, the plugin just handle disco and creation of a delay element - /!\ jp and Libervia are currently broken, as some features of Primitivus It has been put in one huge commit to avoid breaking messaging between changes. This is the main part of message refactoring, other commits will follow to take profit of the new features/behaviour.
author Goffi <goffi@goffi.org>
date Tue, 24 May 2016 22:11:04 +0200
parents 2daf7b4c6756
children 628c1c95f442
comparison
equal deleted inserted replaced
1943:ccfe45302a5c 1955:633b5c21aefd
49 class XEP_0334(object): 49 class XEP_0334(object):
50 50
51 def __init__(self, host): 51 def __init__(self, host):
52 log.info(_("Message Processing Hints plugin initialization")) 52 log.info(_("Message Processing Hints plugin initialization"))
53 self.host = host 53 self.host = host
54 host.trigger.add("sendMessage", self.sendMessageTrigger) 54 host.trigger.add("messageSend", self.messageSendTrigger)
55 host.trigger.add("MessageReceived", self.messageReceivedTrigger) 55 host.trigger.add("MessageReceived", self.messageReceivedTrigger)
56 56
57 def getHandler(self, profile): 57 def getHandler(self, profile):
58 return XEP_0334_handler(self, profile) 58 return XEP_0334_handler(self, profile)
59 59
60 def sendMessageTrigger(self, mess_data, pre_xml_treatments, post_xml_treatments, profile): 60 def messageSendTrigger(self, client, mess_data, pre_xml_treatments, post_xml_treatments):
61 """Add the hints element to the message to be sent""" 61 """Add the hints element to the message to be sent"""
62 hints = [] 62 hints = []
63 for key in ('no-permanent-storage', 'no-storage', 'no-copy'): 63 for key in ('no-permanent-storage', 'no-storage', 'no-copy'):
64 if mess_data['extra'].get(key, None): 64 if mess_data['extra'].get(key, None):
65 hints.append(key) 65 hints.append(key)
76 76
77 if hints: 77 if hints:
78 post_xml_treatments.addCallback(treatment) 78 post_xml_treatments.addCallback(treatment)
79 return True 79 return True
80 80
81 def messageReceivedTrigger(self, message, post_treat, profile): 81 def messageReceivedTrigger(self, client, message, post_treat):
82 """Check for hints in the received message""" 82 """Check for hints in the received message"""
83 hints = [] 83 hints = []
84 for key in ('no-permanent-storage', 'no-storage'): 84 for key in ('no-permanent-storage', 'no-storage'):
85 try: 85 try:
86 message.elements(uri=NS_MPH, name=key).next() 86 message.elements(uri=NS_MPH, name=key).next()