-
Notifications
You must be signed in to change notification settings - Fork 1
/
menesbot.py
152 lines (131 loc) · 4.39 KB
/
menesbot.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
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import time
import oauth2
import urllib.parse
import pytumblr
import html
from telegram.ext import CommandHandler
from telegram.ext import MessageHandler, Filters
from telegram.ext import Updater
from telegram.ext import Job
arqTokens = open('menesbot.token','r')
token = arqTokens.readlines()
for i in range(0,4):
token[i] = token[i].strip('\n')
arqTokens.close()
updater = Updater(token=token[0])
dispatcher = updater.dispatcher
client = pytumblr.TumblrRestClient(
token[1],
token[2],
token[3],
token[4]
)
j = updater.job_queue
arqUltimo = open('ultimo.txt','r')
ultimo = arqUltimo.read()
arqUltimo.close()
arqUltimos = open('ultimos.txt','w')
messages = client.posts('sitedosmenes')
for i in range(0,20):
texto = messages["posts"][i]["caption"]
texto = re.sub('<[^<]+?>', '', texto)
texto = re.sub('[\r\n]', ' ', texto)
texto += '\n'
texto += messages["posts"][i]["photos"][0]["original_size"]["url"]
texto += '\n'
texto = html.unescape(texto)
arqUltimos.write(texto)
arqUltimos.close()
arqUltimos = open('ultimos.txt','r')
ultimos = arqUltimos.readlines()
for i in range(0,len(ultimos)):
ultimos[i] = ultimos[i].strip('\n')
arqUltimos.close()
def start(bot, update):
bot.sendMessage(chat_id=update.message.chat_id, text="Este é o bot dos menes, criado por @Arquimago para distribuir os menes automaticamente pelo @CanalDosMenes")
start_handler = CommandHandler('start', start)
dispatcher.add_handler(start_handler)
def git(bot, update):
bot.sendMessage(chat_id=update.message.chat_id, text="O código deste bot se encontra em http://github.com/arquimago/menesbot")
git_handler = CommandHandler('git', git)
dispatcher.add_handler(git_handler)
def getmene(bot, update):
global ultimos
texto = ultimos[0]
imagem = ultimos[1]
if len(texto) < 200:
bot.send_photo(chat_id=update.message.chat_id, photo=imagem, caption=texto)
else:
bot.send_photo(chat_id=update.message.chat_id, photo=imagem)
bot.sendMessage(chat_id=update.message.chat_id, text=texto)
getmene_handler = CommandHandler('getmene', getmene)
dispatcher.add_handler(getmene_handler)
def getultimo(bot,update):
nome=update.message.from_user.username
global ultimo
if nome=="Arquimago":
messages = client.posts('sitedosmenes')
texto = "o atual no servidor é "+ultimo+" e o atual no site é "+ messages["posts"][0]["short_url"]
bot.sendMessage(chat_id=update.message.chat_id, text = texto)
getultimo_handler = CommandHandler('getultimo', getultimo)
dispatcher.add_handler(getultimo_handler)
def confere_menes(bot, job):
messages = client.posts('sitedosmenes')
global ultimo
global ultimos
hora = time.strftime("%c")
if ultimo != messages["posts"][0]["short_url"]:
#novo_mene = time.strftime("%c") + " Atualizado sem novos menes\n"
#arqLog = open('atividades.log','a')
#arqLog.write(novo_mene)
#arqLog.close()
#else:
#Guarda o indice da ultima enviada
indice = 20
for i in range(0,20):
if ultimo == messages["posts"][i]["short_url"]:
indice = i
break
indice-=1
#guarda o ultimo mene enviado
ultimo = messages["posts"][0]["short_url"]
arqUltimo = open('ultimo.txt','w')
arqUltimo.write(ultimo)
arqUltimo.close()
arqUltimos = open('ultimos.txt', 'w')
#Prepara arquivo de ultimos 20 menes
for i in range(0,20):
texto = messages["posts"][i]["caption"]
texto = re.sub('<[^<]+?>', '', texto)
texto += '\n'
texto += messages["posts"][i]["photos"][0]["original_size"]["url"]
texto += '\n'
texto = html.unescape(texto)
arqUltimos.write(texto)
arqUltimos.close()
arqUltimos = open('ultimos.txt','r')
ultimos = arqUltimos.readlines()
for i in range(0,len(ultimos)):
ultimos[i] = ultimos[i].strip('\n')
arqUltimos.close()
#Arquivo ajustado
#Posta menes faltantes
for i in range(indice,-1,-1):
texto = messages["posts"][i]["caption"]
texto = re.sub('<[^<]+?>', '', texto)
texto = html.unescape(texto)
imagem = messages["posts"][i]["photos"][0]["original_size"]["url"]
if len(texto) < 200:
bot.send_photo(chat_id="@canaldosmenes",photo=imagem,caption=texto)
else:
bot.send_photo(chat_id="@canaldosmenes",photo=imagem)
bot.sendMessage(chat_id="@canaldosmenes",text=texto)
novo_mene = time.strftime("%c") + " Canal tem" + str(indice+1)+ " novo(s) mene(s)\n"
arqLog = open('atividades.log','a')
arqLog.write(novo_mene)
arqLog.close()
j.run_repeating(confere_menes, 120.0, first=0)
updater.start_polling()