-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtradeosFunc.py
149 lines (117 loc) · 4.74 KB
/
tradeosFunc.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
from config import *
def crearTradeo (idGrupo, idUsuario, nombreCreador):
file_path = "tradeos/"+str(idGrupo)+".json"
directory = os.path.dirname(file_path)
idGrupoJSON = [idGrupo]
ofrece = []
pide = ""
img = 31231223123
meterTrade = {'idGrupo':idGrupoJSON, 'ofrece':ofrece, 'pide':pide, 'img':img, 'idMessage':0, 'idCreador':idUsuario, 'nombreCreador':nombreCreador, 'ofertas_gente': []}
if not os.path.exists(directory):
os.makedirs(directory)
if os.path.isfile(file_path):
with open(file_path, "r") as jsonFile:
data = json.load(jsonFile)
data.append(meterTrade)
with open(file_path, "w") as outfile:
json.dump(data, outfile, indent=4)
else:
with open(file_path, "w") as outfile:
json.dump([meterTrade], outfile, indent=4)
def getOfertas(idGrupo, idMessage, idUsuario):
file_path = "tradeos/"+str(idGrupo)+".json"
with open(file_path, "r+") as jsonFile:
data = json.load(jsonFile)
for x in data:
if x.get('idMessage') == int(idMessage) and x.get('idCreador') == int(idUsuario):
return x.get('ofertas_gente')
return None
def getNuevoTexto(texto_original, idGrupo, idMessage, idUsuario):
ofertas = getOfertas(idGrupo, idMessage, idUsuario)
texto_extra = ""
for x in ofertas:
if x.get('cartas'):
texto_extra += "{}: {}\n".format(x.get('nombreUsuario'), ', '.join(x.get('cartas')))
texto_nuevo = "{}\n\n{}".format(texto_original, texto_extra)
return texto_nuevo
def guardarOfertaNueva(idGrupo, idMessage, nombreUsuario, idUsuario, carta):
file_path = "tradeos/"+str(idGrupo)+".json"
with open(file_path, "r+") as jsonFile:
data = json.load(jsonFile)
for x in data:
if x.get('idMessage') == int(idMessage): # Buscamos el tradeo
ofertas = x.get('ofertas_gente')# Obtenemos sus ofertas
ids = [y.get('idUsuario') for y in ofertas] if ofertas else []
borrarUsu = {}
if idUsuario in ids:
for y in ofertas: # Recorremos la ofertas
if int(idUsuario) == int(y.get('idUsuario')): # Si el usuario ya ha ofrecido algo
if carta not in y.get('cartas'):
y['cartas'].append(carta)
else:
y['cartas'].remove(carta)
if not y.get('cartas'):
borrarUsu = y
if borrarUsu:
ofertas.remove(borrarUsu)
else:
ofertas.append({
'nombreUsuario': nombreUsuario,
'cartas':[carta],
'idUsuario': int(idUsuario)
})
x['ofertas_gente'] = ofertas
with open(file_path, "w") as outfile:
json.dump(data, outfile, indent=4)
def getUsuarioPeticion(idGrupo, idUsuario, idMessage):
file_path = "tradeos/"+str(idGrupo)+".json"
with open(file_path, "r+") as jsonFile:
data = json.load(jsonFile)
for x in data:
if x.get('idMessage') == int(idMessage) and x.get('idCreador') == int(idUsuario):
return x.get('nombreCreador'), x.get('pide')
def addOferta(idGrupo,idUsuario,nombreCarta):
file_path = "tradeos/"+str(idGrupo)+".json"
with open(file_path, "r+") as jsonFile:
data = json.load(jsonFile)
for x in data:
if x.get('idMessage') == 0 and x.get('idCreador') == idUsuario:
x["ofrece"] = [y.strip() for y in nombreCarta.split(',')]
with open(file_path, "w") as outfile:
json.dump(data, outfile, indent=4)
def addPeticion(idGrupo,idUsuario,peticion):
file_path = "tradeos/"+str(idGrupo)+".json"
directory = os.path.dirname(file_path)
with open(file_path, "r+") as jsonFile:
data = json.load(jsonFile)
for x in data:
if x.get('idMessage') == 0 and x.get('idCreador') == idUsuario:
x["pide"] = peticion
with open(file_path, "w") as outfile:
json.dump(data, outfile, indent=4)
def leerDatos(idGrupo,idUsuario,idMessage):
file_path = "tradeos/"+str(idGrupo)+".json"
with open(file_path, "r") as jsonFile:
data = json.load(jsonFile)
for x in data:
if x.get('idMessage') == int(idMessage) and x.get('idCreador') == int(idUsuario):
peticion = x['pide']
oferta = x['ofrece']
print("peticion " +peticion)
print(oferta)
return peticion,oferta
def cambiarIdMensaje(idGrupo, idUsuario, idMessage):
file_path = "tradeos/"+str(idGrupo)+".json"
with open(file_path, "r") as jsonFile:
data = json.load(jsonFile)
for x in data:
if x.get('idMessage') == 0 and x.get('idCreador') == idUsuario:
x['idMessage'] = idMessage
with open(file_path, "w") as outfile:
json.dump(data, outfile, indent=4)
#crearTradeo(idGrupo,idMessage)
#addOferta(idGrupo,idMessage,nombreCarta)
#addPeticion(idGrupo,idMessage,peticion)
#cambiarIdMensaje(idMessage)
#datos = leerDatos(idGrupo,idMessage)
#print(datos)