forked from Pfuenzle/anime-loads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
animeloads.py
1093 lines (877 loc) · 38.5 KB
/
animeloads.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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import requests, http.cookiejar
import myjdapi
from lxml import etree
from lxml import html
from html_table_parser import HTMLTableParser
import subprocess
from Cryptodome.Cipher import AES
from binascii import unhexlify
import base64
import numpy, random, time
import re
import os, sys
from urllib.parse import unquote
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
import selenium.webdriver.chrome.options
import selenium.webdriver.firefox.options
#captcha
import time, json, hashlib, cv2, numpy, shutil
class animeloads:
FIREFOX = 0
CHROME = 1
UPLOADED = 0
DDOWNLOAD = 1
def __init__(self, user="", pw=""):
self.user = user
self.pw = pw
self.session = requests.session()
self.username = "anonymous"
self.isVIP = False
self.session.headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'}
if(user != "" and pw != ""):
self.login(self.user, self.pw)
def search(self, query):
searchdata = self.session.get(apihelper.getSearchURL(query), allow_redirects=False)
searchresults = []
if(searchdata.status_code == 302): #only 1 result, got redirect
redir_url = searchdata.headers['Location']
redir_anime = anime(redir_url, self.session, self)
#num__results = 1
result = searchResult(redir_url, redir_anime.getName(), redir_anime.getType(), redir_anime.getYear(), redir_anime.getCurrentEpisodes(), redir_anime.getMaxEpisodes(), ["UNKNOWN"], ["UNKNOWN"], redir_anime.getMainGenre(), self.session, self)
searchresults.append(result)
else:
search_dom = etree.HTML(searchdata.text)
searchboxes = search_dom.xpath("//div/div[@class='panel panel-default' and 1]/div[@class='panel-body' and 1]")
#num__results = len(searchboxes)
for result in searchboxes:
url = "" #done
name = "" #done
typ = "" #done
relDate = "" #done
epCountCurrent = 0 #done
epCountMax = 0 #done
dubLang = [] #done
subLang = [] #done
genre = "" #done
boxtree = etree.HTML(html.tostring(result))
result_links = boxtree.xpath("//a")
isFirst = True #Check if link is first entry, cause there are two
for link in result_links:
linktext = link.text
href = link.get('href')
#if linktext is None or href is None:
# continue
if("genre" in href):
genre = linktext
elif("https://www.anime-loads.org/anime-series" in href):
typ = "series"
elif("https://www.anime-loads.org/anime-movies" in href):
typ = "movie"
elif("https://www.anime-loads.org/bonus" in href):
typ = "bonus"
elif("https://www.anime-loads.org/ova" in href):
typ = "ova"
elif("https://www.anime-loads.org/special" in href):
typ = "special"
elif("https://www.anime-loads.org/web" in href):
typ = "web"
elif("https://www.anime-loads.org/year/" in href): #Year-element
yearsplit = href.split("/")
year = yearsplit[len(yearsplit)-1]
elif("https://www.anime-loads.org/media/" in href): #href to detail site, contains link and name
if(isFirst):
isFirst = False
continue
url = href
name = linktext
isFirst = True
result_span = boxtree.xpath("//span[@class='label label-gold']") #Span-Element for Episode count
for span in result_span:
epsplit = str(html.tostring(span)).split("/")
epCountCurrent = re.sub("[^0-9]", "", epsplit[1]) #Remove non-numbers from string
epCountMax = re.sub("[^0-9]", "", epsplit[2])
lang_class = boxtree.xpath("//div[@class='mt10 mb10' and 3]")[0] #Line which contains language flags, take first line as there is only one
langsplit = str(html.tostring(lang_class)).split("\"")
for substring in langsplit:
if("Sprache: " in substring):
dubLang.append(substring.replace("Sprache: ", ""))
elif("Untertitel: " in substring):
subLang.append(substring.replace("Untertitel: ", ""))
result = searchResult(url, name, typ, relDate, epCountCurrent, epCountMax, dubLang, subLang, genre, self.session, self)
searchresults.append(result)
return searchresults
def getAnime(self, url):
return anime(url, self.session, self)
def login(self, user, pw):
data = {"identity": user, "password": pw, "remember": "1"}
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'
}
r = self.session.post("https://www.anime-loads.org/auth/signin", data=data, headers=headers)
for c in self.session.cookies:
if("username" in c.value):
data = unquote(c.value)
jdata = json.loads(data)
for key in jdata:
if(key == "username"):
self.username = jdata[key]
elif(key == "is_vip"):
if(jdata[key] == True):
self.isVIP = True
return True
raise ALInvalidLoginException("Login data is invalid")
class utils:
@staticmethod
def decodeCNL(k, crypted):
# k_list = list(k)
# tmp = k_list[15]
# k_list[15] = k_list[16]
# k_list[16] = tmp
# k = "".join(k_list)
key = unhexlify(k)
data = base64.standard_b64decode(crypted)
obj = AES.new(key, AES.MODE_CBC, key)
d = obj.decrypt(data)
d = map(lambda x: x.strip(b'\r\x00'), d.split(b'\n'))
d = list(d)
return d
@staticmethod
def b(s):
s = str(s)
a = numpy.int32(0)
if(len(s) == 0):
return 0
for curChar in range(0, len(s)):
a = numpy.int32(a)
a = ((a << 5) - a + ord(s[curChar]))
return abs(a)
@staticmethod
def getAdString():
rand1 = random.uniform(0, 1)
first = ("" + str(utils.b(str(abs(rand1)))))
date = str(round(time.time() * 1000))
sec = ("" + str(utils.b(date)))
rand3 = random.uniform(0, 1)
third = ("" + str(utils.b(str(abs(rand3)))))
return first + "" + sec + third
@staticmethod
def addToJD(host, passwords, source, crypted, jk):
data = {
"passwords": str(passwords),
"source": str(source),
"jk": str(jk),
"crypted": str(crypted)
}
headers = {
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Firefox/78.0 Waterfox/78.7.0"
}
try:
req = requests.post("http://" + host + ":9666/flash/addcrypted2", data=data, headers=headers)
except:
return False
retdata = req.text
if(retdata == "failed"):
return False
else:
return True
@staticmethod
def addToMYJD(myjd_user, myjd_pass, myjd_device, links, pkgName, pwd):
jd=myjdapi.Myjdapi()
jd.set_app_key("animeloads")
jd.connect(myjd_user, myjd_pass)
jd.update_devices()
device=jd.get_device(myjd_device)
dl = device.linkgrabber
return dl.add_links([{
"autostart": True,
"links": links,
"packageName": pkgName,
"extractPassword": pwd,
"priority": "DEFAULT",
"downloadPassword": None,
"destinationFolder": None,
"overwritePackagizerRules": False
}])
@staticmethod
def getDifference(img1, img2):
res = cv2.absdiff(img1, img2)
res = res.astype(numpy.uint8)
percentage = (numpy.count_nonzero(res) * 100)/ res.size
return percentage
@staticmethod
def doCaptcha(cID, driver,session, b64):
captcha_baseURL = "https://www.anime-loads.org/files/captcha"
img_baseURL = captcha_baseURL + "?cid=0&hash="
#get captcha images
print("Getting captcha images")
js = "var xhr2 = new XMLHttpRequest(); \
xhr2.open('POST', 'https://www.anime-loads.org/files/captcha', false); \
xhr2.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); \
xhr2.send('cID=0&rT=1'); \
return xhr2.response;"
ajaxresponse = driver.execute_script(js)
captchaIDs = ajaxresponse.replace("\"", "").replace("[", "").replace("]", "").split(",")
request_cookies_browser = driver.get_cookies()
c = [session.cookies.set(c['name'], c['value']) for c in request_cookies_browser]
images = []
images_url = []
correct_index = -1
session.headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'}
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'
}
for c in captchaIDs:
url = img_baseURL + c
images_url.append(c)
# print(url)
response = session.get(url, stream=True, headers=headers)
# print(response.status_code)
# with open('img.png', 'wb') as out_file:
# shutil.copyfileobj(response.raw, out_file)
# del response
images.append(response.content)
print("Got captcha images")
#solve captcha images
print("Calculating correct captcha")
cv_images = []
for image in images:
nparr = numpy.frombuffer(image, numpy.uint8)
img_np = cv2.imdecode(nparr, cv2.IMREAD_COLOR)
cv_images.append(img_np)
perc = []
for img in cv_images:
iPerc = 0
for i in cv_images:
if(hashlib.md5(i).digest() == hashlib.md5(img).digest()):
pass
else:
iPerc += utils.getDifference(img, i)
perc.append(iPerc)
biggest = 0
bigI = -1
for idx, iPerc in enumerate(perc):
print("Percentage img " + str(idx) + ": " + str(iPerc))
if(iPerc > biggest):
biggest = iPerc
bigI = idx
print("Correct captcha: Image Nr. " + str(bigI + 1) + " with a confidence of " + str(biggest))
#send right captcha image
print("Checking if captcha is correct")
capURL = captcha_baseURL + "?cID=0&pC=" + images_url[bigI] + "&rT=2"
js = "var xhr2 = new XMLHttpRequest(); \
xhr2.open('POST', '" + captcha_baseURL + "', false); \
xhr2.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); \
xhr2.send('cID=0&pC=" + images_url[bigI] + "&rT=2'); \
return xhr2.response;"
ajaxresponse = driver.execute_script(js)
# if(ajaxresponse == "1"):
# print("Captcha was correct")
# else:
# print(ajaxresponse)
# return False
#parse right links
js = "var xhr = new XMLHttpRequest(); \
xhr.open('POST', 'https://www.anime-loads.org/ajax/captcha', false); \
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); \
xhr.send('enc=" + b64.decode('ascii') + "&response=captcha&captcha-idhf=0&captcha-hf=" + images_url[bigI] + "'); \
return xhr.response"
ajaxresponse = driver.execute_script(js)
print(ajaxresponse)
code = ""
message = ""
reflinks = ""
content_uploaded = ""
content_ddl = ""
response_json = json.loads(ajaxresponse)
return response_json
class apihelper:
@staticmethod
def getSearchURL(query):
return "https://www.anime-loads.org/search?q=" + query
class searchResult():
def __init__(self, url, name, typ, relDate, epCountCurrent, epCountMax, dubLang, subLang, genre, session, animeloads):
self.url = url
self.animeloads = animeloads
self.name = name
self.typ = typ
self.relDate = relDate
self.epCountCurrent = epCountCurrent
self.epCountMax = epCountMax
self.dubLang = dubLang
self.subLang = subLang
self.genre = genre
self.session = session
def getUrl(self):
return self.url
def getName(self):
return self.name
def getTyp(self):
return self.typ
def getReleaseDate(self):
return self.relDate
def getCurrentEpisodeCount(self):
return self.epCountCurrent
def getMaxEpisodeCount(self):
return self.epCountMax
def getDubLang(self):
return self.dubLang
def getSubLang(self):
return self.getSubLang
def getGenre(self):
return self.genre
def tostring(self):
return "Name: " + self.name + ", Typ: " + self.typ + ", Episoden: " + str(self.epCountCurrent) + "/" + str(self.epCountMax) + ", Dub: " + str(self.dubLang) + ", Subs: " + str(self.subLang)
def getAnime(self):
return anime(self.url, self.session, self.animeloads) #todo session redundant
class anime():
def __init__(self, url, session, animeloads):
self.url = url
self.animeloads = animeloads
self.session = session
self.gerName = ""
self.engName = ""
self.japName = ""
self.synonymes = []
self.type = ""
self.year = 0
self.runtime = 0
self.status = ""
self.mainGenre = ""
self.sideGenres = []
self.tags = []
self.releases = []
self.curEpisodes = 1337
self.maxEpisodes = 1337
self.updateInfo()
def updateInfo(self):
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36'
}
#Ad Adstring, an attempt to bypass adblock detection
#adstring = utils.getAdString()
#self.session.cookies.set("adcashufpv3", adstring, domain="www.anime-loads.org")
self.session.cookies.set("adsblocked", "0", domain="www.anime-loads.org")
self.session.cookies.set("hideads", "1", domain="www.anime-loads.org")
detailPage = self.session.get(self.url, headers=headers)
cock = [
{'name': c.name, 'value': c.value, 'domain': c.domain, 'path': c.path}
for c in self.session.cookies
]
#Load all JS scripts in an attempt to bypass adblock detection
# js = detailPage.text.split("<script type=\"text/javascript\" src=\"")
# for j in js:
# if(j[0:4] == "http"):
# self.session.get(j.split("\"")[0])
try:
p = HTMLTableParser()
p.feed(detailPage.text)
detailtable = p.tables[0]
for detail in detailtable:
leftEntry = detail[0]
rightEntry = detail[1]
if("Titel" == leftEntry):
if(self.japName == ""):
self.japName = rightEntry
elif(self.gerName == ""):
self.gerName = rightEntry
else:
self.engName = rightEntry
elif("Synonyme" == leftEntry):
self.synonymes = rightEntry.split(", ")
elif("Typ" == leftEntry):
if(rightEntry == "Anime Series"):
self.type = "series"
elif(rightEntry == "Web"):
self.type = "web"
elif(rightEntry == "Special"):
self.type = "special"
elif(rightEntry == "OVA"):
self.type = "ova"
elif(rightEntry == "Anime Film"):
self.type = "movie"
elif(rightEntry == "Bonus"):
self.type = "bonus"
elif("Episoden" == leftEntry):
epString = rightEntry.split("/")
try:
self.curEpisodes = int(epString[0])
except:
self.curEpisodes = 0
try:
self.maxEpisodes = int(epString[1])
except:
self.maxEpisodes = 999999
elif("Jahr" == leftEntry):
self.year = int(rightEntry)
elif("Laufzeit" == leftEntry):
runtimestring = re.sub("[^0-9]", "", rightEntry)
if(runtimestring == ""):
runtimestring = "0"
self.runtime = int(runtimestring)
elif("Status" == leftEntry):
self.status = rightEntry
elif("Hauptgenre" == leftEntry):
self.mainGenre = rightEntry
elif("Nebengenre" == leftEntry):
self.sideGenres = rightEntry.split(" ")
elif("Tags" == leftEntry):
self.tags = rightEntry.split(" ")
rel_dom = etree.HTML(detailPage.text)
releases_unparsed = rel_dom.xpath("//div[@id='downloads']/div[@class='row' and 1]/div[@class='col-sm-3' and 1]/ul[@class='nav nav-pills nav-stacked' and 1]")[0] #Get left list of releases
releases_dom = etree.HTML(html.tostring(releases_unparsed))
releases = releases_dom.xpath("//li") #Get single releases from list
numReleases = len(releases) - 1 #Last release is "Add release", ignoring
#rid, group, res, dubs, subs, format, size, password, anmerkung=""
for relIndex in range(0, numReleases):
relID = relIndex + 1
group = "" #done
res = ""
dubs = [] #done
subs = [] #done
videoformat = ""
size = 0
password = ""
anmerkung = ""
episodes = 0
table = p.tables[relID] #First release, get name and anmerkung
for idx in range(0, len(table)):
try:
tLeft = table[idx][0]
tRight = table[idx][1]
except:
continue
if(tLeft == "Release Gruppe"):
group = tRight
elif(tLeft == "Auflösung"):
res = tRight.split("x")[1] + "p"
elif(tLeft == "Typ"):
videoformat = tRight
elif(tLeft == "Größe"):
if("GB" in tRight):
size = float(re.sub("[^0-9.]", "", tRight)) * 1000
else:
size = float(re.sub("[^0-9.]", "", tRight))
elif(tLeft == "Passwort"):
password = tRight
elif(tLeft == "Release Anmerkungen"):
anmerkung = tRight
detailhtmlstring = str(html.tostring(releases[relIndex])) #Detail html from release for languages#
###################
#WARNING: UGLY CODE
###################
dublangsubstring = detailhtmlstring.split("title=\"Sprache: ") #HTMLCode split for Languages
for idx in range(1, len(dublangsubstring)): #Start with second result, first is always garbage
dublang = dublangsubstring[idx].split("\"")[0] #Cut string after ", language end there
dubs.append(dublang) #Add to dublist
sublangsubstring = detailhtmlstring.split("title=\"Untertitel: ") #HTMLcode split for Subtitles
for idx in range(1, len(sublangsubstring)): #Start with second result, first is always garbage
sublang = sublangsubstring[idx].split("\"")[0] #Cut string after ", subtitle end there
subs.append(sublang) #Add to sublist
##############
#UGLY CODE END
##############
#TODO Search for faster method for episode traversal SLOOOOOOOOOOW
epnum = 0
while(True):
singleEP = rel_dom.xpath("//a[@aria-controls='downloads_episodes_" + str(relID) + "_" + str(epnum) + "']")
# print("Episodenumber: " + str(epnum))
if(len(singleEP) == 0):
break
epnum += 1
tmprel = release(self.url, relID, group, res, dubs, subs, epnum, videoformat, size, password, anmerkung, detailPage.text, self.session)
self.releases.append(tmprel)
return True
except Exception as e:
exc_type, exc_obj, exc_tb = sys.exc_info()
fname = os.path.split(exc_tb.tb_frame.f_code.co_filename)[1]
if("IndexError" in str(exc_type)):
print("Fehler beim parsen. Dies liegt sehr wahrscheinlich daran, dass anime-loads gerade offline ist oder einen Fehler hat.\nWenn der Fehler länger besteht, bitte auf Github melden.")
else:
print("Fehler beim parsen, bitte auf Github melden")
print(exc_type, fname, exc_tb.tb_lineno)
return False
#quality: prefer 1080p/DTS
def getBestReleaseByQuality(self, releaseList=[]):
if(len(releaseList) == 0):
releaseList = self.releases
if(len(releaseList) == 1): #Only 1 release available, has to be the best
return releaseList[0]
rel720p = []
rel1080p = []
relrest = []
for rel in releaseList:
if(rel.getResolution() == "1080p"):
rel1080p.append(rel)
elif(rel.getResolution() == "720p"):
rel720p.append(rel)
else:
relrest.append(rel)
if(len(rel1080p) == 0): #Get best video quality
if(len(rel720p) == 0):
bestList = relrest
else:
bestList = rel720p
else:
bestList = rel1080p
#PCM>FLAC=DTS>AC3>AAC>MP3 #Thx to Toastkiste21 & Tanukichan
pointlist = []
for rel in bestList: #Get best audio quality
points = 0
audio = rel.getAudioCodec()
audiotypes = ["MP3", "AAC", "AC3", "DTS", "FLAC&DTS", "PCM"] #list, from worse to best
for idx, typ in enumerate(audiotypes):
audios = typ.split("&")
for splitaudio in audios:
if(splitaudio == audio):
points += idx #Audio found, add index to points(best has highest index)
else:
points += 1 #Other, unknown audio, only one point
pointlist.append(points)
bestrel = bestList[0]
bestscore = 0
for idx, rel in enumerate(bestList):
score = pointlist[idx]
codec = rel.getVideoCodec().lower()
if(codec == "x265" or codec == "hevc"):
score += 2
#print("Release " + str(rel.getID()) + " with " + str(score) + " points")
if(score > bestscore):
bestscore = score
bestrel = rel
return rel
#language: prefer GerDub/GerSub
def getBestReleaseByLanguage(self, releaseList=[]):
if(len(releaseList) == 0):
releaseList = self.releases
if(len(releaseList) == 1): #Only 1 release available, has to be the best
return releaseList[0]
dubreleases = []
for rel in releaseList:
for dub in rel.getDubs():
if(dub == "Deutsch"):
dubreleases.append(rel)
if(len(dubreleases) == 0):
for rel in releaseList:
for dub in rel.getDubs():
if(dub == "Englisch"):
dubreleases.append(rel)
if(len(dubreleases) == 0):
dubreleases = releaseList #No (Eng/Ger)dub releases, just going with subs
maxsubs = 0
relmaxsubs = []
for rel in dubreleases:
if(len(rel.getSubs()) >= maxsubs):
maxsubs = len(rel.getSubs())
relmaxsubs.append(rel)
return self.getBestReleaseByQuality(relmaxsubs)
#episodes: most episodes
def getBestReleaseByEpisodes(self, releaseList=[]):
if(len(releaseList) == 0):
releaseList = self.releases
if(len(releaseList) == 1): #Only 1 release available, has to be the best
return releaseList[0]
max = 0
maxrel = []
for rel in releaseList:
if(rel.getEpisodeCount() >= max):
max = rel.getEpisodeCount()
maxrel.append(rel)
return self.getBestReleaseByQuality(maxrel)
def getName(self):
if(self.gerName != ""):
return self.gerName
elif(self.engName != ""):
return self.engName
else:
return self.japName
def getNameGerman(self):
return self.gerName
def getNameJapanese(self):
return self.japName
def getNameEnglish(self):
return self.japName
def getURL(self):
return self.url
def getRuntime(self):
return self.runtime
def getType(self):
return self.type
def getSynonymes(self):
return self.synonymes
def getYear(self):
return self.year
def getCurrentEpisodes(self):
return self.curEpisodes
def getMaxEpisodes(self):
return self.maxEpisodes
def getStatus(self):
return self.status
def getMainGenre(self):
return self.mainGenre
def getSideGenres(self):
return self.sideGenres
def getTags(self):
return self.tags
def getReleases(self):
return self.releases
def tostring(self):
return str("[Jap/Ger/EngName]: " + self.japName + "/" + self.gerName + "/" + self.engName + ", [Synonyms]: " + str(self.synonymes) + ", [Type]: " + \
self.type + ", [Episodes]: " + str(self.curEpisodes) + "/" + str(self.maxEpisodes) + ", [Status]: " + self.status + ", [Year]: " + str(self.year) \
+ ", [Maingenre]: " + self.mainGenre + ", [Sidegenres]: " + str(self.sideGenres) + ", [Tags]: " + str(self.tags))
def downloadEpisode(self, episode, release, hoster, browser, browserlocation="", jdhost="", myjd_user="", myjd_pw="", myjd_device="", pkgName=""):
if(browser == "Firefox"):
browser = animeloads.FIREFOX
elif(browser == "Chrome"):
browser = animeloads.CHROME
try:
if("uploaded" in hoster.lower()):
hoster = animeloads.UPLOADED
elif("ddownload" in hoster.lower()):
hoster = animeloads.DDOWNLOAD
except:
pass
anime_identifier = self.url.split("/")[len(self.url.split("/"))-1] #Name of Anime, used for POST Request
unenc_request = "[\"media\",\"" + anime_identifier + "\",\"downloads\"," + str(release.getID()) + "," + str(int(episode)-1) + "]"
#print(unenc_request)
b64 = base64.b64encode(unenc_request.encode("ascii"))
data = {"enc": b64,
"response": "nocaptcha"}
######################################
#Requests code ohne benötigten Browser, wird allerdings als adblock erkannt
######################################
# headers = {
# 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36',
# "Referer": self.url,
# "Accept": "application/json, text/javascript, */*; q=0.01",
# "Accept-Language": "en-US,en;q=0.5",
# "Connection": "keep-alive",
# "Content-Length": "83",
# "Content-Type": "application/x-www-form-urlencoded; charset=UTF-8",
# "TE": "Trailers",
# "X-Requested-With": "XMLHttpRequest",
# "Cookie": "ci_session=a%3A4%3A%7Bs%3A10%3A%22session_id%22%3Bs%3A32%3A%227fda60af7999159425b7143f63cd5202%22%3Bs%3A10%3A%22ip_address%22%3Bs%3A13%3A%2289.244.161.10%22%3Bs%3A10%3A%22user_agent%22%3Bs%3A94%3A%22Mozilla%2F5.0+%28Windows+NT+10.0%3B+Win64%3B+x64%3B+rv%3A78.0%29+Gecko%2F20100101+Firefox%2F78.0+Waterfox%2F78.7.0%22%3Bs%3A13%3A%22last_activity%22%3Bi%3A1612911522%3B%7D3a772b4afefd4887a6eba3fffd868265c5769de6"
# }
# print("Session Cookies: " + str(cock))
# r = requests.post("https://webhook.site/75132056-b86a-4285-ab83-2cf785a202a1", data=data, headers=headers)
# rad = self.session.get("https://www.anime-loads.org/assets/pub/js/ads.com/ads.js?cb=13881964231")
# print(rad.text)
# print(rad.status_code)
# print(rad.cookies)
# r = self.session.post("https://www.anime-loads.org/ajax/captcha", data=data)
# print(r.text)
# r.raw.decode_content = True
# print("Response: " + str(r.text))
# cock = [
# {'name': c.name, 'value': c.value, 'domain': c.domain, 'path': c.path}
# for c in self.session.cookies
# ]
# print("d_Cock: " + str(cock))
# print("\n\n\n\ndl_Other cookies: " + str(r.cookies))
############################################################################
#Solange wird dieser Code benutzt, benötigt einen Browser, funktioniert aber
############################################################################
#Create Headless browser to bypass adblock detection
if(browser == animeloads.CHROME):
options = selenium.webdriver.chrome.options.Options()
options.headless = True
if(browserlocation != ""):
options.binary_location = browserlocation
driver = webdriver.Chrome(service_log_path=os.devnull, options=options)
elif(browser == animeloads.FIREFOX):
options = selenium.webdriver.firefox.options.Options()
options.headless = True
if(browserlocation != ""):
options.binary_location = browserlocation
driver = webdriver.Firefox(service_log_path=os.devnull, options=options)
else:
raise ALInvalidBrowserException("Nicht unterstützter Browser")
#Erster besuch auf der Seite, damit cookies hinzugefügt werden können
driver.get("https://www.anime-loads.org/assets/pub/images/logo.png")
#Login cookies auf Selenium übertragen
for c in self.session.cookies:
driver.add_cookie({'name': c.name, 'value': c.value})
driver.get(self.url)
#JS to make post request to get URLs
js = "var xhr = new XMLHttpRequest(); \
xhr.open('POST', 'https://www.anime-loads.org/ajax/captcha', false); \
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); \
xhr.send('enc=" + b64.decode('ascii') + "&response=nocaptcha'); \
return xhr.response"
ajaxresponse = driver.execute_script(js)
code = ""
message = ""
reflinks = ""
content_uploaded = ""
content_ddl = ""
response_json = json.loads(ajaxresponse)
print(response_json)
for key in response_json:
value = response_json[key]
if(key == "code"):
code = value
elif(key == "message"):
message = value
elif(key == "reflink"):
reflinks = value
elif(key == "content"):
try:
content_uploaded = value[0]
except:
pass
try:
content_ddl = value[1]
except:
pass
if(code != "success" and "noadblock" in message):
print("Need to solve a captcha")
cID = ""
response_json = utils.doCaptcha(cID, driver, self.session, b64)
if response_json == False:
return ALUnknownException("Ein unbekannter Fehler beim lesen der Hosterlinks aufgetreten, möglicherweise serverseitig.")
for key in response_json:
value = response_json[key]
if(key == "code"):
code = value
elif(key == "message"):
message = value
elif(key == "reflink"):
reflinks = value
elif(key == "content"):
try:
content_uploaded = value[0]
except:
pass
try:
content_ddl = value[1]
except:
pass
# raise ALCaptchaException("Captcha is needed to get download links")
elif(code != "success"):
return ALUnknownException("Ein unbekannter Fehler beim lesen der Hosterlinks aufgetreten, möglicherweise serverseitig.")
driver.quit()
reflinks = ""
k = ""
jk = ""
crypted = ""
if(hoster == animeloads.DDOWNLOAD):
cnldata = content_ddl
else:
cnldata = content_uploaded
for key in cnldata:
value = cnldata[key]
if(key == "links"):
reflinks = value
elif(key == "cnl"):
try:
k = value['jk']
except:
raise ALLinkExtractionException("AES-Key konnte nicht gelesen werden")
try:
crypted = value['crypted']
except:
raise ALLinkExtractionException("Linkdaten konnten nicht gelesen werden")
k_list = list(k)
tmp = k_list[15]
k_list[15] = k_list[16]
k_list[16] = tmp
k = "".join(k_list)
jk = "function f(){ return \'" + k + "\';}"
if(pkgName == ""):
pkgName = anime_identifier
if(jdhost != "" and myjd_user == ""):
return utils.addToJD(jdhost, release.getPassword(), self.url, crypted, jk)
elif(jdhost == "" and myjd_user != ""):
links_decoded = utils.decodeCNL(k, crypted)
links = []
linkstring = ""
for link in links_decoded:
linkstring += link.decode('ascii')
myjd_return = utils.addToMYJD(myjd_user, myjd_pw, myjd_device, linkstring, pkgName, release.getPassword())
try:
pkgID = myjd_return['id']
return True
except Exception as e:
print(e)
return False
else:
links_decoded = utils.decodeCNL(k, crypted)
links = []
for link in links_decoded:
links.append(link.decode('ascii'))
return links
class release:
@staticmethod
def parseAudioCodec(anmerkung):