-
Notifications
You must be signed in to change notification settings - Fork 0
/
emptyActionChain.py
53 lines (39 loc) · 1.01 KB
/
emptyActionChain.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Remove todas tarefas penduradas
em action chains, que impedem
a criação de novas tarefas agendadas
Paulo Ferraz - matricula
paulo_ferraz@example.com
Uso:
python ./emptyActionChain.py
Histórico:
v1.0 - Mon Jun 12 15:51:47 -03 2023
COPYRIGHT: Este programa é GPL.
"""
import xmlrpclib, sys
from authenticate import authenticate
def emptyActionChain():
"""
Retorna nome action chain removida
ou aviso de que não existem.
"""
# Autenticação
login = authenticate()
client = login["cliente"]
session = login["sessao"]
# ID da chain
chainId = client.actionchain.listChains(session)
try:
chainName = chainId[0]["label"]
except IndexError:
print("ERRO: Não há action chains!")
sys.exit()
if chainName:
client.actionchain.deleteChain(session, chainName)
# Encerra sessão
client.auth.logout(session)
return chainName
if __name__ == "__main__":
print(emptyActionChain())