當前位置: 首頁>>代碼示例>>Python>>正文


Python current_app.response_class方法代碼示例

本文整理匯總了Python中flask.current_app.response_class方法的典型用法代碼示例。如果您正苦於以下問題:Python current_app.response_class方法的具體用法?Python current_app.response_class怎麽用?Python current_app.response_class使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在flask.current_app的用法示例。


在下文中一共展示了current_app.response_class方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: _process

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def _process(self):
        config = Config()
        config.HTMLExporter.preprocessors = [CppHighlighter]
        config.HTMLExporter.template_file = 'basic'

        with self.attachment.file.open() as f:
            notebook = nbformat.read(f, as_version=4)

        html_exporter = HTMLExporter(config=config)
        body, resources = html_exporter.from_notebook_node(notebook)
        css_code = '\n'.join(resources['inlining'].get('css', []))

        nonce = str(uuid4())
        html = render_template('previewer_jupyter:ipynb_preview.html', attachment=self.attachment,
                               html_code=body, css_code=css_code, nonce=nonce)

        response = current_app.response_class(html)
        # Use CSP to restrict access to possibly malicious scripts or inline JS
        csp_header = "script-src cdn.mathjax.org 'nonce-{}';".format(nonce)
        response.headers['Content-Security-Policy'] = csp_header
        response.headers['X-Webkit-CSP'] = csp_header
        # IE10 doesn't have proper CSP support, so we need to be more strict
        response.headers['X-Content-Security-Policy'] = "sandbox allow-same-origin;"

        return response 
開發者ID:indico,項目名稱:indico-plugins,代碼行數:27,代碼來源:controllers.py

示例2: plistify

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def plistify(*args, **kwargs):
    """Similar to jsonify, which ships with Flask, this function wraps plistlib.dumps and sets up the correct
    mime type for the response."""
    if args and kwargs:
        raise TypeError('plistify() behavior undefined when passed both args and kwargs')
    elif len(args) == 1:  # single args are passed directly to dumps()
        data = args[0]
    else:
        data = args or kwargs

    mimetype = kwargs.get('mimetype', current_app.config['PLISTIFY_MIMETYPE'])

    return current_app.response_class(
        (plistlib.dumps(data), '\n'),
        mimetype=mimetype
    ) 
開發者ID:cmdmnt,項目名稱:commandment,代碼行數:18,代碼來源:utils.py

示例3: support_jsonp

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def support_jsonp(f):
    """
    Wraps JSONified output for JSONP
    https://gist.github.com/richardchien/7b7c2727feb3e8993845a3ce61bad808
    """

    @wraps(f)
    def decorated_function(*args, **kwargs):
        callback = request.args.get('callback', False)
        if callback:
            content = str(callback) + '(' + f(*args, **kwargs).data.decode('utf-8') + ')'
            return current_app.response_class(content, mimetype='application/json')
        else:
            return f(*args, **kwargs)

    return decorated_function 
開發者ID:richardchien-archive,項目名稱:blog-a,代碼行數:18,代碼來源:app.py

示例4: export_json

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def export_json(data, status, headers):
    """
    Creates a JSON response

    JSON content is encoded by utf-8, not unicode escape.

    Args:
        data: any type object that can dump to json
        status (int): http status code
        headers (dict): http headers
    """
    dumped = json.dumps(data, ensure_ascii=False)
    resp = current_app.response_class(
        dumped, status=status, headers=headers,
        content_type='application/json; charset=utf-8')
    return resp 
開發者ID:guyskk,項目名稱:flask-restaction,代碼行數:18,代碼來源:exporters.py

示例5: stream

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def stream(self):
        """
        A view function that streams server-sent events. Ignores any
        :mailheader:`Last-Event-ID` headers in the HTTP request.
        Use a "channel" query parameter to stream events from a different
        channel than the default channel (which is "sse").
        """
        channel = request.args.get('channel') or 'sse'

        @stream_with_context
        def generator():
            for message in self.messages(channel=channel):
                yield str(message)

        return current_app.response_class(
            generator(),
            mimetype='text/event-stream',
        ) 
開發者ID:singingwolfboy,項目名稱:flask-sse,代碼行數:20,代碼來源:flask_sse.py

示例6: _openapi_json

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def _openapi_json(self):
        """Serve JSON spec file"""
        # We don't use Flask.jsonify here as it would sort the keys
        # alphabetically while we want to preserve the order.
        return current_app.response_class(
            json.dumps(self.spec.to_dict(), indent=2),
            mimetype='application/json') 
開發者ID:marshmallow-code,項目名稱:flask-smorest,代碼行數:9,代碼來源:__init__.py

示例7: token

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def token(ttype=None):
    """
    This is a special token function. Each token type can define an
    additional API call, that does not need authentication on the REST API
    level.

    :return: Token Type dependent
    """
    tokenc = get_token_class(ttype)
    res = tokenc.api_endpoint(request, g)
    serial = getParam(request.all_data, "serial")
    user = get_user_from_param(request.all_data)
    g.audit_object.log({"success": 1,
                        "user": user.login,
                        "realm": user.realm,
                        "serial": serial,
                        "token_type": ttype})
    if res[0] == "json":
        return jsonify(res[1])
    elif res[0] in ["html", "plain"]:
        return current_app.response_class(res[1], mimetype="text/{0!s}".format(res[0]))
    elif len(res) == 2:
        return current_app.response_class(json.dumps(res[1]),
                                          mimetype="application/{0!s}".format(res[0]))
    else:
        return current_app.response_class(res[1], mimetype="application/octet-binary",
                                          headers=res[2]) 
開發者ID:privacyidea,項目名稱:privacyidea,代碼行數:29,代碼來源:ttype.py

示例8: get_actions

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def get_actions():
    """
    Returns the possible actions configured on the system.
    """
    return current_app.response_class(
        json.dumps([
            action.to_dict(domain=g.domain, user=g.user) for action in actions
        ]),
        mimetype='application/json') 
開發者ID:duo-labs,項目名稱:isthislegit,代碼行數:11,代碼來源:api.py

示例9: jsonify

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def jsonify(obj, status=200):
    json_string = pjson.dumps(format_json(obj, camel_case=True))
    return current_app.response_class(json_string, mimetype='application/json', status=status)


# Custom AMQP json encoding
# http://stackoverflow.com/questions/21631878/celery-is-there-a-way-to-write-custom-json-encoder-decoder
# Encoder function 
開發者ID:MacroConnections,項目名稱:DIVE-backend,代碼行數:10,代碼來源:serialization.py

示例10: result_response

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def result_response(serializer, data):
    """Construct flask response."""
    return current_app.response_class(
        response=serializer.dumps({'result': data}),
        mimetype='application/json'
    ) 
開發者ID:SwissDataScienceCenter,項目名稱:renku-python,代碼行數:8,代碼來源:__init__.py

示例11: error_response

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def error_response(code, reason):
    """Construct error response."""
    return current_app.response_class(
        response=JsonRPCResponse().dumps({
            'error': {
                'code': code,
                'reason': reason
            }
        }),
        mimetype='application/json'
    ) 
開發者ID:SwissDataScienceCenter,項目名稱:renku-python,代碼行數:13,代碼來源:__init__.py

示例12: client

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def client(self):
        return HookClient(current_app, current_app.response_class) 
開發者ID:getsentry,項目名稱:freight,代碼行數:4,代碼來源:base.py

示例13: setUp

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def setUp(self):
        self.client = AuthenticatedTestClient(current_app, current_app.response_class)
        super(TestCase, self).setUp() 
開發者ID:getsentry,項目名稱:freight,代碼行數:5,代碼來源:cases.py

示例14: _check_access

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def _check_access(self):
        from indico_storage_s3.plugin import S3StoragePlugin
        auth = request.authorization
        if not S3StoragePlugin.settings.get('bucket_info_enabled'):
            raise NotFound
        username = S3StoragePlugin.settings.get('username')
        password = S3StoragePlugin.settings.get('password')
        if not auth or not auth.password or auth.username != username or auth.password != password:
            response = current_app.response_class('Authorization required', 401,
                                                  {'WWW-Authenticate': 'Basic realm="Indico - S3 Buckets"'})
            raise Unauthorized(response=response) 
開發者ID:indico,項目名稱:indico-plugins,代碼行數:13,代碼來源:controllers.py

示例15: json_response

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import response_class [as 別名]
def json_response(data, code):

    json_data = json.dumps(data, indent=None)
    response = current_app.response_class(json_data, mimetype='application/json; charset=UTF-8')
    response.status_code = code

    return response 
開發者ID:internap,項目名稱:netman,代碼行數:9,代碼來源:api_utils.py


注:本文中的flask.current_app.response_class方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。