2023-11-02 16:28:33 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
"""
|
|
|
|
Abstract Chat JSON Feeder Importer Module
|
|
|
|
================
|
|
|
|
|
|
|
|
Process Feeder Json (example: Twitter feeder)
|
|
|
|
|
|
|
|
"""
|
|
|
|
import datetime
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2023-12-06 16:26:26 +01:00
|
|
|
from abc import ABC
|
2023-11-02 16:28:33 +01:00
|
|
|
|
|
|
|
sys.path.append(os.environ['AIL_BIN'])
|
|
|
|
##################################
|
|
|
|
# Import Project packages
|
|
|
|
##################################
|
|
|
|
from importer.feeders.Default import DefaultFeeder
|
|
|
|
from lib.objects.Chats import Chat
|
|
|
|
from lib.objects import ChatSubChannels
|
2023-11-29 16:28:25 +01:00
|
|
|
from lib.objects import ChatThreads
|
2023-11-15 14:12:50 +01:00
|
|
|
from lib.objects import Images
|
2023-11-02 16:28:33 +01:00
|
|
|
from lib.objects import Messages
|
2023-11-27 16:25:09 +01:00
|
|
|
from lib.objects import FilesNames
|
|
|
|
# from lib.objects import Files
|
2023-11-02 16:28:33 +01:00
|
|
|
from lib.objects import UsersAccount
|
|
|
|
from lib.objects.Usernames import Username
|
|
|
|
from lib import chats_viewer
|
|
|
|
|
|
|
|
import base64
|
|
|
|
import io
|
|
|
|
import gzip
|
|
|
|
|
|
|
|
# TODO remove compression ???
|
|
|
|
def _gunzip_bytes_obj(bytes_obj):
|
|
|
|
gunzipped_bytes_obj = None
|
|
|
|
try:
|
|
|
|
in_ = io.BytesIO()
|
|
|
|
in_.write(bytes_obj)
|
|
|
|
in_.seek(0)
|
|
|
|
|
|
|
|
with gzip.GzipFile(fileobj=in_, mode='rb') as fo:
|
|
|
|
gunzipped_bytes_obj = fo.read()
|
|
|
|
except Exception as e:
|
|
|
|
print(f'Global; Invalid Gzip file: {e}')
|
|
|
|
|
|
|
|
return gunzipped_bytes_obj
|
|
|
|
|
|
|
|
class AbstractChatFeeder(DefaultFeeder, ABC):
|
|
|
|
|
|
|
|
def __init__(self, name, json_data):
|
|
|
|
super().__init__(json_data)
|
|
|
|
self.obj = None
|
|
|
|
self.name = name
|
|
|
|
|
|
|
|
def get_chat_protocol(self): # TODO # # # # # # # # # # # # #
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
def get_chat_network(self):
|
|
|
|
self.json_data['meta'].get('network', None)
|
|
|
|
|
|
|
|
def get_chat_address(self):
|
|
|
|
self.json_data['meta'].get('address', None)
|
|
|
|
|
|
|
|
def get_chat_instance_uuid(self):
|
|
|
|
chat_instance_uuid = chats_viewer.create_chat_service_instance(self.get_chat_protocol(),
|
|
|
|
network=self.get_chat_network(),
|
|
|
|
address=self.get_chat_address())
|
|
|
|
# TODO SET
|
|
|
|
return chat_instance_uuid
|
|
|
|
|
|
|
|
def get_chat_id(self): # TODO RAISE ERROR IF NONE
|
|
|
|
return self.json_data['meta']['chat']['id']
|
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
def get_subchannel_id(self):
|
2023-11-29 16:28:25 +01:00
|
|
|
return self.json_data['meta']['chat'].get('subchannel', {}).get('id')
|
2023-11-02 16:28:33 +01:00
|
|
|
|
|
|
|
def get_subchannels(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def get_thread_id(self):
|
2023-11-29 16:28:25 +01:00
|
|
|
return self.json_data['meta'].get('thread', {}).get('id')
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2023-11-07 11:24:24 +01:00
|
|
|
def get_message_id(self):
|
|
|
|
return self.json_data['meta']['id']
|
|
|
|
|
2023-11-27 16:25:09 +01:00
|
|
|
def get_media_name(self):
|
|
|
|
return self.json_data['meta'].get('media', {}).get('name')
|
|
|
|
|
|
|
|
def get_reactions(self):
|
|
|
|
return self.json_data['meta'].get('reactions', [])
|
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
def get_message_timestamp(self):
|
2024-01-26 15:42:46 +01:00
|
|
|
if not self.json_data['meta'].get('date'):
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
return self.json_data['meta']['date']['timestamp']
|
2023-11-02 16:28:33 +01:00
|
|
|
# if self.json_data['meta'].get('date'):
|
|
|
|
# date = datetime.datetime.fromtimestamp( self.json_data['meta']['date']['timestamp'])
|
|
|
|
# date = date.strftime('%Y/%m/%d')
|
|
|
|
# else:
|
|
|
|
# date = datetime.date.today().strftime("%Y/%m/%d")
|
|
|
|
|
|
|
|
def get_message_date_timestamp(self):
|
|
|
|
timestamp = self.get_message_timestamp()
|
|
|
|
date = datetime.datetime.fromtimestamp(timestamp)
|
|
|
|
date = date.strftime('%Y%m%d')
|
|
|
|
return date, timestamp
|
|
|
|
|
|
|
|
def get_message_sender_id(self):
|
|
|
|
return self.json_data['meta']['sender']['id']
|
|
|
|
|
|
|
|
def get_message_reply(self):
|
|
|
|
return self.json_data['meta'].get('reply_to') # TODO change to reply ???
|
|
|
|
|
|
|
|
def get_message_reply_id(self):
|
2023-11-29 16:28:25 +01:00
|
|
|
return self.json_data['meta'].get('reply_to', {}).get('message_id')
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2024-01-26 15:42:46 +01:00
|
|
|
def get_message_forward(self):
|
|
|
|
return self.json_data['meta'].get('forward')
|
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
def get_message_content(self):
|
|
|
|
decoded = base64.standard_b64decode(self.json_data['data'])
|
|
|
|
return _gunzip_bytes_obj(decoded)
|
|
|
|
|
2024-01-26 15:42:46 +01:00
|
|
|
def get_obj(self):
|
2023-11-02 16:28:33 +01:00
|
|
|
#### TIMESTAMP ####
|
|
|
|
timestamp = self.get_message_timestamp()
|
|
|
|
|
|
|
|
#### Create Object ID ####
|
2023-11-15 14:12:50 +01:00
|
|
|
chat_id = self.get_chat_id()
|
2024-01-26 15:42:46 +01:00
|
|
|
try:
|
|
|
|
message_id = self.get_message_id()
|
|
|
|
except KeyError:
|
|
|
|
if chat_id:
|
|
|
|
self.obj = Chat(chat_id, self.get_chat_instance_uuid())
|
|
|
|
return self.obj
|
|
|
|
else:
|
|
|
|
self.obj = None
|
|
|
|
return None
|
|
|
|
|
2023-11-29 16:28:25 +01:00
|
|
|
thread_id = self.get_thread_id()
|
2023-11-02 16:28:33 +01:00
|
|
|
# channel id
|
|
|
|
# thread id
|
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
# TODO sanitize obj type
|
|
|
|
obj_type = self.get_obj_type()
|
|
|
|
|
|
|
|
if obj_type == 'image':
|
|
|
|
self.obj = Images.Image(self.json_data['data-sha256'])
|
|
|
|
|
|
|
|
else:
|
2023-11-29 16:28:25 +01:00
|
|
|
obj_id = Messages.create_obj_id(self.get_chat_instance_uuid(), chat_id, message_id, timestamp, thread_id=thread_id)
|
2023-11-15 14:12:50 +01:00
|
|
|
self.obj = Messages.Message(obj_id)
|
2023-11-02 16:28:33 +01:00
|
|
|
return self.obj
|
|
|
|
|
2023-11-29 16:28:25 +01:00
|
|
|
def process_chat(self, new_objs, obj, date, timestamp, reply_id=None):
|
2023-11-15 14:12:50 +01:00
|
|
|
meta = self.json_data['meta']['chat'] # todo replace me by function
|
2023-11-02 16:28:33 +01:00
|
|
|
chat = Chat(self.get_chat_id(), self.get_chat_instance_uuid())
|
2023-12-06 16:26:26 +01:00
|
|
|
subchannel = None
|
|
|
|
thread = None
|
2023-11-15 14:12:50 +01:00
|
|
|
|
|
|
|
# date stat + correlation
|
|
|
|
chat.add(date, obj)
|
2023-11-02 16:28:33 +01:00
|
|
|
|
|
|
|
if meta.get('name'):
|
|
|
|
chat.set_name(meta['name'])
|
|
|
|
|
2023-11-06 16:38:31 +01:00
|
|
|
if meta.get('info'):
|
|
|
|
chat.set_info(meta['info'])
|
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
if meta.get('date'): # TODO check if already exists
|
|
|
|
chat.set_created_at(int(meta['date']['timestamp']))
|
|
|
|
|
2023-11-24 15:05:19 +01:00
|
|
|
if meta.get('icon'):
|
|
|
|
img = Images.create(meta['icon'], b64=True)
|
|
|
|
img.add(date, chat)
|
|
|
|
chat.set_icon(img.get_global_id())
|
|
|
|
new_objs.add(img)
|
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
if meta.get('username'):
|
|
|
|
username = Username(meta['username'], self.get_chat_protocol())
|
|
|
|
chat.update_username_timeline(username.get_global_id(), timestamp)
|
|
|
|
|
|
|
|
if meta.get('subchannel'):
|
2023-12-06 16:26:26 +01:00
|
|
|
subchannel, thread = self.process_subchannel(obj, date, timestamp, reply_id=reply_id)
|
2023-11-02 16:28:33 +01:00
|
|
|
chat.add_children(obj_global_id=subchannel.get_global_id())
|
|
|
|
else:
|
2023-11-15 14:12:50 +01:00
|
|
|
if obj.type == 'message':
|
2023-11-29 16:28:25 +01:00
|
|
|
if self.get_thread_id():
|
2023-12-06 16:26:26 +01:00
|
|
|
thread = self.process_thread(obj, chat, date, timestamp, reply_id=reply_id)
|
2023-11-29 16:28:25 +01:00
|
|
|
else:
|
|
|
|
chat.add_message(obj.get_global_id(), self.get_message_id(), timestamp, reply_id=reply_id)
|
2023-11-15 14:12:50 +01:00
|
|
|
|
2023-12-06 16:26:26 +01:00
|
|
|
chats_obj = [chat]
|
|
|
|
if subchannel:
|
|
|
|
chats_obj.append(subchannel)
|
|
|
|
if thread:
|
|
|
|
chats_obj.append(thread)
|
|
|
|
return chats_obj
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
def process_subchannel(self, obj, date, timestamp, reply_id=None): # TODO CREATE DATE
|
2023-11-02 16:28:33 +01:00
|
|
|
meta = self.json_data['meta']['chat']['subchannel']
|
|
|
|
subchannel = ChatSubChannels.ChatSubChannel(f'{self.get_chat_id()}/{meta["id"]}', self.get_chat_instance_uuid())
|
2023-12-06 16:26:26 +01:00
|
|
|
thread = None
|
2023-11-15 14:12:50 +01:00
|
|
|
|
2024-03-25 16:36:24 +01:00
|
|
|
subchannel.add(date, obj)
|
2023-11-02 16:28:33 +01:00
|
|
|
|
|
|
|
if meta.get('date'): # TODO check if already exists
|
|
|
|
subchannel.set_created_at(int(meta['date']['timestamp']))
|
|
|
|
|
|
|
|
if meta.get('name'):
|
|
|
|
subchannel.set_name(meta['name'])
|
|
|
|
# subchannel.update_name(meta['name'], timestamp) # TODO #################
|
|
|
|
|
2023-11-06 16:38:31 +01:00
|
|
|
if meta.get('info'):
|
|
|
|
subchannel.set_info(meta['info'])
|
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
if obj.type == 'message':
|
2023-11-29 16:28:25 +01:00
|
|
|
if self.get_thread_id():
|
2023-12-06 16:26:26 +01:00
|
|
|
thread = self.process_thread(obj, subchannel, date, timestamp, reply_id=reply_id)
|
2023-11-29 16:28:25 +01:00
|
|
|
else:
|
|
|
|
subchannel.add_message(obj.get_global_id(), self.get_message_id(), timestamp, reply_id=reply_id)
|
2023-12-06 16:26:26 +01:00
|
|
|
return subchannel, thread
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2023-11-29 16:28:25 +01:00
|
|
|
def process_thread(self, obj, obj_chat, date, timestamp, reply_id=None):
|
|
|
|
meta = self.json_data['meta']['thread']
|
|
|
|
thread_id = self.get_thread_id()
|
|
|
|
p_chat_id = meta['parent'].get('chat')
|
|
|
|
p_subchannel_id = meta['parent'].get('subchannel')
|
|
|
|
p_message_id = meta['parent'].get('message')
|
|
|
|
|
2023-12-04 10:26:02 +01:00
|
|
|
# print(thread_id, p_chat_id, p_subchannel_id, p_message_id)
|
|
|
|
|
2023-11-29 16:28:25 +01:00
|
|
|
if p_chat_id == self.get_chat_id() and p_subchannel_id == self.get_subchannel_id():
|
|
|
|
thread = ChatThreads.create(thread_id, self.get_chat_instance_uuid(), p_chat_id, p_subchannel_id, p_message_id, obj_chat)
|
|
|
|
thread.add(date, obj)
|
|
|
|
thread.add_message(obj.get_global_id(), self.get_message_id(), timestamp, reply_id=reply_id)
|
|
|
|
# TODO OTHERS CORRELATIONS TO ADD
|
|
|
|
|
2023-12-04 10:26:02 +01:00
|
|
|
if meta.get('name'):
|
|
|
|
thread.set_name(meta['name'])
|
|
|
|
|
2023-11-29 16:28:25 +01:00
|
|
|
return thread
|
|
|
|
|
|
|
|
# TODO
|
|
|
|
# else:
|
|
|
|
# # ADD NEW MESSAGE REF (used by discord)
|
|
|
|
|
2023-11-24 16:35:45 +01:00
|
|
|
def process_sender(self, new_objs, obj, date, timestamp):
|
2024-01-26 15:42:46 +01:00
|
|
|
meta = self.json_data['meta'].get('sender')
|
|
|
|
if not meta:
|
|
|
|
return None
|
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
user_account = UsersAccount.UserAccount(meta['id'], self.get_chat_instance_uuid())
|
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
# date stat + correlation
|
|
|
|
user_account.add(date, obj)
|
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
if meta.get('username'):
|
|
|
|
username = Username(meta['username'], self.get_chat_protocol())
|
|
|
|
# TODO timeline or/and correlation ????
|
|
|
|
user_account.add_correlation(username.type, username.get_subtype(r_str=True), username.id)
|
|
|
|
user_account.update_username_timeline(username.get_global_id(), timestamp)
|
|
|
|
|
|
|
|
# Username---Message
|
|
|
|
username.add(date) # TODO # correlation message ???
|
|
|
|
|
|
|
|
# ADDITIONAL METAS
|
|
|
|
if meta.get('firstname'):
|
|
|
|
user_account.set_first_name(meta['firstname'])
|
|
|
|
if meta.get('lastname'):
|
|
|
|
user_account.set_last_name(meta['lastname'])
|
|
|
|
if meta.get('phone'):
|
|
|
|
user_account.set_phone(meta['phone'])
|
|
|
|
|
2023-11-24 16:35:45 +01:00
|
|
|
if meta.get('icon'):
|
|
|
|
img = Images.create(meta['icon'], b64=True)
|
|
|
|
img.add(date, user_account)
|
|
|
|
user_account.set_icon(img.get_global_id())
|
|
|
|
new_objs.add(img)
|
|
|
|
|
2023-11-27 16:25:09 +01:00
|
|
|
if meta.get('info'):
|
|
|
|
user_account.set_info(meta['info'])
|
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
return user_account
|
|
|
|
|
|
|
|
def process_meta(self): # TODO CHECK MANDATORY FIELDS
|
|
|
|
"""
|
|
|
|
Process JSON meta filed.
|
|
|
|
"""
|
|
|
|
# meta = self.get_json_meta()
|
|
|
|
|
2023-11-15 15:45:25 +01:00
|
|
|
objs = set()
|
|
|
|
if self.obj:
|
|
|
|
objs.add(self.obj)
|
2023-11-24 15:05:19 +01:00
|
|
|
new_objs = set()
|
2023-11-15 15:45:25 +01:00
|
|
|
|
2023-11-02 16:28:33 +01:00
|
|
|
date, timestamp = self.get_message_date_timestamp()
|
|
|
|
|
|
|
|
# REPLY
|
|
|
|
reply_id = self.get_message_reply_id()
|
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
print(self.obj.type)
|
|
|
|
|
2023-11-27 16:25:09 +01:00
|
|
|
# TODO FILES + FILES REF
|
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
# get object by meta object type
|
|
|
|
if self.obj.type == 'message':
|
|
|
|
# Content
|
2024-01-26 15:42:46 +01:00
|
|
|
obj = Messages.create(self.obj.id, self.get_message_content())
|
2023-11-15 14:12:50 +01:00
|
|
|
|
2023-11-27 16:25:09 +01:00
|
|
|
# FILENAME
|
|
|
|
media_name = self.get_media_name()
|
|
|
|
if media_name:
|
|
|
|
print(media_name)
|
|
|
|
FilesNames.FilesNames().create(media_name, date, obj)
|
|
|
|
|
|
|
|
for reaction in self.get_reactions():
|
|
|
|
obj.add_reaction(reaction['reaction'], int(reaction['count']))
|
2024-01-26 15:42:46 +01:00
|
|
|
elif self.obj.type == 'chat':
|
|
|
|
pass
|
2023-11-15 14:12:50 +01:00
|
|
|
else:
|
|
|
|
chat_id = self.get_chat_id()
|
2023-12-04 10:26:02 +01:00
|
|
|
thread_id = self.get_thread_id()
|
|
|
|
channel_id = self.get_subchannel_id()
|
2023-11-15 14:12:50 +01:00
|
|
|
message_id = self.get_message_id()
|
2023-12-04 10:26:02 +01:00
|
|
|
message_id = Messages.create_obj_id(self.get_chat_instance_uuid(), chat_id, message_id, timestamp, channel_id=channel_id, thread_id=thread_id)
|
2023-11-15 14:12:50 +01:00
|
|
|
message = Messages.Message(message_id)
|
2023-12-06 16:26:26 +01:00
|
|
|
# create empty message if message don't exist
|
2023-11-15 15:45:25 +01:00
|
|
|
if not message.exists():
|
|
|
|
message.create('')
|
|
|
|
objs.add(message)
|
|
|
|
|
2024-01-02 17:15:45 +01:00
|
|
|
if message.exists(): # TODO Correlation user-account image/filename ????
|
2023-11-15 14:12:50 +01:00
|
|
|
obj = Images.create(self.get_message_content())
|
|
|
|
obj.add(date, message)
|
|
|
|
obj.set_parent(obj_global_id=message.get_global_id())
|
|
|
|
|
2023-11-27 16:25:09 +01:00
|
|
|
# FILENAME
|
|
|
|
media_name = self.get_media_name()
|
|
|
|
if media_name:
|
|
|
|
FilesNames.FilesNames().create(media_name, date, message, file_obj=obj)
|
|
|
|
|
2023-11-29 16:28:25 +01:00
|
|
|
for reaction in self.get_reactions():
|
|
|
|
message.add_reaction(reaction['reaction'], int(reaction['count']))
|
|
|
|
|
2023-11-16 14:50:03 +01:00
|
|
|
for obj in objs: # TODO PERF avoid parsing metas multiple times
|
2023-11-15 14:12:50 +01:00
|
|
|
|
2023-12-06 16:26:26 +01:00
|
|
|
# TODO get created subchannel + thread
|
|
|
|
# => create correlation user-account with object
|
|
|
|
|
2024-01-02 17:15:45 +01:00
|
|
|
print(obj.id)
|
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
# CHAT
|
2023-12-06 16:26:26 +01:00
|
|
|
chat_objs = self.process_chat(new_objs, obj, date, timestamp, reply_id=reply_id)
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2024-03-25 16:36:24 +01:00
|
|
|
# # TODO HANDLE OTHERS OBJECT TYPE
|
|
|
|
# # TODO MAKE IT GENERIC FOR OTHERS CHATS !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
# # Message forward + Discussion
|
|
|
|
# if self.get_json_meta().get('forward'):
|
|
|
|
# discussion_id = self.get_json_meta().get('discussion')
|
|
|
|
# forward_from = self.get_message_forward()
|
|
|
|
#
|
|
|
|
# if discussion_id: # TODO HANDLE FORWARDED MESSAGES FROM EXTERNAL CHANNELS
|
|
|
|
# chat_forward_id = forward_from['from']['id']
|
|
|
|
# message_forward_id = forward_from['from']['channel_post']
|
|
|
|
#
|
|
|
|
# # if chat_forward_id == discussion_id:
|
|
|
|
# # linked_chat = Chat(chat_forward_id, self.get_chat_instance_uuid())
|
|
|
|
# # if linked_chat.exists():
|
|
|
|
# # # create thread
|
|
|
|
# # # add message replies for each childrens
|
|
|
|
#
|
|
|
|
# # TODO HANDLE THREAD
|
|
|
|
# # TODO Change FORWARD META FIELDS
|
|
|
|
# # meta['forward'] = {}
|
|
|
|
# # # CHAT ID
|
|
|
|
# # # SUBCHANNEL ID -> can be None
|
|
|
|
# # # Message ID
|
|
|
|
#
|
|
|
|
# # meta['forward']['origin']
|
|
|
|
# # # same as 'forward'
|
|
|
|
#
|
|
|
|
# if self.get_json_meta().get('forward'):
|
|
|
|
# forward = self.get_message_forward()
|
|
|
|
# f_chat = forward['chat']
|
|
|
|
# f_subchannel = forward.get('subchannel')
|
|
|
|
# f_id = forward.get('id')
|
|
|
|
# if not f_subchannel:
|
|
|
|
# chat_forward = Chat(f_chat, self.get_chat_instance_uuid())
|
|
|
|
# if chat_forward.exists():
|
|
|
|
# for chat_obj in chat_objs:
|
|
|
|
# if chat_obj.type == 'chat':
|
|
|
|
# chat_forward.add_relationship(chat_obj.get_global_id(), 'forward')
|
|
|
|
# # TODO LIST FORWARDED MESSAGES
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# # Discord -> serverID + subchannel ID + message ID
|
|
|
|
# # Telegram -> chat ID + Message ID
|
|
|
|
# # + ORIGIN IDs
|
|
|
|
#
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# # TODO create relationships graph
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# # TODO REMOVE ME
|
|
|
|
# # Message forward # TODO handle subchannel + message ID
|
2024-01-26 15:42:46 +01:00
|
|
|
# if self.get_json_meta().get('forward'):
|
|
|
|
# forward_from = self.get_message_forward()
|
|
|
|
# print('-----------------------------------------------------------')
|
|
|
|
# print(forward_from)
|
|
|
|
# if forward_from:
|
|
|
|
# forward_from_type = forward_from['from']['type']
|
|
|
|
# if forward_from_type == 'channel' or forward_from_type == 'chat':
|
|
|
|
# chat_forward_id = forward_from['from']['id']
|
|
|
|
# chat_forward = Chat(chat_forward_id, self.get_chat_instance_uuid())
|
|
|
|
# if chat_forward.exists():
|
|
|
|
# for chat_obj in chat_objs:
|
|
|
|
# if chat_obj.type == 'chat':
|
|
|
|
# chat_forward.add_relationship(chat_obj.get_global_id(), 'forward')
|
|
|
|
# # chat_forward.add_relationship(obj.get_global_id(), 'forward')
|
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
# SENDER # TODO HANDLE NULL SENDER
|
2023-11-24 16:35:45 +01:00
|
|
|
user_account = self.process_sender(new_objs, obj, date, timestamp)
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2024-01-26 15:42:46 +01:00
|
|
|
if user_account:
|
2023-12-06 16:26:26 +01:00
|
|
|
# UserAccount---ChatObjects
|
2024-01-26 15:42:46 +01:00
|
|
|
for obj_chat in chat_objs:
|
|
|
|
user_account.add_correlation(obj_chat.type, obj_chat.get_subtype(r_str=True), obj_chat.id)
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
# if chat: # TODO Chat---Username correlation ???
|
|
|
|
# # Chat---Username => need to handle members and participants
|
|
|
|
# chat.add_correlation(username.type, username.get_subtype(r_str=True), username.id)
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2023-11-15 14:12:50 +01:00
|
|
|
# TODO Sender image -> correlation
|
|
|
|
# image
|
|
|
|
# -> subchannel ?
|
|
|
|
# -> thread id ?
|
2023-11-02 16:28:33 +01:00
|
|
|
|
2023-11-24 15:05:19 +01:00
|
|
|
return new_objs | objs
|