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
|
# stdnum.wsgi - simple WSGI application to check numbers
#
# Copyright (C) 2017 Arthur de Jong.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
import cgi
import json
import os
import re
import sys
import inspect
sys.stdout = sys.stderr
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'python-stdnum'))
from stdnum.util import (
get_number_modules, get_module_name, get_module_description)
_template = None
def get_conversions(module, number):
"""Return the possible conversions for the number."""
for name, func in inspect.getmembers(module, inspect.isfunction):
if name.startswith('to_'):
args, varargs, varkw, defaults = inspect.getargspec(func)
if defaults:
args = args[:-len(defaults)]
if args == ['number']:
try:
conversion = func(number)
if conversion != number:
yield (name[3:], conversion)
except Exception:
pass
def info(module, number):
"""Return information about the number."""
compactfn = getattr(module, 'compact', lambda x: x)
formatfn = getattr(module, 'format', compactfn)
return dict(
number=formatfn(number),
compact=compactfn(number),
valid=module.is_valid(number),
module=module.__name__.split('.', 1)[1],
name=get_module_name(module),
description=get_module_description(module),
conversions=dict(get_conversions(module, number)))
def format(data):
description = cgi.escape(data['description']).replace('\n\n', '<br/>\n')
description = re.sub(
r'^[*] (.*)$', r'<ul><li>\1</li></ul>',
description, flags=re.MULTILINE)
description = re.sub(
r'\b((https?|ftp)://[^\s<]*[-\w+&@#/%=~_|])',
r'<a href="\1">\1</a>',
description, flags=re.IGNORECASE + re.UNICODE)
for name, conversion in data.get('conversions', {}).items():
description += '\n<br/><b><i>%s</i></b>: %s' % (
cgi.escape(name), cgi.escape(conversion))
return '<li><b>%s</b><br/>%s<p>%s</p></li>' % (
cgi.escape(data['name']),
cgi.escape(data['number']),
description)
def application(environ, start_response):
# read template if needed
global _template
if not _template:
basedir = os.path.join(
environ['DOCUMENT_ROOT'],
os.path.dirname(environ['SCRIPT_NAME']).strip('/'))
_template = open(os.path.join(basedir, 'template.html'), 'r').read()
is_ajax = environ.get(
'HTTP_X_REQUESTED_WITH', '').lower() == 'xmlhttprequest'
parameters = cgi.parse_qs(environ.get('QUERY_STRING', ''))
results = []
if 'number' in parameters:
number = parameters['number'][0]
results = [
info(module, number)
for module in get_number_modules()
if module.is_valid(number)]
if 'HTTP_X_REQUESTED_WITH' in environ:
start_response('200 OK', [('Content-Type', 'application/json')])
return [json.dumps(results, indent=2, sort_keys=True)]
start_response('200 OK', [('Content-Type', 'text/html')])
return _template % '\n'.join(format(data) for data in results)
|