| import typing as t |
|
|
| from .globals import current_app |
| from .globals import request |
| from .typing import ResponseReturnValue |
|
|
|
|
| http_method_funcs = frozenset( |
| ["get", "post", "head", "options", "delete", "put", "trace", "patch"] |
| ) |
|
|
|
|
| class View: |
| """Alternative way to use view functions. A subclass has to implement |
| :meth:`dispatch_request` which is called with the view arguments from |
| the URL routing system. If :attr:`methods` is provided the methods |
| do not have to be passed to the :meth:`~flask.Flask.add_url_rule` |
| method explicitly:: |
| |
| class MyView(View): |
| methods = ['GET'] |
| |
| def dispatch_request(self, name): |
| return f"Hello {name}!" |
| |
| app.add_url_rule('/hello/<name>', view_func=MyView.as_view('myview')) |
| |
| When you want to decorate a pluggable view you will have to either do that |
| when the view function is created (by wrapping the return value of |
| :meth:`as_view`) or you can use the :attr:`decorators` attribute:: |
| |
| class SecretView(View): |
| methods = ['GET'] |
| decorators = [superuser_required] |
| |
| def dispatch_request(self): |
| ... |
| |
| The decorators stored in the decorators list are applied one after another |
| when the view function is created. Note that you can *not* use the class |
| based decorators since those would decorate the view class and not the |
| generated view function! |
| """ |
|
|
| |
| methods: t.Optional[t.List[str]] = None |
|
|
| |
| provide_automatic_options: t.Optional[bool] = None |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| decorators: t.List[t.Callable] = [] |
|
|
| def dispatch_request(self) -> ResponseReturnValue: |
| """Subclasses have to override this method to implement the |
| actual view function code. This method is called with all |
| the arguments from the URL rule. |
| """ |
| raise NotImplementedError() |
|
|
| @classmethod |
| def as_view( |
| cls, name: str, *class_args: t.Any, **class_kwargs: t.Any |
| ) -> t.Callable: |
| """Converts the class into an actual view function that can be used |
| with the routing system. Internally this generates a function on the |
| fly which will instantiate the :class:`View` on each request and call |
| the :meth:`dispatch_request` method on it. |
| |
| The arguments passed to :meth:`as_view` are forwarded to the |
| constructor of the class. |
| """ |
|
|
| def view(*args: t.Any, **kwargs: t.Any) -> ResponseReturnValue: |
| self = view.view_class(*class_args, **class_kwargs) |
| return current_app.ensure_sync(self.dispatch_request)(*args, **kwargs) |
|
|
| if cls.decorators: |
| view.__name__ = name |
| view.__module__ = cls.__module__ |
| for decorator in cls.decorators: |
| view = decorator(view) |
|
|
| |
| |
| |
| |
| |
| view.view_class = cls |
| view.__name__ = name |
| view.__doc__ = cls.__doc__ |
| view.__module__ = cls.__module__ |
| view.methods = cls.methods |
| view.provide_automatic_options = cls.provide_automatic_options |
| return view |
|
|
|
|
| class MethodViewType(type): |
| """Metaclass for :class:`MethodView` that determines what methods the view |
| defines. |
| """ |
|
|
| def __init__(cls, name, bases, d): |
| super().__init__(name, bases, d) |
|
|
| if "methods" not in d: |
| methods = set() |
|
|
| for base in bases: |
| if getattr(base, "methods", None): |
| methods.update(base.methods) |
|
|
| for key in http_method_funcs: |
| if hasattr(cls, key): |
| methods.add(key.upper()) |
|
|
| |
| |
| |
| |
| if methods: |
| cls.methods = methods |
|
|
|
|
| class MethodView(View, metaclass=MethodViewType): |
| """A class-based view that dispatches request methods to the corresponding |
| class methods. For example, if you implement a ``get`` method, it will be |
| used to handle ``GET`` requests. :: |
| |
| class CounterAPI(MethodView): |
| def get(self): |
| return session.get('counter', 0) |
| |
| def post(self): |
| session['counter'] = session.get('counter', 0) + 1 |
| return 'OK' |
| |
| app.add_url_rule('/counter', view_func=CounterAPI.as_view('counter')) |
| """ |
|
|
| def dispatch_request(self, *args: t.Any, **kwargs: t.Any) -> ResponseReturnValue: |
| meth = getattr(self, request.method.lower(), None) |
|
|
| |
| |
| if meth is None and request.method == "HEAD": |
| meth = getattr(self, "get", None) |
|
|
| assert meth is not None, f"Unimplemented method {request.method!r}" |
| return current_app.ensure_sync(meth)(*args, **kwargs) |
|
|