mirror of
https://github.com/chubin/wttr.in
synced 2024-12-26 11:43:08 +00:00
minor code cleanup
This commit is contained in:
parent
910ea7fca0
commit
f9e38c367d
1 changed files with 46 additions and 41 deletions
59
bin/srv.py
59
bin/srv.py
|
@ -23,7 +23,8 @@ import jinja2
|
|||
from flask import Flask, request, render_template, send_from_directory, send_file, make_response
|
||||
app = Flask(__name__)
|
||||
|
||||
MYDIR = os.path.abspath(os.path.dirname( os.path.dirname('__file__') ))
|
||||
MYDIR = os.path.abspath(
|
||||
os.path.dirname(os.path.dirname('__file__')))
|
||||
sys.path.append("%s/lib/" % MYDIR)
|
||||
import wttrin_png, parse_query
|
||||
from translations import get_message, FULL_TRANSLATION, PARTIAL_TRANSLATION, SUPPORTED_LANGS
|
||||
|
@ -37,7 +38,7 @@ from globals import GEOLITE, \
|
|||
MALFORMED_RESPONSE_HTML_PAGE, \
|
||||
IATA_CODES_FILE, \
|
||||
log, error, \
|
||||
LISTEN_PORT, LISTEN_HOST
|
||||
LISTEN_PORT, LISTEN_HOST, PLAIN_TEXT_AGENTS
|
||||
|
||||
from wttr import get_wetter, get_moon
|
||||
|
||||
|
@ -76,17 +77,24 @@ class Limits:
|
|||
}
|
||||
self.clear_counters()
|
||||
|
||||
def check_ip(self, ip):
|
||||
if ip == '5.9.243.177':
|
||||
def check_ip(self, ip_address):
|
||||
"""
|
||||
check if connections from `ip_address` are allowed
|
||||
and raise a RuntimeError exception if they are not
|
||||
"""
|
||||
if ip_address == '5.9.243.177':
|
||||
return
|
||||
self.clear_counters()
|
||||
for interval in self.intervals:
|
||||
if ip not in self.counter[interval]:
|
||||
self.counter[interval][ip] = 0
|
||||
self.counter[interval][ip] += 1
|
||||
if self.limit[interval] <= self.counter[interval][ip]:
|
||||
log("Too many queries: %s in %s for %s" % (self.limit[interval], interval, ip) )
|
||||
raise RuntimeError("Not so fast! Number of queries per %s is limited to %s" % (interval, self.limit[interval]))
|
||||
if ip_address not in self.counter[interval]:
|
||||
self.counter[interval][ip_address] = 0
|
||||
self.counter[interval][ip_address] += 1
|
||||
if self.limit[interval] <= self.counter[interval][ip_address]:
|
||||
log("Too many queries: %s in %s for %s"
|
||||
% (self.limit[interval], interval, ip_address))
|
||||
raise RuntimeError(
|
||||
"Not so fast! Number of queries per %s is limited to %s"
|
||||
% (interval, self.limit[interval]))
|
||||
|
||||
def clear_counters( self ):
|
||||
t = int( time.time() )
|
||||
|
@ -97,14 +105,6 @@ class Limits:
|
|||
|
||||
limits = Limits()
|
||||
|
||||
def error(text):
|
||||
print text
|
||||
raise RuntimeError(text)
|
||||
|
||||
def log(text):
|
||||
print text.encode('utf-8')
|
||||
logging.info( text.encode('utf-8') )
|
||||
|
||||
def is_ip(ip):
|
||||
if re.match('\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}', ip) is None:
|
||||
return False
|
||||
|
@ -150,10 +150,10 @@ def location_canonical_name(location):
|
|||
return location_alias[location.lower()]
|
||||
return location
|
||||
|
||||
def ascii_only(s):
|
||||
def ascii_only(string):
|
||||
try:
|
||||
for i in range(5):
|
||||
s = s.encode('utf-8')
|
||||
string = string.encode('utf-8')
|
||||
return True
|
||||
except:
|
||||
return False
|
||||
|
@ -403,7 +403,8 @@ def wttr(location = None):
|
|||
query_source_location = NOT_FOUND_LOCATION, None
|
||||
|
||||
location = location_canonical_name(location)
|
||||
log("%s %s %s %s %s %s" % (ip, user_agent, orig_location, location, query.get('use_imperial', False), lang))
|
||||
log("%s %s %s %s %s %s" \
|
||||
% (ip, user_agent, orig_location, location, query.get('use_imperial', False), lang))
|
||||
|
||||
# We are ready to return the answer
|
||||
if png_filename:
|
||||
|
@ -439,14 +440,19 @@ def wttr(location = None):
|
|||
url=request.url,
|
||||
)
|
||||
|
||||
if 'Malformed response' in str(output) or 'API key has reached calls per day allowed limit' in str(output):
|
||||
if 'Malformed response' in str(output) \
|
||||
or 'API key has reached calls per day allowed limit' in str(output):
|
||||
if html_output:
|
||||
return MALFORMED_RESPONSE_HTML_PAGE
|
||||
else:
|
||||
return get_message('CAPACITY_LIMIT_REACHED', lang).encode('utf-8')
|
||||
|
||||
if html_output:
|
||||
output = output.replace('</body>', TWITTER_BUTTON + GITHUB_BUTTON + GITHUB_BUTTON_3 + GITHUB_BUTTON_2 + GITHUB_BUTTON_FOOTER + '</body>')
|
||||
output = output.replace('</body>',
|
||||
(TWITTER_BUTTON
|
||||
+ GITHUB_BUTTON
|
||||
+ GITHUB_BUTTON_3
|
||||
+ GITHUB_BUTTON_2
|
||||
+ GITHUB_BUTTON_FOOTER) + '</body>')
|
||||
else:
|
||||
if query.get('days', '3') != '0':
|
||||
#output += '\n' + get_message('NEW_FEATURE', lang).encode('utf-8')
|
||||
|
@ -456,14 +462,13 @@ def wttr(location = None):
|
|||
#except RuntimeError, e:
|
||||
# return str(e)
|
||||
except Exception, e:
|
||||
if 'Malformed response' in str(e) or 'API key has reached calls per day allowed limit' in str(e):
|
||||
if 'Malformed response' in str(e) \
|
||||
or 'API key has reached calls per day allowed limit' in str(e):
|
||||
if html_output:
|
||||
return MALFORMED_RESPONSE_HTML_PAGE
|
||||
else:
|
||||
return get_message('CAPACITY_LIMIT_REACHED', lang).encode('utf-8')
|
||||
logging.error("Exception has occured", exc_info=1)
|
||||
return "ERROR"
|
||||
|
||||
server = WSGIServer((LISTEN_HOST, LISTEN_PORT), app)
|
||||
server.serve_forever()
|
||||
|
||||
|
|
Loading…
Reference in a new issue