[feat] Partially implemented transmission system
This commit is contained in:
60
Abyss/Components/Controllers/Task/TaskController.cs
Normal file
60
Abyss/Components/Controllers/Task/TaskController.cs
Normal file
@@ -0,0 +1,60 @@
|
||||
using Abyss.Components.Services;
|
||||
using Abyss.Components.Static;
|
||||
using Abyss.Model;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
|
||||
namespace Abyss.Components.Controllers.Task;
|
||||
|
||||
|
||||
[ApiController]
|
||||
[Route("api/[controller]")]
|
||||
public class TaskController(ILogger<TaskController> logger, ConfigureService config, TaskService taskService) : Controller
|
||||
{
|
||||
public readonly string TaskFolder = Path.Combine(config.MediaRoot, "Tasks");
|
||||
|
||||
[HttpGet]
|
||||
public async Task<IActionResult> Query(string token)
|
||||
{
|
||||
// If the token is invalid, an empty list will be returned, which is part of the design
|
||||
return Json(await taskService.Query(token, Ip));
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public async Task<IActionResult> Create(string token, [FromBody] TaskCreation creation)
|
||||
{
|
||||
var r = await taskService.Create(token, Ip, creation);
|
||||
if(r == null)
|
||||
{
|
||||
return BadRequest();
|
||||
}
|
||||
return Ok(JsonConvert.SerializeObject(r, Formatting.Indented));
|
||||
}
|
||||
|
||||
[HttpGet("{id}")]
|
||||
public async Task<IActionResult> GetTask(string id)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
[HttpPatch("{id}")]
|
||||
public async Task<IActionResult> PutChip(string id)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
[HttpPost("{id}")]
|
||||
public async Task<IActionResult> VerifyChip(string id)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
[HttpDelete("{id}")]
|
||||
public async Task<IActionResult> DeleteTask(string id)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
private string Ip => HttpContext.Connection.RemoteIpAddress?.ToString() ?? "127.0.0.1";
|
||||
}
|
||||
Reference in New Issue
Block a user