-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyhdbtools.py
executable file
·474 lines (405 loc) · 15 KB
/
pyhdbtools.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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
import json, requests, sys, urllib2, sqlite3, getopt, os, textwrap, datetime, urllib
from pprint import pprint
from collections import OrderedDict
from lxml import etree
from bs4 import BeautifulSoup
class JSONConfig:
def __init__(self):
self.cookiePresent = False
self.username = self.passkey = ''
self.outputdir = 'watchdir/'
self.cookie = OrderedDict([('uid',''),('pass',''),('hash','')])
def read(self, filename):
fileBasePath = os.path.dirname(os.path.realpath(__file__))
try:
with open(os.path.join(fileBasePath,filename),'r') as json_data:
jsonConfig = json.load(json_data)
json_data.close()
except IOError:
print "ERROR: config.json not found or not readable. Please run again with --makconf"
exit(1)
except:
print "ERROR: config.json is invalid. Please recreate with --makeconf"
exit(1)
try:
self.username = jsonConfig['username']
self.passkey = jsonConfig['passkey']
self.outputdir = jsonConfig['outputdir']
if jsonConfig['cookie']['uid'] != "":
self.cookiePresent = True
self.c_uid = jsonConfig['cookie']['uid']
self.c_pass = jsonConfig['cookie']['pass']
self.c_hash = jsonConfig['cookie']['hash']
self.cookie = {'uid':self.c_uid,'pass':self.c_pass,'hash':self.c_hash}
except KeyError:
pass
def fileExists(self, filename):
fileBasePath = os.path.dirname(os.path.realpath(__file__))
try:
with open(os.path.join(fileBasePath,filename),'r') as json_data:
json_data.close()
return True
except IOError:
return False
def write(self, filename):
#cookieJson = OrderedDict([('uid',self.c_uid),('pass',self.c_pass),('hash',self.c_hash)])
fileBasePath = os.path.dirname(os.path.realpath(__file__))
data = OrderedDict([('username',self.username),('passkey',self.passkey),('outputdir',os.path.abspath(self.outputdir)),('cookie',self.cookie)])
try:
with open(os.path.join(fileBasePath,filename), 'w') as outfile:
json.dump(data, outfile, indent=4, separators=(',', ': '))
except IOError:
print "ERROR: Cannot write config.json"
exit(1)
def hasCookie(self):
return self.cookiePresent
#def validateUser(self):
# i=0
def setCookie(self, cookie):
self.cookie = cookie
if cookie['uid'] != '' and cookie['pass'] != '' and cookie['hash'] != '':
self.cookiePresent = True
else:
self.cookiePresent = False
def getCookie(self):
return self.cookie
def setBaseConfig(self, config):
self.username = config['username']
self.passkey = config['passkey']
self.outputdir = config['outputdir']
def getBaseConfig(self):
return {'username':self.username,'passkey':self.passkey,'outputdir':self.outputdir}
def isDownloaded(id):
#checks if the id is in the downloaded list
cur = conn.cursor()
cur.execute('SELECT * FROM complete WHERE id=?', (id,))
return False if len(cur.fetchall()) == 0 else True
def isWatched(id):
#checks if the id is in the watchlist
cur = conn.cursor()
cur.execute('SELECT * FROM watched WHERE id=?', (id,))
return False if len(cur.fetchall()) == 0 else True
def fetchTorrent(id, outputdir, sslVerify=True, allowDupes=False):
#fetches torrent based on the given torrent id. checks the database if it's already been downloaded.
#if not, it downloads it.
cfg = JSONConfig()
cfg.read('config.json')
username = cfg.getBaseConfig()['username']
passkey = cfg.getBaseConfig()['passkey']
outputdir = cfg.getBaseConfig()['outputdir']
if isDownloaded(id) == False or allowDupes:
apiUrl = 'https://hdbits.org/api/torrents'
fetchPayload = {"username":username,"passkey":passkey,"limit":"1","id":id}
try:
fetchResponse = requests.post(apiUrl, data=json.dumps(fetchPayload), headers=headers, verify=sslVerify, timeout=5)
except requests.Timeout:
print "Connection Error: API Timeout exceeded"
exit(1)
except:
print "Connection Error: API down or unreachable"
exit(1)
fetchData = json.loads(fetchResponse.text)
torrentUrl = "https://hdbits.org/download.php?id=" + str(fetchData['data'][0]['id']) + "&passkey=" + passkey
idStr = str(fetchData['data'][0]['id'])
nameStr = fetchData['data'][0]['filename']
fullPath = os.path.join(outputdir,nameStr)
print "fetching: " + nameStr + " at " + datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
#save .torrent file
torrentFile = urllib2.urlopen(torrentUrl)
try:
with open(fullPath,'wb') as output:
output.write(torrentFile.read())
if verbose:
print "writing .torrent file to " + fullPath
except IOError:
print "ERROR: could not write " + fullPath
exit(1)
#log download to database
conn.execute('''INSERT INTO complete(id, name) VALUES(?,?)''', (idStr, nameStr))
conn.commit()
elif debug:
print "already fetched: " + str(id)
def loadQueueFile(queueFilename):
with open(queueFilename, 'r') as f:
read_data = f.read()
soup = BeautifulSoup(read_data,'html.parser')
subtable = soup.find('table', attrs={'class':'padding2'})
populateWatchlist(subtable)
def populateWatchlist(subtable):
#checks given filename, extracts all the ID #s from the links, and adds that list to the db
torrentlist = []
i=0
for row in subtable.findAll('tr'):
if i != 0:
col = row.findAll('td')
torrentlist.append([col[0].text, col[1].text])
i=i+1
#pprint(torrentlist)
conn.execute('''DROP TABLE watched''')
conn.execute('''CREATE TABLE IF NOT EXISTS watched(idx INT, id INT, name TEXT)''')
i=0
for x in torrentlist:
if not isDownloaded(x[0]):
#encode/decode stuff required to avoid unicode errors in Windows and SQL
if verbose:
print x[1].encode('ascii', 'ignore').decode('ascii') + " added to watchlist"
idStr = str(x[0])
indexStr = str(i)
nameStr = x[1].encode('ascii', 'ignore').decode('ascii')
conn.execute('''INSERT INTO watched(idx,id,name) VALUES(?,?,?)''', (indexStr, idStr, nameStr))
i+=1
if i == 0:
print "Warning: no items found to add to watchlist"
else:
print str(i) + " items added to watchlist"
conn.commit()
def generateConfigFile(sslVerify=True):
validResponse = cookieIsSet = False
fileBasePath = os.path.dirname(os.path.realpath(__file__))
cfg = JSONConfig()
if cfg.fileExists('config.json'):
cfg.read('config.json')
while True:
usernameInput = raw_input("Please input your hdbits username: [" + cfg.getBaseConfig()['username'] + "] ")
passkeyInput = raw_input("Please input your hdbits passkey: [" + cfg.getBaseConfig()['passkey'] + "] ")
outputdirInput = raw_input(".torrent file output directory: [" + cfg.getBaseConfig()['outputdir'] + "] ")
#if no input, go with default input
if len(usernameInput) == 0: usernameInput = cfg.getBaseConfig()['username']
if len(passkeyInput) == 0: passkeyInput = cfg.getBaseConfig()['passkey']
if len(outputdirInput) == 0: outputdirInput = cfg.getBaseConfig()['outputdir']
absOutputdir = os.path.abspath(outputdirInput)
#Checking outputdir path
if os.path.exists(absOutputdir) == False:
while True:
a = raw_input("Warning: path does not exist, create? (y/n) ")
if a == 'y':
try:
os.makedirs(absOutputdir)
except:
print "ERROR: Could not create directory"
break
elif a == 'n':
break
#configure cookie
while True:
a = raw_input("Would you like to set a cookie? (y/[n]) ")
if a == 'y':
cookieIsSet = True
c_uid = raw_input("Please input your cookie uid: [" + cfg.getCookie()['uid'] + "] ")
c_pass = raw_input("Please input your cookie pass: [" + cfg.getCookie()['pass'] + "] ")
c_hash = raw_input("Please input your cookie hash: [" + cfg.getCookie()['hash'] + "] ")
#if no response leave it unchanged
if len(c_uid) == 0: c_uid = cfg.getCookie()['uid']
if len(c_pass) == 0: c_pass = cfg.getCookie()['pass']
if len(c_hash) == 0: c_hash = cfg.getCookie()['hash']
break
else:
c_uid = c_pass = c_hash = ''
break
print "\nUsername: " + usernameInput
print "Passkey: " + passkeyInput
print "Output Directory: " + os.path.abspath(outputdirInput)
if cookieIsSet:
print "cookie uid = " + c_uid
print "cookie pass = " + c_pass
print "cookie hash = " + c_hash
#check if data input is correct
while True:
a = raw_input("\nIs this correct? (y/n) ")
if a == 'y':
#checks api if the user/passkey is valid
apiUrl = "https://hdbits.org/api/test"
payload = {"username":usernameInput,"passkey":passkeyInput}
headers = {'content-type': 'application/json'}
try:
response = requests.post(apiUrl, data=json.dumps(payload), headers=headers, verify=sslVerify, timeout=5)
except requests.Timeout:
print "Connection Error: API Timeout exceeded"
exit(1)
except:
print "Connection Error: API down or unreachable"
exit(1)
testData = json.loads(response.text)
if testData['status'] == 0:
validResponse = True
break
else:
print "ERROR: API authentication failure. Check username and passkey and try again"
break
elif a == 'n':
#save inputs as defaults for next try
#cfg.setCookie({'uid':c_uid,'pass':c_pass,'hash':c_hash})
#cfg.setBaseConfig({'username':usernameInput,'passkey':passkeyInput,'outputdir':outputdirInput})
break
if validResponse:
break
#write config file
cfg.setCookie({'uid':c_uid,'pass':c_pass,'hash':c_hash})
cfg.setBaseConfig({'username':usernameInput,'passkey':passkeyInput,'outputdir':outputdirInput})
cfg.write('config.json')
exit(0)
def displayHelp():
print textwrap.dedent("""\
pyhdbtools.py [OPTIONS] [FILE]
RUN MODES
-f, --fetch-free
Checks the most recent 30 uploads and downloads any that are freeleech
-F, --fetch-featured
Checks the list of upcoming featured torrents and downloads any that are freeleech. High number
of API calls. Not recommended to be run more than once every 5 minutes.
-h, --help
display this help and exits
--makeconf
Generates json.config and exits
-q, --scrape-queue
fetches featuredqueue.html from hdbits.org and updates watchlist. Requires valid cookie set. Will
likely get you banned. Use --update-featured instead.
-t, -torrentid ######
Download .torrent file of the matching id
-u, --update-featured filename.html
Processes the "Featured Torrents Queue" page from hdbits and adds them to a watchlist. Local
files only. Does not accept URLs avoid breaking rule prohibiting site scraping.
--version
Shows version number
MODIFIERS
--allowdupes
Bypasses checks to not download dupes
--noverify
Skips SSL verification for API queries
-v
Verbose output
""")
exit(0)
def scrapeFeaturedQueue(sslVerify=True):
cfg = JSONConfig()
cfg.read('config.json')
url = 'https://hdbits.org/featuredqueue.php'
cookie = cfg.getCookie()
r = requests.post(url, cookies=cookie, verify=sslVerify)
parser = etree.HTMLParser()
parsedPage = etree.XML(r.text.encode('utf8'), parser)
populateWatchlist(parsedPage)
def main():
global headers, verbose, conn, debug
VERSION = 'build 033017b'
#default options
makeConf = updateFeatured = fetchFeatured = verbose = showVersion = dispHelp = allowDupes = singleTorrent = False
fetchFree = debug = getQueue = False
sslVerify = True
#argument option handling
options, remainder = getopt.getopt(sys.argv[1:], 'u:hs:VfFvq', ['update-featured=','fetch-featured','makeconf',
'noverify','help','single-torrent','allowdupes','fetch-free','version','debug','scrape-queue'])
for opt, arg in options:
if opt in ('-v'):
verbose = True
elif opt in ('--noverify'):
sslVerify = False
elif opt in ('--makeconf'):
makeConf = True
elif opt in ('--allowdupes'):
allowDupes = True
elif opt in ('-u', '--update-featured'):
updateFeatured = True
queueFilename = arg
elif opt in ('-F','--fetch-featured'):
fetchFeatured = True
elif opt in ('-h', '--help'):
dispHelp = True
elif opt in ('-s','--single-torrent'):
singleTorrent = True
torrentID = arg
elif opt in ('-f','--fetch-free'):
fetchFree = True
elif opt in ('-V','--version'):
showVersion = True
elif opt in ('--debug'):
debug = True
verbose = True
elif opt in ('-q','--scrape-queue'):
getQueue = True
if debug:
print "starting run at " + datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")
if showVersion:
print "pyhdbtools " + VERSION
exit(0)
if makeConf:
generateConfigFile(sslVerify=sslVerify)
if dispHelp:
displayHelp()
#importing config.json
fileBasePath = os.path.dirname(os.path.realpath(__file__))
cfg = JSONConfig()
cfg.read('config.json')
username = cfg.getBaseConfig()['username']
passkey = cfg.getBaseConfig()['passkey']
outputdir = cfg.getBaseConfig()['outputdir']
headers = {'content-type': 'application/json'}
#connect to database and create tables if they don't exist
try:
conn = sqlite3.connect(os.path.join(fileBasePath,'hdbits.db'))
except IOError:
print "ERROR: Permissions error at " + os.path.join(fileBasePath,'hdbits.db')
exit(1)
conn.execute("CREATE TABLE IF NOT EXISTS complete(id INT, name TEXT)")
conn.execute("CREATE TABLE IF NOT EXISTS watched(id INT, name TEXT)")
if singleTorrent:
fetchTorrent(torrentID, outputdir, sslVerify=sslVerify, allowDupes=allowDupes)
exit(1)
if updateFeatured:
#populateWatchlist(loadQueueFile(queueFilename))
loadQueueFile(queueFilename)
if getQueue:
scrapeFeaturedQueue(sslVerify=sslVerify)
exit(1)
#fetch any freeleech in newest 30
if fetchFree:
apiUrl = 'https://hdbits.org/api/torrents'
payload = {"username":username,"passkey":passkey,"limit":"30"}
try:
response = requests.post(apiUrl, data=json.dumps(payload), headers=headers, verify=sslVerify, timeout=5)
except requests.Timeout:
print "Connection Error: API Timeout exceeded"
exit(1)
except:
print "Connection Error: API down or unreachable"
exit(1)
torrentData = json.loads(response.text)
for x in torrentData['data']:
if x['freeleech'] == 'yes':
fetchTorrent(x['id'], outputdir, sslVerify=sslVerify, allowDupes=allowDupes)
#Checks the first 7 entries in the watchlist and downloads them if freeleech
if fetchFeatured:
cur = conn.cursor()
watchListTorrents = cur.execute('SELECT * FROM watched LIMIT 7')
i = 0
for row in watchListTorrents:
apiUrl = 'https://hdbits.org/api/torrents'
payload = {"username":username,"passkey":passkey,"limit":"1","id":row[1]}
try:
response = requests.post(apiUrl, data=json.dumps(payload), headers=headers, verify=sslVerify, timeout=5)
except requests.Timeout:
print "Connection Error: API Timeout exceeded"
exit(1)
except:
print "Connection Error: API down or unreachable"
exit(1)
torrentData = json.loads(response.text)
if isDownloaded(torrentData['data'][0]['id']):
conn.execute('DELETE FROM watched WHERE id=?', (row[1],))
conn.commit()
elif torrentData['data'][0]['freeleech'] == "yes":
fetchTorrent(torrentData['data'][0]['id'], outputdir, sslVerify=sslVerify, allowDupes=allowDupes)
conn.execute('DELETE FROM watched WHERE id=?', (row[1],))
conn.commit()
i+=1
if i == 0:
print "Warning: watchlist is empty"
cur.close()
#terrible way of handling this.. fix someday
if not (updateFeatured or fetchFeatured or fetchFree or singleTorrent or makeConf or showVersion or dispHelp or getQueue):
print "ERROR: No runmode specified"
displayHelp()
conn.commit()
conn.close()
if __name__ == "__main__":
main()