django - 为 Django 休息框架 View 集操作生成模式

标签 django django-rest-framework core-api

根据 DRF 文档,我开始使用 ViewSet 并实现了 list, retrieve, create, update and destroy行动。我有另一个 APIView,我可以为其编写模式 (ManualSchema),当我导航到 /docs/ 时我能够使用文档以及实时端点进行交互。

我希望为每个 View 集操作创建单独的模式。我试着写一个,但它没有出现,所以我想我错过了一些东西。

这是代码:

class Clients(viewsets.ViewSet):

    '''

        Clients is DRF viewset which implements `create`, `update`, `read` actions by implementing create, update, list and retrieve functions respectively.

    '''
    list_schema = schemas.ManualSchema(fields=[
            coreapi.Field(
                'status',
                required=False,
                location='query',
                description='Accepted values are `active`, `inactive`'
            ),          
        ], 
        description='Clients list',
        encoding='application/x-www-form-urlencoded')

    @action(detail=True, schema=list_schema)
    def list(self, request):

        '''Logic for listing'''


    def retrieve(self, request, oid=None):

        '''Logic for retrieval'''


    create_schema = schemas.ManualSchema(fields=[
            coreapi.Field(
                'name',
                required=False,
                location='body',
            ),
            coreapi.Field(
                'location',
                required=False,
                location='body',
            ),              
        ], 
        description='Clients list',
        encoding='application/x-www-form-urlencoded')

    @action(detail=True, schema=create_schema)
    def create(self, request):

        '''Logic for creation'''

最佳答案

所以我会回答我自己的问题。我查看了用于模式生成的 DRF 源代码。我想出了计划并执行了以下步骤。

我继承了 rest_framework.schemas 中定义的 SchemaGenerator 类模块。下面是代码。

class CoreAPISchemaGenerator(SchemaGenerator):

    def get_links(self, request=None, **kwargs):

        links = LinkNode()

        paths = list()
        view_endpoints = list()

        for path, method, callback in self.endpoints:
            view = self.create_view(callback, method, request)
            path = self.coerce_path(path, method, view)
            paths.append(path)
            view_endpoints.append((path, method, view))

        if not paths:
            return None

        prefix = self.determine_path_prefix(paths)

        for path, method, view in view_endpoints:

            if not self.has_view_permissions(path, method, view):
                continue

            actions = getattr(view, 'actions', None)
            schemas = getattr(view, 'schemas', None)

            if not schemas:

                link = view.schema.get_link(path, method, base_url=self.url)
                subpath = path[len(prefix):]
                keys = self.get_keys(subpath, method, view, view.schema)
                insert_into(links, keys, link)

            else:

                action_map = getattr(view, 'action_map', None)
                method_name = action_map.get(method.lower())
                schema = schemas.get(method_name)

                link = schema.get_link(path, method, base_url=self.url)
                subpath = path[len(prefix):]
                keys = self.get_keys(subpath, method, view, schema)
                insert_into(links, keys, link)

        return links


    def get_keys(self, subpath, method, view, schema=None):

        if schema and hasattr(schema, 'endpoint_name'):

            return [schema.endpoint_name]

        else:

            if hasattr(view, 'action'):
                action = view.action
            else:

                if is_list_view(subpath, method, view):
                    action = 'list'
                else:
                    action = self.default_mapping[method.lower()]

            named_path_components = [
                component for component
                in subpath.strip('/').split('/')
                if '{' not in component
            ]

            if is_custom_action(action):

                if len(view.action_map) > 1:
                    action = self.default_mapping[method.lower()]
                    if action in self.coerce_method_names:
                        action = self.coerce_method_names[action]
                    return named_path_components + [action]
                else:
                    return named_path_components[:-1] + [action]

            if action in self.coerce_method_names:
                action = self.coerce_method_names[action]

            return named_path_components + [action]

我特意修改了两个函数获取链接 获取 key 因为这让我能够实现我想要的。

此外,对于我正在编写的 View 集中的所有功能,我专门为其创建了一个单独的模式。我只是创建了一个字典来保存函数名称到模式实例的映射。为了更好的方法,我创建了一个单独的文件来存储模式。例如。如果我有一个 View 集 Clients我创建了一个对应的ClientsSchema类并在返回模式实例的定义的静态方法中。

例子,

在我定义我的模式的文件中,
class ClientsSchema():

    @staticmethod
    def list_schema():

        schema = schemas.ManualSchema(
            fields=[],
            description=''
        )

        schema.endpoint_name = 'Clients Listing'

        return schema

在我的 apis.py 中,
class Clients(viewsets.ViewSet):

    schemas = {
        'list': ClientsSchema.list_schema()
    }

    def list(self, request, **kwargs):
        pass

此设置允许我为添加到 View 集中的任何类型的函数定义模式。除此之外,我还希望端点有一个可识别的名称,而不是由 DRF 生成的名称,例如 a > b > update > update .
为了实现这一点,我添加了 endpoint_name属性(property)给 schema返回的对象。该部分在 get_keys 中处理被覆盖的函数。

最后在 urls.py 中,我们包含文档的 url,我们需要使用我们的自定义模式生成器。像这样的东西,
urlpatterns.append(url(r'^livedocs/', include_docs_urls(title='My Services', generator_class=CoreAPISchemaGenerator)))

出于安全考虑,我不能分享任何快照。对此表示歉意。希望这可以帮助。

关于django - 为 Django 休息框架 View 集操作生成模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53154868/

相关文章:

django - Django 的多个永久连接?

python - Django Rest Framework 自定义身份验证

django-rest-framework 序列化器在多个 View 中的不同字段

c# - 对 Windows 如何获取音频线路名称感到困惑

ruby - 为什么 each_slice 不起作用?

Python Django Mysql like语句

python - django url 中两个或两个以上可选参数

python - Django flatpages 不工作

具有远程 jwt 身份验证的 Django REST

file-upload - 使用 Django REST Framework 和 coreapi 上传文件