-
Notifications
You must be signed in to change notification settings - Fork 802
/
bot.py
275 lines (226 loc) · 8.73 KB
/
bot.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
#!/usr/bin/env python3
import json
from telegram.ext import CommandHandler, MessageHandler, Filters, Updater
from telegram import ParseMode
from telegram.ext.dispatcher import run_async
import os
import sys
from upload import upload
from creds import Creds
from pySmartDL import SmartDL
from pydrive.auth import GoogleAuth
from plugins import TEXT
from plugins.tok_rec import is_token
from time import time
import subprocess
from plugins.dpbox import DPBOX
from plugins.wdl import wget_dl
import re
from mega import Mega
gauth = GoogleAuth()
######################################################################################
bot_token = Creds.TG_TOKEN
updater = Updater(token=bot_token, workers = 8 , use_context=True)
dp = updater.dispatcher #
#
######################################################################################
@run_async
def help(update, context):
try:
context.bot.send_message(chat_id=update.message.chat_id,
text=TEXT.HELP, parse_mode=ParseMode.HTML)
except Exception as e:
print(e)
# command ```auth```
@run_async
def auth(update, context):
FOLDER_MIME_TYPE = 'application/vnd.google-apps.folder'
drive: GoogleDrive
http = None
initial_folder = None
ID = update.message.from_user.id
ID = str(ID)
try:
gauth.LoadCredentialsFile(ID)
except Exception as e:
print("Cred file missing :", e)
if gauth.credentials is None:
authurl = gauth.GetAuthUrl()
AUTH = TEXT.AUTH_URL.format(authurl)
context.bot.send_message(
chat_id=update.message.chat_id, text=AUTH, parse_mode=ParseMode.HTML)
elif gauth.access_token_expired:
# Refresh Token if expired
gauth.Refresh()
else:
# auth with saved creds
gauth.Authorize()
context.bot.send_message(
chat_id=update.message.chat_id, text=TEXT.ALREADY_AUTH)
# It will handle Sent Token By Users
@run_async
def token(update, context):
msg = update.message.text
ID = update.message.from_user.id
ID = str(ID)
if is_token(msg):
token = msg.split()[-1]
print(token)
try:
gauth.Auth(token)
gauth.SaveCredentialsFile(ID)
context.bot.send_message(
chat_id=update.message.chat_id, text=TEXT.AUTH_SUCC)
except Exception as e:
print("Auth Error :", e)
context.bot.send_message(chat_id=update.message.chat_id,
text=TEXT.AUTH_ERROR)
# command `Start`
@run_async
def start(update, context):
context.bot.send_message(chat_id=update.message.chat_id,
text=TEXT.START.format(update.message.from_user.first_name), parse_mode=ParseMode.HTML)
# command `revoke`
@run_async
def revoke_tok(update, context):
ID = update.message.chat_id
ID = str(ID)
try:
os.remove(ID)
context.bot.send_message(
chat_id=update.message.chat_id, text=TEXT.REVOKE_TOK)
except Exception as e:
print(e)
context.bot.send_message(
chat_id=update.message.chat_id, text=TEXT.REVOKE_FAIL)
# It will Handle Sent Url
@run_async
def UPLOAD(update, context):
url = update.message.text
url = url.split()[-1]
sent_message = context.bot.send_message(
chat_id=update.message.chat_id, text=TEXT.PROCESSING)
ID = update.message.chat_id
ID = str(ID)
os.path.isfile(ID)
if os.path.isfile(ID):
# Openlaod Stuffs
# I will Add This Later
if "openload" in url or "oload" in url:
DownloadStatus = False
sent_message.edit_text("Openload No longer avalible")
return
# Here is DropBox Stuffs
elif 'dropbox.com' in url:
url = DPBOX(url)
filename = url.split("/")[-1]
print("Dropbox link Downloading Started : {}".format(
url.split("/")[-1]))
sent_message.edit_text(TEXT.DP_DOWNLOAD)
# filename = wget.download(url)
filename = wget_dl(str(url))
print("Downloading Complete : {}".format(filename))
sent_message.edit_text(TEXT.DOWN_COMPLETE)
DownloadStatus = True
# Here IS Mega Links stuffs
elif 'mega.nz' in url:
try:
print("Downlaoding Started")
sent_message.edit_text(TEXT.DOWN_MEGA)
m = Mega.from_credentials(TEXT.MEGA_EMAIL, TEXT.MEGA_PASSWORD)
filename = m.download_from_url(url)
print("Downloading Complete Mega :", filename)
sent_message.edit_text(TEXT.DOWN_COMPLETE)
DownloadStatus = True
except Exception as e:
print("Mega Downloding Error :", e)
sent_message.edit_text("Mega Downloading Error !!")
else:
try:
filename = url.split("/")[-1]
print("Downloading Started : {}".format(url.split("/")[-1]))
sent_message.edit_text(TEXT.DOWNLOAD)
# filename = wget.download(url)
filename = wget_dl(str(url))
print("Downloading Complete : {}".format(filename))
sent_message.edit_text(TEXT.DOWN_COMPLETE)
DownloadStatus = True
except Exception as e:
# switch To second download(SmartDl Downloader) `You can activate it throungh TEXT file`
if TEXT.DOWN_TWO:
print(TEXT.DOWN_TWO)
try:
sent_message.edit_text(
"Downloader 1 Error:{} \n\n Downloader 2 :Downloading Started...".format(e))
obj = SmartDL(url)
obj.start()
filename = obj.get_dest()
DownloadStatus = True
except Exception as e:
print(e)
sent_message.edit_text(
"Downloading error :{}".format(e))
DownloadStatus = False
else:
print(e)
sent_message.edit_text("Downloading error :{}".format(e))
DownloadStatus = False
# Checking Error Filename
if "error" in filename:
# print(filename)
# print(filename[0],filename[-1],filename[1])
sent_message.edit_text("Downloading Error !! ")
os.remove(filename[-1])
##########Uploading part ###################
try:
if DownloadStatus:
sent_message.edit_text(TEXT.UPLOADING)
SIZE = (os.path.getsize(filename))/1048576
SIZE = round(SIZE)
FILENAME = filename.split("/")[-1]
try:
FILELINK = upload(filename, update,
context, TEXT.drive_folder_name)
except Exception as e:
print("error Code : UPX11", e)
sent_message.edit_text("Uploading fail :{}".format(e))
else:
sent_message.edit_text(TEXT.DOWNLOAD_URL.format(
FILENAME, SIZE, FILELINK), parse_mode=ParseMode.HTML)
print(filename)
try:
os.remove(filename)
except Exception as e:
print(e)
except Exception as e:
print("Error code UXP12", e)
if DownloadStatus:
sent_message.edit_text("Uploading fail : {}".format(e))
try:
os.remove(filename)
except Exception as e:
print("Error code UXP13", e)
else:
sent_message.edit_text("Uploading fail :", e)
else:
context.bot.send_message(
chat_id=update.message.chat_id, text=TEXT.NOT_AUTH)
def status(update, context):
context.bot.send_message(
chat_id=update.message.chat_id, text=TEXT.UPDATE, parse_mode=ParseMode.HTML)
update_status = CommandHandler('update', status)
dp.add_handler(update_status)
start_handler = CommandHandler('start', start)
dp.add_handler(start_handler)
downloader_handler = MessageHandler(Filters.regex(r'http'), UPLOAD)
dp.add_handler(downloader_handler)
help_handler = CommandHandler('help', help)
dp.add_handler(help_handler)
auth_handler = CommandHandler('auth', auth)
dp.add_handler(auth_handler)
token_handler = MessageHandler(Filters.text, token)
dp.add_handler(token_handler)
revoke_handler = CommandHandler('revoke', revoke_tok)
dp.add_handler(revoke_handler)
updater.start_polling()
updater.idle()