libretificacaotjcore 0.1.27__py3-none-any.whl → 0.1.29__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of libretificacaotjcore might be problematic. Click here for more details.
- libretificacaotjcore/services/rabbitmq_publisher.py +26 -23
- libretificacaotjcore/services/request_servico_api.py +15 -0
- {libretificacaotjcore-0.1.27.dist-info → libretificacaotjcore-0.1.29.dist-info}/METADATA +3 -1
- {libretificacaotjcore-0.1.27.dist-info → libretificacaotjcore-0.1.29.dist-info}/RECORD +6 -5
- {libretificacaotjcore-0.1.27.dist-info → libretificacaotjcore-0.1.29.dist-info}/WHEEL +0 -0
- {libretificacaotjcore-0.1.27.dist-info → libretificacaotjcore-0.1.29.dist-info}/top_level.txt +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import
|
|
1
|
+
import aio_pika
|
|
2
2
|
import json
|
|
3
|
+
from aio_pika.abc import AbstractRobustConnection, AbstractChannel, AbstractQueue
|
|
3
4
|
|
|
4
5
|
class RabbitMQPublisher:
|
|
5
6
|
def __init__(
|
|
@@ -15,39 +16,41 @@ class RabbitMQPublisher:
|
|
|
15
16
|
self.username = username
|
|
16
17
|
self.password = password
|
|
17
18
|
self.vhost = vhost
|
|
18
|
-
self.connection = None
|
|
19
|
-
self.channel = None
|
|
20
|
-
self.connect()
|
|
21
19
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
20
|
+
self.connection: AbstractRobustConnection | None = None
|
|
21
|
+
self.channel: AbstractChannel | None = None
|
|
22
|
+
self.queue_obj: AbstractQueue | None = None
|
|
23
|
+
|
|
24
|
+
async def connect(self):
|
|
25
|
+
self.connection = await aio_pika.connect_robust(
|
|
25
26
|
host=self.host,
|
|
26
|
-
|
|
27
|
-
|
|
27
|
+
login=self.username,
|
|
28
|
+
password=self.password,
|
|
29
|
+
virtualhost=self.vhost,
|
|
28
30
|
heartbeat=60,
|
|
29
|
-
blocked_connection_timeout=300,
|
|
30
31
|
)
|
|
31
32
|
|
|
32
|
-
|
|
33
|
-
self.channel = self.connection.channel()
|
|
34
|
-
|
|
33
|
+
|
|
34
|
+
self.channel = await self.connection.channel()
|
|
35
|
+
# garante que mensagens não são perdidas
|
|
36
|
+
self.queue_obj = await self.channel.declare_queue(
|
|
37
|
+
self.queue, durable=True
|
|
38
|
+
)
|
|
35
39
|
|
|
36
|
-
def publish(self, message: dict):
|
|
40
|
+
async def publish(self, message: dict):
|
|
37
41
|
if not self.channel:
|
|
38
42
|
raise RuntimeError("❌ Canal RabbitMQ não conectado. Chame connect() antes.")
|
|
39
43
|
|
|
40
|
-
body = json.dumps(message)
|
|
41
|
-
self.channel.
|
|
42
|
-
|
|
44
|
+
body = json.dumps(message).encode("utf-8")
|
|
45
|
+
await self.channel.default_exchange.publish(
|
|
46
|
+
aio_pika.Message(
|
|
47
|
+
body=body,
|
|
48
|
+
delivery_mode=aio_pika.DeliveryMode.PERSISTENT, # torna a msg persistente
|
|
49
|
+
),
|
|
43
50
|
routing_key=self.queue,
|
|
44
|
-
body=body,
|
|
45
|
-
properties=pika.BasicProperties(
|
|
46
|
-
delivery_mode=2 # torna a mensagem persistente
|
|
47
|
-
)
|
|
48
51
|
)
|
|
49
52
|
print(f"✅ Mensagem publicada na fila '{self.queue}': {message}")
|
|
50
53
|
|
|
51
|
-
def close(self):
|
|
54
|
+
async def close(self):
|
|
52
55
|
if self.connection:
|
|
53
|
-
self.connection.close()
|
|
56
|
+
await self.connection.close()
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import httpx
|
|
2
|
+
|
|
3
|
+
class RequestServicoApi:
|
|
4
|
+
def __init__(self, url, token):
|
|
5
|
+
self.url = url
|
|
6
|
+
self.token = token
|
|
7
|
+
|
|
8
|
+
async def handler(self, *, mensagem_atualizacao: dict):
|
|
9
|
+
async with httpx.AsyncClient() as client:
|
|
10
|
+
response = await client.post(self.url, headers={"Authorization": f"Bearer {self.token}"}, json=mensagem_atualizacao)
|
|
11
|
+
|
|
12
|
+
if response.status_code != 200:
|
|
13
|
+
raise Exception(f"Erro ao fazer request ao servico de API: {response.status_code}")
|
|
14
|
+
|
|
15
|
+
return response.json()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: libretificacaotjcore
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.29
|
|
4
4
|
Summary: Biblioteca para centralizar conexao com filas no rabbit e banco de dados no mongodb para os servicos de retificacao da TJ
|
|
5
5
|
Author-email: Jhonatan Azevedo <dev.azevedo@outlook.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/seu-usuario/libretificacaotjcore
|
|
@@ -21,9 +21,11 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
21
21
|
Classifier: Operating System :: OS Independent
|
|
22
22
|
Requires-Python: >=3.12
|
|
23
23
|
Description-Content-Type: text/markdown
|
|
24
|
+
Requires-Dist: aio-pika>=9.5.7
|
|
24
25
|
Requires-Dist: aiofiles>=24.1.0
|
|
25
26
|
Requires-Dist: boto3>=1.39.16
|
|
26
27
|
Requires-Dist: cryptography>=45.0.6
|
|
28
|
+
Requires-Dist: httpx>=0.28.1
|
|
27
29
|
Requires-Dist: motor>=3.7.1
|
|
28
30
|
Requires-Dist: pika>=1.3.2
|
|
29
31
|
Requires-Dist: py7zr>=1.0.0
|
|
@@ -13,9 +13,10 @@ libretificacaotjcore/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
13
13
|
libretificacaotjcore/services/crypto_pass_service.py,sha256=9D0vyjan6f_8AfNxGkLpGdvyMpojsJq_AAySpv_zKMc,740
|
|
14
14
|
libretificacaotjcore/services/file_service.py,sha256=14CJokBbrsryQGmL0_unH2QKZpnteEAfxf5CPFdv6cE,2075
|
|
15
15
|
libretificacaotjcore/services/rabbitmq_consumer.py,sha256=XPbOvFR3HySfA1IROLPrsb4AmeHeq1Unthxt44vaqik,1760
|
|
16
|
-
libretificacaotjcore/services/rabbitmq_publisher.py,sha256=
|
|
16
|
+
libretificacaotjcore/services/rabbitmq_publisher.py,sha256=xsb9LmIuZizzq5lxnEEZKMK3U952KSQ2oqlTBZi2Lt8,1787
|
|
17
|
+
libretificacaotjcore/services/request_servico_api.py,sha256=eHYRubk2DptKhSOw3HEunCNfiDtvDHsUyo00UW7AGOA,571
|
|
17
18
|
libretificacaotjcore/services/s3_service.py,sha256=HKR_jt2H3XdV1PCzo5R5bnhmoQ3I46Yn5IqAvVPhsjs,2946
|
|
18
|
-
libretificacaotjcore-0.1.
|
|
19
|
-
libretificacaotjcore-0.1.
|
|
20
|
-
libretificacaotjcore-0.1.
|
|
21
|
-
libretificacaotjcore-0.1.
|
|
19
|
+
libretificacaotjcore-0.1.29.dist-info/METADATA,sha256=r4r2FNQZGW-r1OitA08JVIWPeFv_ztAqxEgL6nfnsMo,2564
|
|
20
|
+
libretificacaotjcore-0.1.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
21
|
+
libretificacaotjcore-0.1.29.dist-info/top_level.txt,sha256=J9vnz_X9OUnxC-eXHiAzlc9xIrWBwZ5bgnIDQIIFY4c,21
|
|
22
|
+
libretificacaotjcore-0.1.29.dist-info/RECORD,,
|
|
File without changes
|
{libretificacaotjcore-0.1.27.dist-info → libretificacaotjcore-0.1.29.dist-info}/top_level.txt
RENAMED
|
File without changes
|