PlotDirector/PlotLine/Controllers/PlotLinesController.cs
2026-06-11 19:46:03 +01:00

52 lines
1.6 KiB
C#

using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using PlotLine.Services;
using PlotLine.ViewModels;
namespace PlotLine.Controllers;
[Authorize]
public sealed class PlotLinesController(IPlotService plots) : Controller
{
public async Task<IActionResult> Index(int projectId)
{
var model = await plots.GetPlotLinesAsync(projectId);
return model is null ? NotFound() : View(model);
}
public async Task<IActionResult> Create(int projectId)
{
var model = await plots.GetCreatePlotLineAsync(projectId);
return model is null ? NotFound() : View("Edit", model);
}
public async Task<IActionResult> Edit(int id)
{
var model = await plots.GetEditPlotLineAsync(id);
return model is null ? NotFound() : View(model);
}
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Save(PlotLineEditViewModel model)
{
if (!ModelState.IsValid)
{
var editModel = await plots.PopulatePlotLineFormAsync(model);
return editModel is null ? NotFound() : View("Edit", editModel);
}
await plots.SavePlotLineAsync(model);
return RedirectToAction(nameof(Index), new { projectId = model.ProjectID });
}
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Archive(int id, int projectId)
{
await plots.ArchivePlotLineAsync(id);
TempData["ArchiveMessage"] = "Plot line archived. You can restore it from Archived Items.";
return RedirectToAction(nameof(Index), new { projectId });
}
}