(20241224) File location test

This commit is contained in:
2024-12-24 14:29:35 +05:30
parent f58fbb0131
commit 9867582844
+18 -3
View File
@@ -10,6 +10,8 @@ import asyncio
import datetime
import requests
tg_alert = False
# Create a Socket.IO server instance
sio = socketio.AsyncServer(cors_allowed_origins = "*")
@@ -21,16 +23,27 @@ app = web.Application()
# Attach the Socket.IO server to the aiohttp application
sio.attach(app)
from utils_v2.system import files
from utils_v2.queue.async_kafka import ProducerKafka, ConsumerKafka, get_ssl_context
import os
# Define the test params:
TOPIC = "kft_file_upload"
BOOTSTRAP_SERVERS = "del.ditscentre.in:9092"
# SSL_CONTEXT = get_ssl_context(
# ca_file = "../../creds/kafka/cert_authority.pem",
# cert_file = "../../creds/kafka/fullchain.pem",
# key_file = "../../creds/kafka/privkey.pem"
# )
cwd = files.get_cwd()
parent_dir = files.get_parent_directory(cwd, 2)
print("PD:", parent_dir)
SSL_CONTEXT = get_ssl_context(
ca_file = "../../creds/kafka/cert_authority.pem",
cert_file = "../../creds/kafka/fullchain.pem",
key_file = "../../creds/kafka/privkey.pem"
ca_file = os.path.join(parent_dir, "creds", "kafka", "cert_authority.pem"),
cert_file = os.path.join(parent_dir, "creds", "kafka", "fullchain.pem"),
key_file = os.path.join(parent_dir, "creds", "kafka", "privkey.pem")
)
my_consumer = ConsumerKafka(
topic = TOPIC,
@@ -44,6 +57,7 @@ my_consumer = ConsumerKafka(
@sio.event
async def connect(sid, environ):
print(f"Client {sid} connected")
if tg_alert:
requests.post(
url = r"https://api.thecaoffice.com/converse/tech/alert/chat/backend",
json = {
@@ -60,6 +74,7 @@ async def connect(sid, environ):
@sio.event
async def disconnect(sid):
print(f"Client {sid} disconnected")
if tg_alert:
requests.post(
url = r"https://api.thecaoffice.com/converse/tech/alert/chat/backend",
json = {