using System.Text.RegularExpressions;
using Microsoft.AspNetCore.Mvc;
using Newtonsoft.Json;
using VoidCat.Model;
using VoidCat.Services.Abstractions;
namespace VoidCat.Controllers;
public class IndexController : Controller
{
private readonly IWebHostEnvironment _webHost;
private readonly IFileMetadataStore _fileMetadata;
public IndexController(IFileMetadataStore fileMetadata, IWebHostEnvironment webHost)
{
_fileMetadata = fileMetadata;
_webHost = webHost;
}
///
/// Return html content with tags for file preview
///
///
///
[Route("{id}")]
[HttpGet]
public async Task FilePreview(string id)
{
id.TryFromBase58Guid(out var gid);
var manifestPath = Path.Combine(_webHost.WebRootPath, "asset-manifest.json");
if (!System.IO.File.Exists(manifestPath)) return StatusCode(500);
// old format hash, return 404
if (id.Length == 40 && Regex.IsMatch(id, @"[0-9a-z]{40}"))
{
Response.StatusCode = 404;
}
var jsonManifest = await System.IO.File.ReadAllTextAsync(manifestPath);
return View("~/Pages/Index.cshtml", new IndexModel
{
Meta = await _fileMetadata.Get(gid),
Manifest = JsonConvert.DeserializeObject(jsonManifest)!
});
}
public class IndexModel
{
public FileMeta? Meta { get; init; }
public AssetManifest Manifest { get; init; }
}
public class AssetManifest
{
public Dictionary Files { get; init; }
public List Entrypoints { get; init; }
}
}