worker-automate-hub 0.5.5__py3-none-any.whl → 0.5.7__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- worker_automate_hub/api/client.py +25 -1
- worker_automate_hub/tasks/jobs/conexao_rdp.py +5 -1
- {worker_automate_hub-0.5.5.dist-info → worker_automate_hub-0.5.7.dist-info}/METADATA +1 -1
- {worker_automate_hub-0.5.5.dist-info → worker_automate_hub-0.5.7.dist-info}/RECORD +6 -6
- {worker_automate_hub-0.5.5.dist-info → worker_automate_hub-0.5.7.dist-info}/WHEEL +0 -0
- {worker_automate_hub-0.5.5.dist-info → worker_automate_hub-0.5.7.dist-info}/entry_points.txt +0 -0
@@ -491,4 +491,28 @@ async def send_file(uuidRelacao: str, desArquivo: str, tipo: str, file: bytes, f
|
|
491
491
|
except Exception as e:
|
492
492
|
err_msg = f"Erro ao enviar arquivo: {str(e)}"
|
493
493
|
console.print(f"\n{err_msg}\n", style="bold red")
|
494
|
-
logger.error(err_msg)
|
494
|
+
logger.error(err_msg)
|
495
|
+
|
496
|
+
|
497
|
+
async def change_robot_status_true(uuid_robo: str):
|
498
|
+
env_config, _ = load_env_config()
|
499
|
+
try:
|
500
|
+
headers_basic = {"Authorization": f"Basic {env_config["API_AUTHORIZATION"]}"}
|
501
|
+
|
502
|
+
async with aiohttp.ClientSession(connector=aiohttp.TCPConnector(verify_ssl=True)) as session:
|
503
|
+
async with session.get(
|
504
|
+
f"{env_config["API_BASE_URL"]}/automate-hub/robo/enable-robot/{uuid_robo}",
|
505
|
+
headers=headers_basic,
|
506
|
+
) as response:
|
507
|
+
if response.status == 200:
|
508
|
+
console.print("Robo alterado com sucesso!", style="bold green")
|
509
|
+
else:
|
510
|
+
raise Exception(f"{response.status} - {response.text}")
|
511
|
+
except Exception as e:
|
512
|
+
err_msg = f"Erro ao obter nova tarefa: {e}"
|
513
|
+
logger.error(err_msg)
|
514
|
+
console.print(
|
515
|
+
f"{err_msg}\n",
|
516
|
+
style="bold red",
|
517
|
+
)
|
518
|
+
return None
|
@@ -8,6 +8,7 @@ import pygetwindow as gw
|
|
8
8
|
from rich.console import Console
|
9
9
|
import pygetwindow as gw
|
10
10
|
from pywinauto import Application
|
11
|
+
from worker_automate_hub.api.client import change_robot_status_true
|
11
12
|
from worker_automate_hub.models.dto.rpa_historico_request_dto import RpaHistoricoStatusEnum, RpaRetornoProcessoDTO
|
12
13
|
from worker_automate_hub.models.dto.rpa_processo_rdp_dto import RpaProcessoRdpDTO
|
13
14
|
from worker_automate_hub.utils.logger import logger
|
@@ -206,7 +207,10 @@ async def conexao_rdp(task: RpaProcessoRdpDTO) -> RpaRetornoProcessoDTO:
|
|
206
207
|
console.print("Processo de conexão RDP executado com sucesso.")
|
207
208
|
|
208
209
|
await rdp.clicar_no_titulo()
|
209
|
-
|
210
|
+
|
211
|
+
#Altera coluna ativo para true or false
|
212
|
+
await change_robot_status_true(rdp.uuid_robo)
|
213
|
+
|
210
214
|
return RpaRetornoProcessoDTO(
|
211
215
|
sucesso=True,
|
212
216
|
retorno="Conexão RDP estabelecida com sucesso.",
|
@@ -1,7 +1,7 @@
|
|
1
1
|
worker_automate_hub/__init__.py,sha256=LV28uQvBfpPIqudGIMJmVB8E941MjXHcu8DMoX5n8AM,25
|
2
2
|
worker_automate_hub/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
worker_automate_hub/api/ahead_service.py,sha256=0tX-i1ACRg3_yOI-_AfFEZ6FNU3L8Zb316n3QUkSwL0,2027
|
4
|
-
worker_automate_hub/api/client.py,sha256=
|
4
|
+
worker_automate_hub/api/client.py,sha256=zJK-0nBf4ztZAD0njbgYEWZV3w4u8W-6wfNLz8vsuQU,19736
|
5
5
|
worker_automate_hub/api/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
worker_automate_hub/api/helpers/api_helpers.py,sha256=SkheO2fXexeh-a4shr8Qzsz_kZhuSG0DJ7kbODctRbM,3696
|
7
7
|
worker_automate_hub/api/rpa_fila_service.py,sha256=K_8EL5P6Y_CHs-f9ZGTsuUUjMd2fu4wN4NieHvMijKs,2100
|
@@ -32,7 +32,7 @@ worker_automate_hub/models/dto/rpa_sistema_dto.py,sha256=sLkmJei8x6sl-1-IXUKDmYQ
|
|
32
32
|
worker_automate_hub/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
33
33
|
worker_automate_hub/tasks/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
34
|
worker_automate_hub/tasks/jobs/coleta_dje_process.py,sha256=rf4fW-FaHUl1MS7b03z4cwI3zHfNw8FWxvjvNY3Xn20,28773
|
35
|
-
worker_automate_hub/tasks/jobs/conexao_rdp.py,sha256=
|
35
|
+
worker_automate_hub/tasks/jobs/conexao_rdp.py,sha256=l0lF8v1xMQSHX3506TFQJd5eZX2dLEo2jDzZG8jyeDc,9421
|
36
36
|
worker_automate_hub/tasks/jobs/descartes.py,sha256=RIjrZIzkW77NiKeXbxFN9k872cz3fl9cG1m5TJpjmmY,40134
|
37
37
|
worker_automate_hub/tasks/jobs/ecac_estadual_go.py,sha256=aPckQRlRozFS_OK3C9wNdMCmqO6AM4djwqY2uSSaPmo,20687
|
38
38
|
worker_automate_hub/tasks/jobs/ecac_estadual_main.py,sha256=FFpAdtZLO4uelWZooCVpm4JePv_iDt5nwVKrk1ipZJQ,1599
|
@@ -70,7 +70,7 @@ worker_automate_hub/utils/updater.py,sha256=en2FCGhI8aZ-JNP3LQm64NJDc4awCNW7UhbV
|
|
70
70
|
worker_automate_hub/utils/util.py,sha256=3XNBaYVbJ-KgWyHDKY2jIFuQzgBQs-w1d5iEQZv1D4U,125867
|
71
71
|
worker_automate_hub/utils/utils_nfe_entrada.py,sha256=p5r_L5k7gqCBvV8v6dbLFM6INKiSpGc4Gegid0_YAh4,29017
|
72
72
|
worker_automate_hub/worker.py,sha256=tftQpX8liC-_0_bOUf1YYzXSCvloMQBvjmQ6lzfEE-c,4816
|
73
|
-
worker_automate_hub-0.5.
|
74
|
-
worker_automate_hub-0.5.
|
75
|
-
worker_automate_hub-0.5.
|
76
|
-
worker_automate_hub-0.5.
|
73
|
+
worker_automate_hub-0.5.7.dist-info/entry_points.txt,sha256=sddyhjx57I08RY8X7UxcTpdoOsWULAWNKN9Xr6pp_Kw,54
|
74
|
+
worker_automate_hub-0.5.7.dist-info/METADATA,sha256=99G_2pWs2MIbaYXNJyE5aWHGapvgqdY5nEV_TxjWvmg,2893
|
75
|
+
worker_automate_hub-0.5.7.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
76
|
+
worker_automate_hub-0.5.7.dist-info/RECORD,,
|
File without changes
|
{worker_automate_hub-0.5.5.dist-info → worker_automate_hub-0.5.7.dist-info}/entry_points.txt
RENAMED
File without changes
|