-
Notifications
You must be signed in to change notification settings - Fork 0
/
GA_telegram.py
435 lines (384 loc) · 15.8 KB
/
GA_telegram.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
#Importa funciones
import time,os
from GA_module import *
from datetime import datetime
from nested_lookup import nested_lookup
import telepot,telebot
#*************************************************
#Tokens
alias = 701549748 #Lo obtenés en el chat IDBot de Telegram
token = '910296400:AAHRkd76QujDh8qnASbjEJv5kEc5DdAioco' #Lo obtenés en el chat BotFather de Telegram
aliasAugu = 6195804322
tokenAugu = '6284927713:AAFeQ94ph9k_oEj7eriuOSBoOa63z5in17E'
#*************************************************
#https://telepot.readthedocs.io/en/latest/reference.html
def TelegramListener():
#Variables Globales
global TelegramProximoID
TelegramProximoID = 0
#Chequea mensajes
while True:
#Telegram actualiza mensajes
bot = telepot.Bot(token)
try: response = bot.getUpdates(offset=TelegramProximoID)
except:
bot = telebot.TeleBot(token)
try: response = bot.getUpdates(offset=TelegramProximoID)
except:
print(datetime.now().strftime('%H:%M:%S'),' Sin Telegram')
time.sleep(5)
continue
#Determino si hay mensaje nuevo
update_id = nested_lookup('update_id',response)
if not update_id: continue
TelegramProximoID = update_id[len(update_id)-1]+1
#Inicia loop de revisión de mensajes nuevos
text = nested_lookup('text',response)
TextCounter = -1
for instruccion in text:
if len(instruccion) >= 4096:
string = 'Mensaje demasiado largo! Tiene ' + len(instruccion) + '. Máximo 4096.'
EnviarTelegram(string)
continue
print(datetime.now().strftime('%H:%M:%S'),' Telegram nuevo mensaje ',instruccion)
TextCounter = TextCounter+1
if 'HELP' in instruccion.upper() and not 'http' in instruccion: TelegramAyuda(); continue
if 'READ' in instruccion.upper() and not 'http' in instruccion: TelegramRead(); continue
if 'CHECK' in instruccion.upper() and not 'http' in instruccion: TelegramProximoID = TelegramCheck(TelegramProximoID); continue
if 'HOURS' in instruccion.upper() and not 'http' in instruccion: TelegramProximoID = TelegramScrapingHours(instruccion,TelegramProximoID); continue
if 'DELETE' in instruccion.upper() and not 'http' in instruccion: TelegramProximoID = TelegramDelete(instruccion,TelegramProximoID); continue
if 'URL' in instruccion.upper() and not 'http' in instruccion: TelegramURL(instruccion); continue
if 'NEW' in instruccion.upper() and not 'http' in instruccion: TelegramProximoID = TelegramNew(TelegramProximoID); continue
if 'CREDIT' in instruccion.upper() and not 'http' in instruccion: ScrapeopsCredit(); continue
if 'PRESALE' in instruccion.upper() and not 'http' in instruccion: TelegramProximoID = TelegramPresale(TelegramProximoID); continue
if 'ONSALE' in instruccion.upper() and not 'http' in instruccion: TelegramProximoID = TelegramOnsale(TelegramProximoID); continue
#*************************************************
def Repreguntador(cadena,accion,TelegramProximoID):
def Preguntador(cadena,accion,ProximoID):
global TelegramProximoID
TelegramProximoID = ProximoID
bot = telepot.Bot(token)
instruccion = ''
#Hago pregunta
EnviarTelegram(cadena)
#Espero repregunta
for segundero in range(30):
#Espera nuevo mensaje de Telegram
try: response = bot.getUpdates(offset=TelegramProximoID)
except: continue
#Determino si hay mensaje nuevo
update_id = nested_lookup('update_id',response)
if not update_id: continue
TelegramProximoID = update_id[len(update_id)-1]+1
#Nuevo mensaje
text = nested_lookup('text',response)
if not text: continue
instruccion = text[len(text)-1] #tiene guardado el último mensaje de texto
print(datetime.now().strftime('%H:%M:%S'),' Telegram nuevo mensaje ',instruccion)
#Verifica si es número
if accion=='EsNumero':
if not instruccion.replace(' ','').isdigit():
cadena = instruccion+' es inválido!'
EnviarTelegram(cadena)
return '',TelegramProximoID
break
#Verifica si es afirmativo
if accion=='EsAfirmativo':
ListaTest = ['SI','SÍ','NO','S','N']
k = 0
for j in ListaTest:
if instruccion.upper()==j:
instruccion = j
if instruccion == 'SÍ' or instruccion == 'S': instruccion = 'SI'
if instruccion == 'N': instruccion = 'NO'
break
k += 1
if k==len(ListaTest):
cadena = instruccion+' no es válido!'
EnviarTelegram(cadena)
return '',TelegramProximoID
break
#Si es texto
if accion=='': break
#Telegram
if segundero == 29:
cadena = 'No se recibió mensaje'
EnviarTelegram(cadena)
return '',TelegramProximoID
return instruccion,TelegramProximoID
#*************************************************
RtaRecibida,TelegramProximoID = Preguntador(cadena,accion,TelegramProximoID)
if not RtaRecibida: RtaRecibida,TelegramProximoID = Preguntador(cadena,accion,TelegramProximoID)
return RtaRecibida,TelegramProximoID
#*************************************************
def TelegramAyuda():
ayudin1 = ['HELP: ayuda','READ: lee eventos desde archivo','URL 1 2: entrega URLs','CREDIT: crédito Scrapeops']
ayudin2 = ['CHECK: scrap tickets disponibles en evento por URL','DELETE 1 2: elimina eventos']
ayudin3 = ['HOURS: horas entre scrapings','NEW: agrega URL de evento para chequear']
ayudin4 = ['PRESALE: fechas de preventa','ONSALE: fechas de venta general']
ayudin = ayudin1 + ayudin2 + ayudin3 + ayudin4
ayudin = sorted(ayudin)
cadena = ''
for z in range(len(ayudin)): cadena = cadena + ayudin[z]+'\n'
EnviarTelegram(cadena)
#*************************************************
def TelegramCheck(ProximoID):
#Variables
global TelegramProximoID
TelegramProximoID = ProximoID
#Pregúnta URL del evento
url,TelegramProximoID = Repreguntador('URLs de cada evento? ','',TelegramProximoID)
if not 'https://' in url: return TelegramProximoID
#Chequeo de evento
URLs = url.split()
EventCheck(URLs)
return TelegramProximoID
#*************************************************
def TelegramRead():
#Crea lista con URLs de eventos a seguir
UrlList = LeerArchivoCrearLista ("C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/EventList.txt")
#Leo URLs y archivos
Message = ''; EventNumber = 1; TXTmessage = ''
for url in UrlList:
#Leo archivo
FileName = TituloEventoTM(url)
path = "C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/TotalPriceRange/" + FileName + ".csv"
try: f = open(path)
except FileNotFoundError:
# Message += str(EventNumber) + ' ' + FileName + '\n' + url + '\n' + 'ScrapingHours: ' + ScrapHours + '\nSin lectura de tickets almacenada!\n\n'
TXTmessage += FileName + '\n' + url + '\n' + 'ScrapingHours: ' + ScrapHours + '\nSin lectura de tickets almacenada!\n\n'
try:
LastOpenTime = os.path.getmtime(path)
os.utime(path, (LastOpenTime, LastOpenTime-86500))
except: pass
EventNumber += 1
continue
AllLinesFile = f.readlines()
f.close()
#Verifica si existe matriz de tickets para informar
if len(AllLinesFile) == 1:
# Message += str(EventNumber) + ' ' + FileName + '\n' + url + '\n' + 'ScrapingHours: ' + ScrapHours + '\nSin lectura de tickets almacenada!\n\n'
TXTmessage += FileName + '\n' + url + '\n' + 'ScrapingHours: ' + ScrapHours + '\nSin lectura de tickets almacenada!\n\n'
try:
LastOpenTime = os.path.getmtime(path)
os.utime(path, (LastOpenTime, LastOpenTime-86500))
except: pass
EventNumber += 1
continue
#Títulos de matriz
Title = AllLinesFile[0]
Title = Title.split(',')
ScrapHours = Title[0]
Title[0] = "Date"
Title = ','.join(Title)
#Tickets por fecha de lectura
Matriz = Title
for x in range(1,len(AllLinesFile)):
# for x in range(len(AllLinesFile)-1,0,-1):
Matriz +=AllLinesFile[x]
Matriz = Matriz[:-1]
Matriz = Matriz.split('\n')
# Matriz = Title
# for x in range(len(AllLinesFile)-1,len(AllLinesFile)-4,-1):
# if x==0: break
# Matriz +=AllLinesFile[x]
# Matriz = Matriz[:-1]
# Matriz = Matriz.split('\n')
#Mensaje de Telegram
# Message += str(EventNumber) + ' ' + FileName + '\n' + url + '\n' + 'ScrapingHours: ' + ScrapHours + '\n'
TXTmessage += FileName + '\n' + url + '\n' + 'ScrapingHours: ' + ScrapHours + '\n'
flag = True
for LineMatriz in Matriz:
LineMatriz = LineMatriz.split(',')
LineMatriz[0] = LineMatriz[0][:5]
if flag: LineMatriz = '\t'.join(LineMatriz)
else: LineMatriz = '\t'.join(LineMatriz)
flag = False
# Message += LineMatriz + '\n'
TXTmessage += LineMatriz + '\n'
# Message += '\n'
TXTmessage += '\n'
EventNumber += 1
#Envío Telegram antes de que se superen los 4096 caracteres
# if len(Message) > 3500:
# print(Message)
# EnviarTelegram(Message)
# Message = ''
#Envío Telegram de la última parte o Telegram único si fue menor a 3500 caracteres
# print(Message)
# EnviarTelegram(Message)
#Imprimo reporte
TXTmessagePath = "C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/ReadMessage.txt"
with open(TXTmessagePath, "w") as f:
f.write(TXTmessage)
#Envia Telegram
string = str(EventNumber) + ' eventos en scraping'; print(string)
TelegramDocument(string,TXTmessagePath)
#*************************************************
def TelegramDelete(instruccion,ProximoID):
#Variables
global TelegramProximoID
TelegramProximoID = ProximoID
EventListpath = "C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/EventList.txt"
UrlList = LeerArchivoCrearLista (EventListpath)
#Determina si hay indices para eliminar o se debe solicitar URLs
instruccion = instruccion.upper()
URLsIndexes = instruccion.replace('DELETE','')
if not URLsIndexes.replace(' ','').isdecimal():
#No hay indices, pregunta URL del evento
UrlString,TelegramProximoID = Repreguntador('URLs de cada evento a eliminar? ','',TelegramProximoID)
UrlList_to_delete = UrlString.split('\n')
for Url in UrlList_to_delete:
if not 'https://' in Url: continue
EventEraser(Url)
else:
#Determina indices a eliminar
URLsIndexes = URLsIndexes.split()
URLsIndexesInt = []
for x in range(len(URLsIndexes)):
URLsIndexesInt.append(int(URLsIndexes[x])-1)
URLsIndexesInt.sort(reverse=True)
#Elimina URLs del archivo EventList
if URLsIndexesInt[0] >= len(UrlList):
EnviarTelegram('Indices mal indicados!')
return TelegramProximoID
for Index in URLsIndexesInt: EventEraser(UrlList[Index])
EnviarTelegram('URLs eliminadas!')
return TelegramProximoID
#*************************************************
def TelegramURL(instruccion):
#Variables
path = "C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/EventList.txt"
UrlList = LeerArchivoCrearLista (path)
#Determina indices a chequear
instruccion = instruccion.upper()
URLsIndexes = instruccion.replace('URL','')
if not URLsIndexes.replace(' ','').isdecimal(): return
URLsIndexes = URLsIndexes.split()
URLsIndexesInt = []
for x in range(len(URLsIndexes)):
URLsIndexesInt.append(int(URLsIndexes[x])-1)
URLsIndexesInt.sort(reverse=True)
#Busca URLs a informar
if URLsIndexesInt[0] >= len(UrlList):
EnviarTelegram('Indices mal indicados!')
return
string = ''
for Index in URLsIndexesInt:
string += UrlList[Index] + '\n\n'
EnviarTelegram(string)
#*************************************************
def ScrapeopsCredit():
scrapeops_api_key= 'b068c887-9fbf-42d3-ae8e-896f540fd7c5'
Scrapeops_Check = 'https://proxy.scrapeops.io/v1/account?api_key=' + scrapeops_api_key
response = json.loads(requests.get(Scrapeops_Check).text)
Plan = response['plan_api_credits']
Uso = response['used_api_credits']
Resta = Plan - Uso
RestaLlamadas = int(Resta / 11)
string = 'Total ' + str(Plan) + '. Usado ' + str(Uso) + '. Resta ' + str(Resta) + '. Requests ' + str(RestaLlamadas) + '. Renueva 9 de cada mes.'
print(string)
EnviarTelegram(string)
#*************************************************
def TelegramScrapingHours(instruccion,ProximoID):
#Variables
global TelegramProximoID
TelegramProximoID = ProximoID
#Variables
EventListpath = "C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/EventList.txt"
UrlList = LeerArchivoCrearLista (EventListpath)
#Determina si hay indices para eliminar o se debe solicitar URLs
instruccion = instruccion.upper()
URLsIndexes = instruccion.replace('HOURS','')
#No Hay indices
if not URLsIndexes.replace(' ','').isdecimal():
#Pregunta URLs de eventos
UrlString,TelegramProximoID = Repreguntador('URLs a modificar? ','',TelegramProximoID)
UrlList_to_change_ScrpingHours = UrlString.split('\n')
#Pregunta Scraping Hours
ScrapingHours,TelegramProximoID = Repreguntador('Horas entre scrapings? ','EsNumero',TelegramProximoID)
if not ScrapingHours: return TelegramProximoID
#Cambia horas entre scraping
for Url in UrlList_to_change_ScrpingHours:
if not 'https://' in Url: continue
FileName = TituloEventoTM(Url)
if not FileName: continue
path = "C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/TotalPriceRange/" + FileName + ".csv"
ChangeScrapingHours(path,ScrapingHours)
#Sí hay indices
else:
#Pregunta Scraping Hours
ScrapingHours,TelegramProximoID = Repreguntador('Horas entre scrapings? ','EsNumero',TelegramProximoID)
if not ScrapingHours: return TelegramProximoID
#Determina indices a eliminar
URLsIndexes = URLsIndexes.split()
URLsIndexesInt = []
for x in range(len(URLsIndexes)):
URLsIndexesInt.append(int(URLsIndexes[x])-1)
URLsIndexesInt.sort(reverse=True)
#Verifica indices a eliminar
if URLsIndexesInt[0] >= len(UrlList):
EnviarTelegram('Indices mal indicados!')
return TelegramProximoID
#Recorre listado de indices y modifica el tiempo entre scrapings
for Index in URLsIndexesInt:
FileName = TituloEventoTM(UrlList[Index])
if not FileName: continue
path = "C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/TotalPriceRange/" + FileName + ".csv"
ChangeScrapingHours(path,ScrapingHours)
EnviarTelegram('ScrapingHours modificado!')
return TelegramProximoID
#*************************************************
def TelegramNew(ProximoID):
#Variables
global TelegramProximoID
TelegramProximoID = ProximoID
#Pregúnta URL del evento
UrlString,TelegramProximoID = Repreguntador('URLs de cada evento a incorporar? ','',TelegramProximoID)
if not 'https://' in UrlString: return TelegramProximoID
#Guarda nuevos eventos
EventListpath = "C:/Users/Videla/Documents/Ticket Resale/Chequeo de Eventos/EventList.txt"
with open(EventListpath, "a+") as f:
f.seek(0)
if f.read()[-1] != '\n': f.write('\n')
f.write(UrlString)
#Telegram
string = 'Evento incorporado!'
print(string)
EnviarTelegram(string)
return TelegramProximoID
#*************************************************
def TelegramPresale(ProximoID):
#Variables
global TelegramProximoID
TelegramProximoID = ProximoID
from GA_telegram_presale import GA_manual_presale
#Pregunta primer día a evaluar
string = 'Primer día desde dónde buscar Presale (0=hoy)'
FirstDay,TelegramProximoID = Repreguntador(string,'EsNumero',TelegramProximoID)
if not FirstDay: return TelegramProximoID
#Pregunta último día a evaluar
string = 'Último día hasta donde buscar Presale (0=hoy)'
LastDay,TelegramProximoID = Repreguntador(string,'EsNumero',TelegramProximoID)
if not LastDay: return TelegramProximoID
#Inicia evaluación
GA_manual_presale(int(FirstDay),int(LastDay))
return TelegramProximoID
#*************************************************
def TelegramOnsale(ProximoID):
#Variables
global TelegramProximoID
TelegramProximoID = ProximoID
from GA_telegram_onsale import GA_manual_onsale
#Pregunta primer día a evaluar
string = 'Primer día desde dónde buscar Onsale (0=hoy)'
FirstDay,TelegramProximoID = Repreguntador(string,'EsNumero',TelegramProximoID)
if not FirstDay: return TelegramProximoID
#Pregunta último día a evaluar
string = 'Último día hasta donde buscar Onsale (0=hoy)'
LastDay,TelegramProximoID = Repreguntador(string,'EsNumero',TelegramProximoID)
if not LastDay: return TelegramProximoID
#Inicia evaluación
GA_manual_onsale(int(FirstDay),int(LastDay))
return TelegramProximoID
#*************************************************