-
Notifications
You must be signed in to change notification settings - Fork 81
/
apkbeastcrawler.py
executable file
·229 lines (181 loc) · 7.09 KB
/
apkbeastcrawler.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
#!/usr/bin/env python3
#
# Required Modules
# - beautifulsoup4
# - html5lib
# - requests
#
import http.client
import logging
import multiprocessing
import os
import re
import requests
import sys
from bs4 import BeautifulSoup
import unicodedata
from debug import Debug
from apkhelper import ApkVersionInfo
from reporthelper import ReportHelper
###################
# DEBUG VARS #
###################
# Debug.DEBUG = True
# Debug.READFROMFILE = True # Read from file for debugging
# Debug.SAVELASTFILE = True # Write to file upon each request
###################
# END: DEBUG VARS #
###################
###################
# Globals #
###################
# logging
logFile = '{0}.log'.format(os.path.basename(__file__))
logLevel = (logging.DEBUG if Debug.DEBUG else logging.INFO)
logFormat = '%(asctime)s %(levelname)s/%(funcName)s(%(process)-5d): %(message)s'
class ApkBeastCrawler(object):
def __init__(self, report, dlFiles=[], dlFilesBeta=[]):
self.report = report
self.dlFiles = dlFiles
self.dlFilesBeta = dlFilesBeta
self.sReDownloadUrl = "var url = '(?P<URL>.*)';"
self.reDownloadUrl = re.compile(self.sReDownloadUrl)
def getUrlFromRedirect(self, url):
"""
getUrlFromRedirect(url):
"""
link = ''
session = requests.Session()
logging.debug('Requesting2: ' + url)
resp = session.get(url)
if resp.status_code == http.client.OK:
html = unicodedata.normalize('NFKD', resp.text)
try:
m = self.reDownloadUrl.search(html)
if m:
link = m.group('URL')
except:
logging.exception('!!! Error parsing html from: "{0}"'.format(url))
return link
else:
logging.error('HTTPStatus2: {0}, when fetching redirect at {1}'.format(resp.status_code, url))
# END: def getUrlFromRedirect:
def downloadApk(self, avi, isBeta=False):
"""
downloadApk(avi, isBeta): Download the specified URL to APK file name
"""
if avi.download_src:
url = avi.download_src
else:
url = self.getUrlFromRedirect(avi.scrape_src)
if not url or url == '':
logging.error('Unable to determine redirect url for ' + avi.getFilename())
return
logging.info('Downloading "{0}" from: {1}'.format(avi.getFilename(), url))
apkname = ('beta.' if isBeta else '') + avi.getFilename()
try:
if os.path.exists(apkname):
logging.info('{0} already exists'.format(apkname))
return
if os.path.exists(os.path.join('.', 'apkcrawler', apkname)):
logging.info('{0} already exists (in ./apkcrawler/)'.format(apkname))
return
if os.path.exists(os.path.join('..', 'apkcrawler', apkname)):
logging.info('{0} already exists (in ../apkcrawler/)'.format(apkname))
return
# Open the url
session = requests.Session()
r = session.get(url)
with open(apkname, 'wb') as local_file:
local_file.write(r.content)
logging.debug(('beta:' if isBeta else 'reg :') + apkname)
return (('beta:' if isBeta else '' ) + apkname)
except OSError:
logging.exception('!!! Filename is not valid: "{0}"'.format(apkname))
# END: def downloadApk
def checkOneApp(self, apkid):
"""
checkOneApp(apkid):
"""
logging.info('Checking app: {0}'.format(apkid))
url = 'http://apkbeast.com/' + apkid
session = requests.Session()
logging.debug('Requesting1: ' + url)
resp = session.get(url)
if resp.status_code == http.client.OK:
html = unicodedata.normalize('NFKD', resp.text).encode('ascii', 'ignore')
try:
dom = BeautifulSoup(html, 'html5lib')
apkversion = dom.find('p', {'itemprop': 'softwareVersion'}).get_text()
apkurl = dom.find('a', {'class': 'da'})['href']
if apkurl:
apkversion = apkversion.strip()
avi = ApkVersionInfo(name=apkid,
ver=apkversion,
crawler_name=self.__class__.__name__
)
if apkurl[0] == '/': # a relative URL; takes us to an intermediate screen
avi.scrape_src = 'http://apkbeast.com' + apkurl
else: # direct download
avi.download_src = apkurl
if self.report.isThisApkNeeded(avi):
return self.downloadApk(avi)
except IndexError:
logging.info('{0} not supported by apk-dl.com ...'.format(apkid))
except:
logging.exception('!!! Error parsing html from: "{0}"'.format(url))
else:
logging.info('{0} not supported by APKBeast ...'.format(apkid))
# END: def checkOneApp:
def crawl(self, threads=3): # APKBeast kills the connection if too many threads
"""
crawl(): check all apk-dl apps
"""
# Start checking all apkids ...
p = multiprocessing.Pool(processes=threads, maxtasksperchild=5) # Run only 5 tasks before re-placing the process
r = p.map_async(unwrap_self_checkOneApp, list(zip([self] * len(list(self.report.getAllApkIds())), list(self.report.getAllApkIds()))), callback=unwrap_callback)
r.wait()
(self.dlFiles, self.dlFilesBeta) = unwrap_getresults()
# END: crawl():
# END: class ApkBeastCrawler
nonbeta = []
beta = []
def unwrap_callback(results):
for result in results:
if result:
if result.startswith('beta:'):
beta.append(result[5:])
else:
nonbeta.append(result)
def unwrap_getresults():
return (nonbeta, beta)
def unwrap_self_checkOneApp(arg, **kwarg):
return ApkBeastCrawler.checkOneApp(*arg, **kwarg)
if __name__ == "__main__":
"""
main(): single parameter for report_sources.sh output
"""
logging.basicConfig(filename=logFile, filemode='w', level=logLevel, format=logFormat)
logging.getLogger("requests").setLevel(logging.WARNING)
lines = ''
if len(sys.argv[1:]) == 1:
with open(sys.argv[1]) as report:
lines = report.readlines()
else:
lines = sys.stdin.readlines()
report = ReportHelper(lines)
if len(list(report.getAllApkIds())) == 0:
print('ERROR: expecting:')
print(' - 1 parameter (report file from output of report_sources.sh)')
print(' or ')
print(' - stdin from report_sources.sh')
exit(1)
crawler = ApkBeastCrawler(report)
crawler.crawl()
outputString = ' '.join(crawler.dlFiles)
if crawler.dlFilesBeta:
outputString += ' beta ' + ' '.join(crawler.dlFilesBeta)
if outputString:
print(outputString)
sys.stdout.flush()
logging.debug('Done ...')