重构项目结构,移除Assignment相关功能,优化Submission模块
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
Some checks failed
TechAct / explore-gitea-actions (push) Failing after 12s
This commit is contained in:
145
TechHelper.Server/Controllers/ExamTypeController.cs
Normal file
145
TechHelper.Server/Controllers/ExamTypeController.cs
Normal file
@@ -0,0 +1,145 @@
|
||||
using Entities.Contracts;
|
||||
using Entities.DTO;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Identity;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System.Diagnostics;
|
||||
using System.Net;
|
||||
using System.Security.Claims;
|
||||
using TechHelper.Services.Beta;
|
||||
using TechHelper.Services;
|
||||
|
||||
namespace TechHelper.Server.Controllers
|
||||
{
|
||||
/// <summary>
|
||||
/// 考试类型管理控制器
|
||||
/// 处理考试类型相关的操作,如创建、更新、删除考试类型等
|
||||
/// </summary>
|
||||
[Route("api/exam-type")]
|
||||
[ApiController]
|
||||
public class ExamTypeController : ControllerBase
|
||||
{
|
||||
private readonly IExamTypeService _examTypeService;
|
||||
private readonly UserManager<User> _userManager;
|
||||
|
||||
/// <summary>
|
||||
/// 初始化考试类型控制器
|
||||
/// </summary>
|
||||
/// <param name="examTypeService">考试类型服务</param>
|
||||
/// <param name="userManager">用户管理服务</param>
|
||||
public ExamTypeController(IExamTypeService examTypeService, UserManager<User> userManager)
|
||||
{
|
||||
_examTypeService = examTypeService;
|
||||
_userManager = userManager;
|
||||
}
|
||||
|
||||
#region 考试类型基本信息CRUD操作
|
||||
|
||||
/// <summary>
|
||||
/// 获取考试类型列表(支持搜索)
|
||||
/// </summary>
|
||||
/// <param name="query">查询参数</param>
|
||||
/// <returns>考试类型列表</returns>
|
||||
/// <response code="200">成功获取考试类型列表</response>
|
||||
/// <response code="400">获取失败</response>
|
||||
[HttpGet]
|
||||
[Authorize(Roles = "Teacher,Admin")]
|
||||
public async Task<IActionResult> GetAll([FromQuery] QueryParameter query)
|
||||
{
|
||||
var result = await _examTypeService.GetAllAsync(query);
|
||||
|
||||
if (!result.Status)
|
||||
{
|
||||
return BadRequest(result.Message);
|
||||
}
|
||||
|
||||
return Ok(result.Result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 根据ID获取考试类型详细信息
|
||||
/// </summary>
|
||||
/// <param name="id">考试类型ID</param>
|
||||
/// <returns>考试类型详细信息</returns>
|
||||
/// <response code="200">成功获取考试类型信息</response>
|
||||
/// <response code="400">考试类型未找到或获取失败</response>
|
||||
[HttpGet("{id}")]
|
||||
[Authorize(Roles = "Teacher,Admin")]
|
||||
public async Task<IActionResult> GetById(Guid id)
|
||||
{
|
||||
var result = await _examTypeService.GetAsync(id);
|
||||
|
||||
if (!result.Status)
|
||||
{
|
||||
return BadRequest(result.Message);
|
||||
}
|
||||
|
||||
return Ok(result.Result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 创建新考试类型
|
||||
/// </summary>
|
||||
/// <param name="model">考试类型数据传输对象</param>
|
||||
/// <returns>创建结果</returns>
|
||||
/// <response code="200">创建成功</response>
|
||||
/// <response code="400">创建失败</response>
|
||||
[HttpPost]
|
||||
[Authorize(Roles = "Admin, Teacher")]
|
||||
public async Task<IActionResult> Create([FromBody] ExamTypeDto model)
|
||||
{
|
||||
var result = await _examTypeService.AddAsync(model);
|
||||
|
||||
if (!result.Status)
|
||||
{
|
||||
return BadRequest(result.Message);
|
||||
}
|
||||
|
||||
return Ok(result.Result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 更新考试类型信息
|
||||
/// </summary>
|
||||
/// <param name="model">考试类型数据传输对象</param>
|
||||
/// <returns>更新结果</returns>
|
||||
/// <response code="200">更新成功</response>
|
||||
/// <response code="400">更新失败</response>
|
||||
[HttpPut]
|
||||
[Authorize(Roles = "Admin")]
|
||||
public async Task<IActionResult> Update([FromBody] ExamTypeDto model)
|
||||
{
|
||||
var result = await _examTypeService.UpdateAsync(model);
|
||||
|
||||
if (!result.Status)
|
||||
{
|
||||
return BadRequest(result.Message);
|
||||
}
|
||||
|
||||
return Ok(result.Result);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 删除考试类型
|
||||
/// </summary>
|
||||
/// <param name="id">考试类型ID</param>
|
||||
/// <returns>删除结果</returns>
|
||||
/// <response code="200">删除成功</response>
|
||||
/// <response code="400">删除失败</response>
|
||||
[HttpDelete("{id}")]
|
||||
[Authorize(Roles = "Admin")]
|
||||
public async Task<IActionResult> Delete(Guid id)
|
||||
{
|
||||
var result = await _examTypeService.DeleteAsync(id);
|
||||
|
||||
if (!result.Status)
|
||||
{
|
||||
return BadRequest(result.Message);
|
||||
}
|
||||
|
||||
return Ok(result.Message);
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user