# stdnum.wsgi - simple WSGI application to check numbers
#
# Copyright (C) 2017-2024 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
"""Simple WSGI application to check numbers."""
import datetime
import html
import inspect
import json
import os
import re
import sys
import urllib.parse
sys.stdout = sys.stderr
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'python-stdnum'))
from stdnum.util import ( # noqa: E402,I001 (import after changes to sys.path)
get_module_description, get_module_name, get_number_modules, to_unicode)
_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_') or name.startswith('get_'):
signature = inspect.signature(func)
args = [p.name for p in signature.parameters.values() if p.default == p.empty]
if args == ['number'] and not name.endswith('binary'):
try:
prop = name.split('_', 1)[1].replace('_', ' ')
conversion = func(number)
if isinstance(conversion, datetime.date):
yield (prop, conversion.strftime('%Y-%m-%d'))
elif conversion != number:
yield (prop, to_unicode(conversion))
except Exception: # noqa: B902 (catch anything that goes wrong)
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=to_unicode(get_module_name(module)),
description=to_unicode(get_module_description(module)),
conversions=dict(get_conversions(module, number)))
def format(data):
"""Return an HTML snippet describing the number."""
description = html.escape(data['description']).replace('\n\n', '
\n')
description = re.sub(
r'^[*] (.*)$', r'
%s