-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfonctions.py
81 lines (65 loc) · 2.85 KB
/
fonctions.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python3
import json
import os
#fonction clear console
def cls():
os.system('cls' if os.name=='nt' else 'clear')
#fonction affiche les commandes
def help_rss():
print("\nBienvenue dans la console de gestions du rss-discprd.py")
print("Ici, vous pouvez ajouter, supprimer ou modifier une entré rss\n")
print("Commandes : catdb / add / remove / alter / exit\n")
#fonction ajouter un flux rss
def new_feed(key,username,rss_url,url_webhook,url_avatar):
guid =f"/root/rss-discord/GUID/{key}.guid"
with open("/root/rss-discord/db.json", "r") as json_file:
DICO = json.load(json_file)
if key in DICO['URL'] :
print(f"ERROR : Le nom du flux {key} existe deja dans le fichier db.json")
else :
DICO["URL"][key] = rss_url
DICO["WEBHOOK"][key] = url_webhook
DICO["USERNAME"][key] = username
DICO["AVATAR"][key] = url_avatar
DICO["GUID"][key] = guid
print(json.dumps(DICO, sort_keys=True, indent=4))
print(f"SUCCESS : Le flux {key} a bien été enregistré dans le fichier db.json")
with open('/root/rss-discord/db.json', 'w') as f:
f.write(json.dumps(DICO, sort_keys=True, indent=4))
#fonction suprimer un flux rss
def remove_feed(key,check):
with open("/root/rss-discord/db.json", "r") as json_file:
DICO = json.load(json_file)
if key in DICO['URL'] :
DICO["GUID"].pop(key)
DICO["URL"].pop(key)
DICO["WEBHOOK"].pop(key)
DICO["AVATAR"].pop(key)
DICO["USERNAME"].pop(key)
if check == "y":
print(json.dumps(DICO, sort_keys=True, indent=4))
with open('/root/rss-discord/db.json', 'w') as f:
f.write(json.dumps(DICO, sort_keys=True, indent=4))
print("SUCCESS : Le flux a bien été supprimé dans le fichier db.json")
else :
print("Annulation remove !")
else :
print("ERROR : Le nom du flux (key) n'existe pas dans le fichier db.json")
#fonction modifier un flux rss
def alter_feed(key,value,change):
with open("/root/rss-discord/db.json", "r") as json_file:
DICO = json.load(json_file)
if key in DICO['URL'] :
if key in DICO['URL'] :
value_upper = value.upper()
if value_upper in {"URL", "WEBHOOK", "USERNAME", "AVATAR"}:
value = value_upper
DICO[value][key] = change
print(json.dumps(DICO, sort_keys=True, indent=4))
print("SUCCESS : Le flux a bien été modifié dans le fichier db.json")
with open('/root/rss-discord/db.json', 'w') as f:
f.write(json.dumps(DICO, sort_keys=True, indent=4))
else :
print(f"ERROR : La valeur {value} à modifier n'existe pas")
else :
print(f"ERROR : Le nom du flux {key} n'existe pas dans le fichier db.json")