Cleaned up ArchivesController

This commit is contained in:
Pat Hartl 2023-01-09 01:47:58 -06:00
parent bf8c7752cb
commit ed83489683

View file

@ -2,6 +2,7 @@
using LANCommander.Data.Models;
using LANCommander.Extensions;
using LANCommander.Models;
using LANCommander.Services;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System.IO.Compression;
@ -14,20 +15,22 @@ namespace LANCommander.Controllers
public class ArchivesController : Controller
{
private readonly DatabaseContext Context;
private readonly GameService GameService;
private readonly ArchiveService ArchiveService;
public ArchivesController(DatabaseContext context)
public ArchivesController(DatabaseContext context, GameService gameService, ArchiveService archiveService)
{
Context = context;
GameService = gameService;
ArchiveService = archiveService;
}
public async Task<IActionResult> Add(Guid? id)
{
if (id == null || Context.Games == null)
if (id == null)
return NotFound();
using (Repository<Game> repo = new Repository<Game>(Context, HttpContext))
{
var game = await repo.Find(id.GetValueOrDefault());
var game = await GameService.Get(id.GetValueOrDefault());
Archive lastVersion = null;
@ -40,16 +43,13 @@ namespace LANCommander.Controllers
LastVersion = lastVersion,
});
}
}
[HttpPost]
public async Task<IActionResult> Add(Guid? id, Archive archive)
{
archive.Id = Guid.Empty;
using (Repository<Game> gameRepo = new Repository<Game>(Context, HttpContext))
{
var game = await gameRepo.Find(id.GetValueOrDefault());
var game = await GameService.Get(id.GetValueOrDefault());
archive.Game = game;
@ -58,54 +58,36 @@ namespace LANCommander.Controllers
if (ModelState.IsValid)
{
using (Repository<Archive> archiveRepo = new Repository<Archive>(Context, HttpContext))
{
archive = await archiveRepo.Add(archive);
await archiveRepo.SaveChanges();
}
await ArchiveService.Update(archive);
return RedirectToAction("Edit", "Games", new { id = id });
}
}
return View(archive);
}
public async Task<IActionResult> Download(Guid id)
{
using (Repository<Archive> repo = new Repository<Archive>(Context, HttpContext))
{
var archive = await repo.Find(id);
var archive = await ArchiveService.Get(id);
var content = new FileStream(Path.Combine("Upload", archive.ObjectKey), FileMode.Open, FileAccess.Read, FileShare.Read);
var content = new FileStream($"Upload/{archive.ObjectKey}".ToPath(), FileMode.Open, FileAccess.Read, FileShare.Read);
return File(content, "application/octet-stream", $"{archive.Game.Title.SanitizeFilename()}.zip");
}
}
public async Task<IActionResult> Delete(Guid? id)
{
Guid gameId;
var archive = await ArchiveService.Get(id.GetValueOrDefault());
var gameId = archive.Game.Id;
using (Repository<Archive> repo = new Repository<Archive>(Context, HttpContext))
{
var archive = await repo.Find(id.GetValueOrDefault());
gameId = archive.Game.Id;
System.IO.File.Delete(Path.Combine("Upload", archive.ObjectKey));
repo.Delete(archive);
await repo.SaveChanges();
}
await ArchiveService.Delete(archive);
return RedirectToAction("Edit", "Games", new { id = gameId });
}
public async Task<IActionResult> Validate(Guid id, Archive archive)
{
var path = Path.Combine("Upload", id.ToString());
var path = $"Upload/{id}".ToPath();
string manifestContents = String.Empty;
long compressedSize = 0;
@ -163,25 +145,18 @@ namespace LANCommander.Controllers
return BadRequest("The manifest file is invalid or corrupt.");
}
using (var repo = new Repository<Game>(Context, HttpContext))
{
var game = await repo.Find(archive.Game.Id);
var game = await GameService.Get(archive.Game.Id);
if (game == null)
return BadRequest("The related game is missing or corrupt.");
archive.Game = game;
}
using (var repo = new Repository<Archive>(Context, HttpContext))
{
archive.Id = Guid.Empty;
archive.CompressedSize = compressedSize;
archive.UncompressedSize = uncompressedSize;
archive.ObjectKey = id.ToString();
archive = await repo.Add(archive);
await repo.SaveChanges();
archive = await ArchiveService.Update(archive);
return Json(new
{
@ -190,5 +165,4 @@ namespace LANCommander.Controllers
});
}
}
}
}