2024-03-19 12:38:28 +00:00
|
|
|
|
# coding=utf-8
|
|
|
|
|
|
"""
|
|
|
|
|
|
@project: maxkb
|
|
|
|
|
|
@Author:虎
|
|
|
|
|
|
@file: system_setting.py
|
|
|
|
|
|
@date:2024/3/19 16:01
|
|
|
|
|
|
@desc:
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
from drf_yasg.utils import swagger_auto_schema
|
|
|
|
|
|
from rest_framework.decorators import action
|
|
|
|
|
|
from rest_framework.request import Request
|
|
|
|
|
|
from rest_framework.views import APIView
|
|
|
|
|
|
|
|
|
|
|
|
from common.auth import TokenAuth, has_permissions
|
2024-03-21 06:49:21 +00:00
|
|
|
|
from common.constants.permission_constants import RoleConstants
|
2024-03-19 12:38:28 +00:00
|
|
|
|
from common.response import result
|
|
|
|
|
|
from setting.serializers.system_setting import SystemSettingSerializer
|
|
|
|
|
|
from setting.swagger_api.system_setting import SystemSettingEmailApi
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SystemSetting(APIView):
|
|
|
|
|
|
class Email(APIView):
|
|
|
|
|
|
authentication_classes = [TokenAuth]
|
|
|
|
|
|
|
|
|
|
|
|
@action(methods=['PUT'], detail=False)
|
|
|
|
|
|
@swagger_auto_schema(operation_summary="创建或者修改邮箱设置",
|
|
|
|
|
|
operation_id="创建或者修改邮箱设置",
|
|
|
|
|
|
request_body=SystemSettingEmailApi.get_request_body_api(), tags=["邮箱设置"],
|
|
|
|
|
|
responses=result.get_api_response(SystemSettingEmailApi.get_response_body_api()))
|
|
|
|
|
|
@has_permissions(RoleConstants.ADMIN)
|
|
|
|
|
|
def put(self, request: Request):
|
|
|
|
|
|
return result.success(
|
|
|
|
|
|
SystemSettingSerializer.EmailSerializer.Create(
|
|
|
|
|
|
data=request.data).update_or_save())
|
|
|
|
|
|
|
|
|
|
|
|
@action(methods=['POST'], detail=False)
|
|
|
|
|
|
@swagger_auto_schema(operation_summary="测试邮箱设置",
|
|
|
|
|
|
operation_id="测试邮箱设置",
|
|
|
|
|
|
request_body=SystemSettingEmailApi.get_request_body_api(),
|
|
|
|
|
|
responses=result.get_default_response(),
|
|
|
|
|
|
tags=["邮箱设置"])
|
|
|
|
|
|
@has_permissions(RoleConstants.ADMIN)
|
|
|
|
|
|
def post(self, request: Request):
|
|
|
|
|
|
return result.success(
|
|
|
|
|
|
SystemSettingSerializer.EmailSerializer.Create(
|
|
|
|
|
|
data=request.data).is_valid())
|
|
|
|
|
|
|
|
|
|
|
|
@action(methods=['GET'], detail=False)
|
|
|
|
|
|
@swagger_auto_schema(operation_summary="获取邮箱设置",
|
|
|
|
|
|
operation_id="获取邮箱设置",
|
|
|
|
|
|
responses=result.get_api_response(SystemSettingEmailApi.get_response_body_api()),
|
|
|
|
|
|
tags=["邮箱设置"])
|
|
|
|
|
|
@has_permissions(RoleConstants.ADMIN)
|
|
|
|
|
|
def get(self, request: Request):
|
|
|
|
|
|
return result.success(
|
|
|
|
|
|
SystemSettingSerializer.EmailSerializer.one())
|