Coverage for appr/api/info.py : 0%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
from __future__ import absolute_import, division, print_function
from flask import Blueprint, current_app, jsonify, request, url_for
import appr
info_app = Blueprint( 'info', __name__, )
@info_app.before_request def pre_request_logging(): jsonbody = request.get_json(force=True, silent=True) values = request.values.to_dict() if jsonbody: values.update(jsonbody)
current_app.logger.info("request", extra={ "remote_addr": request.remote_addr, "http_method": request.method, "original_url": request.url, "path": request.path, "data": values, "headers": dict(request.headers.to_list())})
@info_app.route("/") def index_discovery(): host = request.url_root domain = request.headers['Host'] return """<html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="appr-package" content="{domain}/{{name}} {host}/appr/api/v1/packages/{{name}}/pull"> </head> <body> </body> </html>""".format(domain=domain, host=host)
@info_app.route("/version") def version(): return jsonify({"appr-api": appr.__version__})
@info_app.route("/routes") def routes(): import urllib output = [] for rule in current_app.url_map.iter_rules(): options = {} for arg in rule.arguments: options[arg] = "[{0}]".format(arg) methods = ','.join(rule.methods) url = url_for(rule.endpoint, **options) line = urllib.unquote("{:50s} {:20s} {}".format(rule.endpoint, methods, url)) output.append(line) lines = [] for line in sorted(output): lines.append(line) return jsonify({"routes": lines}) |