mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
47 lines
1.8 KiB
Python
47 lines
1.8 KiB
Python
# coding=utf-8
|
||
"""
|
||
@project: maxkb
|
||
@Author:虎
|
||
@file: image.py
|
||
@date:2024/4/22 16:23
|
||
@desc:
|
||
"""
|
||
from drf_yasg import openapi
|
||
from drf_yasg.utils import swagger_auto_schema
|
||
from rest_framework.decorators import action
|
||
from rest_framework.parsers import MultiPartParser
|
||
from rest_framework.views import APIView
|
||
from rest_framework.views import Request
|
||
|
||
from common.auth import TokenAuth
|
||
from common.log.log import log
|
||
from common.response import result
|
||
from dataset.serializers.file_serializers import FileSerializer
|
||
from django.utils.translation import gettext_lazy as _
|
||
|
||
|
||
class FileView(APIView):
|
||
authentication_classes = [TokenAuth]
|
||
parser_classes = [MultiPartParser]
|
||
|
||
@action(methods=['POST'], detail=False)
|
||
@swagger_auto_schema(operation_summary=_('Upload file'),
|
||
operation_id=_('Upload file'),
|
||
manual_parameters=[openapi.Parameter(name='file',
|
||
in_=openapi.IN_FORM,
|
||
type=openapi.TYPE_FILE,
|
||
required=True,
|
||
description=_('Upload file'))],
|
||
tags=[_('file')])
|
||
@log(menu='file', operate='Upload file')
|
||
def post(self, request: Request):
|
||
return result.success(FileSerializer(data={'file': request.FILES.get('file')}).upload())
|
||
|
||
class Operate(APIView):
|
||
@action(methods=['GET'], detail=False)
|
||
@swagger_auto_schema(operation_summary=_('Get file'),
|
||
operation_id=_('Get file'),
|
||
tags=[_('file')])
|
||
def get(self, request: Request, file_id: str):
|
||
return FileSerializer.Operate(data={'id': file_id}).get()
|