forked from HowDoesExcelWork/RocketMap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
600 lines (521 loc) · 23.7 KB
/
app.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
import calendar
import logging
from flask import Flask, abort, jsonify, render_template, request,\
make_response
from flask.json import JSONEncoder
from flask_compress import Compress
from datetime import datetime
from s2sphere import LatLng
from pogom.scout import perform_scout
from pogom.utils import get_args
from datetime import timedelta
from collections import OrderedDict
from bisect import bisect_left
from . import config
from .models import (Pokemon, Gym, Pokestop, ScannedLocation,
MainWorker, WorkerStatus, Token)
from .utils import now, dottedQuadToNum, get_blacklist
log = logging.getLogger(__name__)
compress = Compress()
class Pogom(Flask):
def __init__(self, import_name, **kwargs):
super(Pogom, self).__init__(import_name, **kwargs)
compress.init_app(self)
args = get_args()
# Global blist
if not args.disable_blacklist:
log.info('Retrieving blacklist...')
self.blacklist = get_blacklist()
# Sort & index for binary search
self.blacklist.sort(key=lambda r: r[0])
self.blacklist_keys = [
dottedQuadToNum(r[0]) for r in self.blacklist
]
else:
log.info('Blacklist disabled for this session.')
self.blacklist = []
self.blacklist_keys = []
# Routes
self.json_encoder = CustomJSONEncoder
self.route("/", methods=['GET'])(self.fullmap)
self.route("/raw_data", methods=['GET'])(self.raw_data)
self.route("/loc", methods=['GET'])(self.loc)
self.route("/next_loc", methods=['POST'])(self.next_loc)
self.route("/mobile", methods=['GET'])(self.list_pokemon)
self.route("/search_control", methods=['GET'])(self.get_search_control)
self.route("/search_control", methods=['POST'])(
self.post_search_control)
self.route("/stats", methods=['GET'])(self.get_stats)
self.route("/status", methods=['GET'])(self.get_status)
self.route("/status", methods=['POST'])(self.post_status)
self.route("/gym_data", methods=['GET'])(self.get_gymdata)
self.route("/bookmarklet", methods=['GET'])(self.get_bookmarklet)
self.route("/inject.js", methods=['GET'])(self.render_inject_js)
self.route("/submit_token", methods=['POST'])(self.submit_token)
self.route("/get_stats", methods=['GET'])(self.get_account_stats)
self.route("/robots.txt", methods=['GET'])(self.render_robots_txt)
self.route("/scout", methods=['GET'])(self.get_scout_data)
def get_scout_data(self):
encounterId = request.args.get('encounter_id')
p = Pokemon.get(Pokemon.encounter_id == encounterId)
return jsonify(perform_scout(p))
def render_robots_txt(self):
return render_template('robots.txt')
def get_bookmarklet(self):
args = get_args()
return render_template('bookmarklet.html',
domain=args.manual_captcha_domain)
def render_inject_js(self):
args = get_args()
return render_template('inject.js',
domain=args.manual_captcha_domain,
timer=args.manual_captcha_refresh)
def submit_token(self):
response = 'error'
if request.form:
token = request.form.get('token')
query = Token.insert(token=token, last_updated=datetime.utcnow())
query.execute()
response = 'ok'
r = make_response(response)
r.headers.add('Access-Control-Allow-Origin', '*')
return r
def get_account_stats(self):
stats = MainWorker.get_account_stats()
r = make_response(jsonify(**stats))
r.headers.add('Access-Control-Allow-Origin', '*')
return r
def validate_request(self):
args = get_args()
ip_addr = request.remote_addr
if ip_addr in args.trusted_proxies:
ip_addr = request.headers.get('X-Forwarded-For', ip_addr)
if self._ip_is_blacklisted(ip_addr):
log.debug('Denied access to %s.', ip_addr)
abort(403)
def _ip_is_blacklisted(self, ip):
if not self.blacklist:
return False
# Get the nearest IP range
pos = max(bisect_left(self.blacklist_keys, ip) - 1, 0)
ip_range = self.blacklist[pos]
start = dottedQuadToNum(ip_range[0])
end = dottedQuadToNum(ip_range[1])
return start <= dottedQuadToNum(ip) <= end
def set_search_control(self, control):
self.search_control = control
def set_heartbeat_control(self, heartb):
self.heartbeat = heartb
def set_location_queue(self, queue):
self.location_queue = queue
def set_current_location(self, location):
self.current_location = location
def get_search_control(self):
return jsonify({'status': not self.search_control.is_set()})
def post_search_control(self):
args = get_args()
if not args.search_control or args.on_demand_timeout > 0:
return 'Search control is disabled', 403
action = request.args.get('action', 'none')
if action == 'on':
self.search_control.clear()
log.info('Search thread resumed')
elif action == 'off':
self.search_control.set()
log.info('Search thread paused')
else:
return jsonify({'message': 'invalid use of api'})
return self.get_search_control()
def fullmap(self):
self.heartbeat[0] = now()
args = get_args()
if args.on_demand_timeout > 0:
self.search_control.clear()
search_display = True if (args.search_control and
args.on_demand_timeout <= 0) else False
scan_display = False if (args.only_server or args.fixed_location or
args.spawnpoint_scanning) else True
visibility_flags = {
'gyms': not args.no_gyms,
'pokemons': not args.no_pokemon,
'pokestops': not args.no_pokestops,
'gym_info': args.gym_info,
'encounter': args.encounter,
'scan_display': scan_display,
'search_display': search_display,
'fixed_display': not args.fixed_location
}
map_lat = self.current_location[0]
map_lng = self.current_location[1]
if request.args:
map_lat = request.args.get('lat') or self.current_location[0]
map_lng = request.args.get('lon') or self.current_location[1]
return render_template('map.html',
lat=map_lat,
lng=map_lng,
gmaps_key=config['GMAPS_KEY'],
lang=config['LOCALE'],
show=visibility_flags
)
def raw_data(self):
self.heartbeat[0] = now()
args = get_args()
if args.on_demand_timeout > 0:
self.search_control.clear()
d = {}
# Request time of this request.
d['timestamp'] = datetime.utcnow()
# Request time of previous request.
if request.args.get('timestamp'):
timestamp = int(request.args.get('timestamp'))
timestamp -= 1000 # Overlap, for rounding errors.
else:
timestamp = 0
swLat = request.args.get('swLat')
swLng = request.args.get('swLng')
neLat = request.args.get('neLat')
neLng = request.args.get('neLng')
oSwLat = request.args.get('oSwLat')
oSwLng = request.args.get('oSwLng')
oNeLat = request.args.get('oNeLat')
oNeLng = request.args.get('oNeLng')
# Previous switch settings.
lastgyms = request.args.get('lastgyms')
lastpokestops = request.args.get('lastpokestops')
lastpokemon = request.args.get('lastpokemon')
lastslocs = request.args.get('lastslocs')
lastspawns = request.args.get('lastspawns')
if request.args.get('luredonly', 'true') == 'true':
luredonly = True
else:
luredonly = False
# Current switch settings saved for next request.
if request.args.get('gyms', 'true') == 'true':
d['lastgyms'] = request.args.get('gyms', 'true')
if request.args.get('pokestops', 'true') == 'true':
d['lastpokestops'] = request.args.get('pokestops', 'true')
if request.args.get('pokemon', 'true') == 'true':
d['lastpokemon'] = request.args.get('pokemon', 'true')
if request.args.get('scanned', 'true') == 'true':
d['lastslocs'] = request.args.get('scanned', 'true')
if request.args.get('spawnpoints', 'false') == 'true':
d['lastspawns'] = request.args.get('spawnpoints', 'false')
# If old coords are not equal to current coords we have moved/zoomed!
if (oSwLng < swLng and oSwLat < swLat and
oNeLat > neLat and oNeLng > neLng):
newArea = False # We zoomed in no new area uncovered.
elif not (oSwLat == swLat and oSwLng == swLng and
oNeLat == neLat and oNeLng == neLng):
newArea = True
else:
newArea = False
# Pass current coords as old coords.
d['oSwLat'] = swLat
d['oSwLng'] = swLng
d['oNeLat'] = neLat
d['oNeLng'] = neLng
if (request.args.get('pokemon', 'true') == 'true' and
not args.no_pokemon):
if request.args.get('ids'):
ids = [int(x) for x in request.args.get('ids').split(',')]
d['pokemons'] = Pokemon.get_active_by_id(ids, swLat, swLng,
neLat, neLng)
elif lastpokemon != 'true':
# If this is first request since switch on, load
# all pokemon on screen.
d['pokemons'] = Pokemon.get_active(swLat, swLng, neLat, neLng)
else:
# If map is already populated only request modified Pokemon
# since last request time.
d['pokemons'] = Pokemon.get_active(swLat, swLng, neLat, neLng,
timestamp=timestamp)
if newArea:
# If screen is moved add newly uncovered Pokemon to the
# ones that were modified since last request time.
d['pokemons'] = d['pokemons'] + (
Pokemon.get_active(swLat, swLng, neLat, neLng,
oSwLat=oSwLat, oSwLng=oSwLng,
oNeLat=oNeLat, oNeLng=oNeLng))
if request.args.get('eids'):
# Exclude id's of pokemon that are hidden.
eids = [int(x) for x in request.args.get('eids').split(',')]
d['pokemons'] = [
x for x in d['pokemons'] if x['pokemon_id'] not in eids]
if request.args.get('reids'):
reids = [int(x) for x in request.args.get('reids').split(',')]
d['pokemons'] = d['pokemons'] + (
Pokemon.get_active_by_id(reids, swLat, swLng,
neLat, neLng))
d['reids'] = reids
if (request.args.get('pokestops', 'true') == 'true' and
not args.no_pokestops):
if lastpokestops != 'true':
d['pokestops'] = Pokestop.get_stops(swLat, swLng, neLat, neLng,
lured=luredonly)
else:
d['pokestops'] = Pokestop.get_stops(swLat, swLng, neLat, neLng,
timestamp=timestamp)
if newArea:
d['pokestops'] = d['pokestops'] + (
Pokestop.get_stops(swLat, swLng, neLat, neLng,
oSwLat=oSwLat, oSwLng=oSwLng,
oNeLat=oNeLat, oNeLng=oNeLng,
lured=luredonly))
if request.args.get('gyms', 'true') == 'true' and not args.no_gyms:
if lastgyms != 'true':
d['gyms'] = Gym.get_gyms(swLat, swLng, neLat, neLng)
else:
d['gyms'] = Gym.get_gyms(swLat, swLng, neLat, neLng,
timestamp=timestamp)
if newArea:
d['gyms'].update(
Gym.get_gyms(swLat, swLng, neLat, neLng,
oSwLat=oSwLat, oSwLng=oSwLng,
oNeLat=oNeLat, oNeLng=oNeLng))
if request.args.get('scanned', 'true') == 'true':
if lastslocs != 'true':
d['scanned'] = ScannedLocation.get_recent(swLat, swLng,
neLat, neLng)
else:
d['scanned'] = ScannedLocation.get_recent(swLat, swLng,
neLat, neLng,
timestamp=timestamp)
if newArea:
d['scanned'] = d['scanned'] + ScannedLocation.get_recent(
swLat, swLng, neLat, neLng, oSwLat=oSwLat,
oSwLng=oSwLng, oNeLat=oNeLat, oNeLng=oNeLng)
selected_duration = None
# for stats and changed nest points etc, limit pokemon queried.
for duration in (
self.get_valid_stat_input()["duration"]["items"].values()):
if duration["selected"] == "SELECTED":
selected_duration = duration["value"]
break
if request.args.get('seen', 'false') == 'true':
d['seen'] = Pokemon.get_seen(selected_duration)
if request.args.get('appearances', 'false') == 'true':
d['appearances'] = Pokemon.get_appearances(
request.args.get('pokemonid'), selected_duration)
if request.args.get('appearancesDetails', 'false') == 'true':
d['appearancesTimes'] = (
Pokemon.get_appearances_times_by_spawnpoint(
request.args.get('pokemonid'),
request.args.get('spawnpoint_id'),
selected_duration))
if request.args.get('spawnpoints', 'false') == 'true':
if lastspawns != 'true':
d['spawnpoints'] = Pokemon.get_spawnpoints(
swLat=swLat, swLng=swLng, neLat=neLat, neLng=neLng)
else:
d['spawnpoints'] = Pokemon.get_spawnpoints(
swLat=swLat, swLng=swLng, neLat=neLat, neLng=neLng,
timestamp=timestamp)
if newArea:
d['spawnpoints'] = d['spawnpoints'] + (
Pokemon.get_spawnpoints(
swLat, swLng, neLat, neLng,
oSwLat=oSwLat, oSwLng=oSwLng,
oNeLat=oNeLat, oNeLng=oNeLng))
if request.args.get('status', 'false') == 'true':
args = get_args()
d = {}
if args.status_page_password is None:
d['error'] = 'Access denied'
elif (request.args.get('password', None) ==
args.status_page_password):
d['main_workers'] = MainWorker.get_all()
d['workers'] = WorkerStatus.get_all()
return jsonify(d)
def loc(self):
d = {}
d['lat'] = self.current_location[0]
d['lng'] = self.current_location[1]
return jsonify(d)
def next_loc(self):
args = get_args()
if args.fixed_location:
return 'Location changes are turned off', 403
# Part of query string.
if request.args:
lat = request.args.get('lat', type=float)
lon = request.args.get('lon', type=float)
# From post requests.
if request.form:
lat = request.form.get('lat', type=float)
lon = request.form.get('lon', type=float)
if not (lat and lon):
log.warning('Invalid next location: %s,%s', lat, lon)
return 'bad parameters', 400
else:
self.location_queue.put((lat, lon, 0))
self.set_current_location((lat, lon, 0))
log.info('Changing next location: %s,%s', lat, lon)
return self.loc()
def list_pokemon(self):
# todo: Check if client is Android/iOS/Desktop for geolink, currently
# only supports Android.
pokemon_list = []
# Allow client to specify location.
lat = request.args.get('lat', self.current_location[0], type=float)
lon = request.args.get('lon', self.current_location[1], type=float)
origin_point = LatLng.from_degrees(lat, lon)
for pokemon in Pokemon.get_active(None, None, None, None):
pokemon_point = LatLng.from_degrees(pokemon['latitude'],
pokemon['longitude'])
diff = pokemon_point - origin_point
diff_lat = diff.lat().degrees
diff_lng = diff.lng().degrees
direction = (('N' if diff_lat >= 0 else 'S')
if abs(diff_lat) > 1e-4 else '') +\
(('E' if diff_lng >= 0 else 'W')
if abs(diff_lng) > 1e-4 else '')
entry = {
'id': pokemon['pokemon_id'],
'name': pokemon['pokemon_name'],
'card_dir': direction,
'distance': int(origin_point.get_distance(
pokemon_point).radians * 6366468.241830914),
'time_to_disappear': '%d min %d sec' % (divmod(
(pokemon['disappear_time'] - datetime.utcnow()).seconds,
60)),
'disappear_time': pokemon['disappear_time'],
'disappear_sec': (
pokemon['disappear_time'] - datetime.utcnow()).seconds,
'latitude': pokemon['latitude'],
'longitude': pokemon['longitude']
}
pokemon_list.append((entry, entry['distance']))
pokemon_list = [y[0] for y in sorted(pokemon_list, key=lambda x: x[1])]
return render_template('mobile_list.html',
pokemon_list=pokemon_list,
origin_lat=lat,
origin_lng=lon)
def get_valid_stat_input(self):
duration = request.args.get("duration", type=str)
sort = request.args.get("sort", type=str)
order = request.args.get("order", type=str)
valid_durations = OrderedDict()
valid_durations["1h"] = {
"display": "Last Hour",
"value": timedelta(hours=1),
"selected": ("SELECTED" if duration == "1h" else "")}
valid_durations["3h"] = {
"display": "Last 3 Hours",
"value": timedelta(hours=3),
"selected": ("SELECTED" if duration == "3h" else "")}
valid_durations["6h"] = {
"display": "Last 6 Hours",
"value": timedelta(hours=6),
"selected": ("SELECTED" if duration == "6h" else "")}
valid_durations["12h"] = {
"display": "Last 12 Hours",
"value": timedelta(hours=12),
"selected": ("SELECTED" if duration == "12h" else "")}
valid_durations["1d"] = {
"display": "Last Day",
"value": timedelta(days=1),
"selected": ("SELECTED" if duration == "1d" else "")}
valid_durations["7d"] = {
"display": "Last 7 Days",
"value": timedelta(days=7),
"selected": ("SELECTED" if duration == "7d" else "")}
valid_durations["14d"] = {
"display": "Last 14 Days",
"value": timedelta(days=14),
"selected": ("SELECTED" if duration == "14d" else "")}
valid_durations["1m"] = {
"display": "Last Month",
"value": timedelta(days=365 / 12),
"selected": ("SELECTED" if duration == "1m" else "")}
valid_durations["3m"] = {
"display": "Last 3 Months",
"value": timedelta(days=3 * 365 / 12),
"selected": ("SELECTED" if duration == "3m" else "")}
valid_durations["6m"] = {
"display": "Last 6 Months",
"value": timedelta(days=6 * 365 / 12),
"selected": ("SELECTED" if duration == "6m" else "")}
valid_durations["1y"] = {
"display": "Last Year",
"value": timedelta(days=365),
"selected": ("SELECTED" if duration == "1y" else "")}
valid_durations["all"] = {
"display": "Map Lifetime",
"value": 0,
"selected": ("SELECTED" if duration == "all" else "")}
if duration not in valid_durations:
valid_durations["1d"]["selected"] = "SELECTED"
valid_sort = OrderedDict()
valid_sort["count"] = {
"display": "Count",
"selected": ("SELECTED" if sort == "count" else "")}
valid_sort["id"] = {
"display": "Pokedex Number",
"selected": ("SELECTED" if sort == "id" else "")}
valid_sort["name"] = {
"display": "Pokemon Name",
"selected": ("SELECTED" if sort == "name" else "")}
if sort not in valid_sort:
valid_sort["count"]["selected"] = "SELECTED"
valid_order = OrderedDict()
valid_order["asc"] = {
"display": "Ascending",
"selected": ("SELECTED" if order == "asc" else "")}
valid_order["desc"] = {
"display": "Descending",
"selected": ("SELECTED" if order == "desc" else "")}
if order not in valid_order:
valid_order["desc"]["selected"] = "SELECTED"
valid_input = OrderedDict()
valid_input["duration"] = {
"display": "Duration", "items": valid_durations}
valid_input["sort"] = {"display": "Sort", "items": valid_sort}
valid_input["order"] = {"display": "Order", "items": valid_order}
return valid_input
def get_stats(self):
return render_template('statistics.html',
lat=self.current_location[0],
lng=self.current_location[1],
gmaps_key=config['GMAPS_KEY'],
valid_input=self.get_valid_stat_input()
)
def get_gymdata(self):
gym_id = request.args.get('id')
gym = Gym.get_gym(gym_id)
return jsonify(gym)
def get_status(self):
args = get_args()
if args.status_page_password is None:
abort(404)
return render_template('status.html')
def post_status(self):
args = get_args()
d = {}
if args.status_page_password is None:
abort(404)
if request.form.get('password', None) == args.status_page_password:
d['login'] = 'ok'
d['main_workers'] = MainWorker.get_all()
d['workers'] = WorkerStatus.get_all()
else:
d['login'] = 'failed'
return jsonify(d)
class CustomJSONEncoder(JSONEncoder):
def default(self, obj):
try:
if isinstance(obj, datetime):
if obj.utcoffset() is not None:
obj = obj - obj.utcoffset()
millis = int(
calendar.timegm(obj.timetuple()) * 1000 +
obj.microsecond / 1000
)
return millis
iterable = iter(obj)
except TypeError:
pass
else:
return list(iterable)
return JSONEncoder.default(self, obj)