using Microsoft.AspNetCore.Mvc; using PlotLine.Services; using PlotLine.ViewModels; namespace PlotLine.Controllers; public sealed class LocationsController(ILocationService locations) : Controller { public async Task Index(int projectId) { var model = await locations.GetLocationsAsync(projectId); return model is null ? NotFound() : View(model); } public async Task Create(int projectId) { var model = await locations.GetCreateAsync(projectId); return model is null ? NotFound() : View("Edit", model); } public async Task Edit(int id) { var model = await locations.GetEditAsync(id); return model is null ? NotFound() : View(model); } public async Task Details(int id) { var model = await locations.GetDetailAsync(id); return model is null ? NotFound() : View(model); } [HttpPost] [ValidateAntiForgeryToken] public async Task Save(LocationEditViewModel model) { if (!ModelState.IsValid) { return View("Edit", model); } var locationId = await locations.SaveAsync(model); return RedirectToAction(nameof(Details), new { id = locationId }); } [HttpPost] [ValidateAntiForgeryToken] public async Task Archive(int id, int projectId) { await locations.ArchiveAsync(id); TempData["ArchiveMessage"] = "Location archived. You can restore it from Archived Items."; return RedirectToAction(nameof(Index), new { projectId }); } [HttpPost] [ValidateAntiForgeryToken] public async Task AddRelationship(LocationRelationshipEditViewModel model) { await locations.SaveRelationshipAsync(model); return RedirectToAction(nameof(Details), new { id = model.FromLocationID }); } [HttpPost] [ValidateAntiForgeryToken] public async Task DropRelationship(LocationRelationshipEditViewModel model) { if (model.FromLocationID != model.ToLocationID) { await locations.SaveRelationshipAsync(model); } return RedirectToAction(nameof(Index), new { projectId = model.ProjectID }); } [HttpPost] [ValidateAntiForgeryToken] public async Task ArchiveRelationship(int id, int returnLocationId) { await locations.ArchiveRelationshipAsync(id); TempData["ArchiveMessage"] = "Location relationship archived."; return RedirectToAction(nameof(Details), new { id = returnLocationId }); } }