2021-10-29 16:48:12 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
"""
|
|
|
|
The SYNC Module
|
|
|
|
================================
|
|
|
|
|
|
|
|
This module .
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
##################################
|
|
|
|
# Import External packages
|
|
|
|
##################################
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
sys.path.append(os.environ['AIL_BIN'])
|
|
|
|
##################################
|
|
|
|
# Import Project packages
|
|
|
|
##################################
|
|
|
|
from core import ail_2_ail
|
|
|
|
from modules.abstract_module import AbstractModule
|
2023-10-11 10:06:01 +00:00
|
|
|
from lib.objects.Items import Item
|
2021-10-29 16:48:12 +00:00
|
|
|
|
2021-11-30 17:08:48 +00:00
|
|
|
#### CONFIG ####
|
2023-03-31 12:53:20 +00:00
|
|
|
# config_loader = ConfigLoader()
|
|
|
|
#
|
|
|
|
# config_loader = None
|
2021-11-30 17:08:48 +00:00
|
|
|
#### ------ ####
|
2021-10-29 16:48:12 +00:00
|
|
|
|
|
|
|
class Sync_importer(AbstractModule):
|
|
|
|
"""
|
2023-03-31 12:53:20 +00:00
|
|
|
Sync_importer module for AIL framework
|
2021-10-29 16:48:12 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super(Sync_importer, self).__init__()
|
|
|
|
|
2023-03-31 12:53:20 +00:00
|
|
|
# Waiting time in seconds between to message processed
|
2021-10-29 16:48:12 +00:00
|
|
|
self.pending_seconds = 10
|
|
|
|
|
2023-03-31 12:53:20 +00:00
|
|
|
# self.dict_ail_sync_filters = ail_2_ail.get_all_sync_queue_dict()
|
|
|
|
# self.last_refresh = time.time()
|
2021-10-29 16:48:12 +00:00
|
|
|
|
|
|
|
# Send module state to logs
|
2023-05-12 13:29:53 +00:00
|
|
|
self.logger.info(f'Module {self.module_name} Launched')
|
2021-10-29 16:48:12 +00:00
|
|
|
|
|
|
|
def run(self):
|
|
|
|
while self.proceed:
|
|
|
|
### REFRESH DICT
|
|
|
|
# if self.last_refresh < ail_2_ail.get_last_updated_ail_instance():
|
|
|
|
# self.dict_ail_sync_filters = ail_2_ail.get_all_sync_queue_dict()
|
|
|
|
# self.last_refresh = time.time()
|
|
|
|
|
|
|
|
ail_stream = ail_2_ail.get_sync_importer_ail_stream()
|
|
|
|
if ail_stream:
|
|
|
|
ail_stream = json.loads(ail_stream)
|
|
|
|
self.compute(ail_stream)
|
|
|
|
|
|
|
|
else:
|
|
|
|
self.computeNone()
|
|
|
|
# Wait before next process
|
2023-05-12 13:29:53 +00:00
|
|
|
self.logger.debug(f"{self.module_name}, waiting for new message, Idling {self.pending_seconds}s")
|
2021-10-29 16:48:12 +00:00
|
|
|
time.sleep(self.pending_seconds)
|
|
|
|
|
|
|
|
def compute(self, ail_stream):
|
|
|
|
|
|
|
|
# # TODO: SANITYZE AIL STREAM
|
|
|
|
# # TODO: CHECK FILTER
|
|
|
|
|
|
|
|
# import Object
|
|
|
|
b64_gzip_content = ail_stream['payload']['raw']
|
|
|
|
|
|
|
|
# # TODO: create default id
|
2022-06-02 15:41:01 +00:00
|
|
|
item_id = ail_stream['meta']['ail:id']
|
2023-10-11 10:06:01 +00:00
|
|
|
item = Item(item_id)
|
2021-10-29 16:48:12 +00:00
|
|
|
|
2023-10-11 10:06:01 +00:00
|
|
|
message = f'sync {b64_gzip_content}'
|
|
|
|
print(item.id)
|
|
|
|
self.add_message_to_queue(obj=item, message=message, queue='Importers')
|
2021-10-29 16:48:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
module = Sync_importer()
|
|
|
|
module.run()
|