40 lines
1.3 KiB
C#
40 lines
1.3 KiB
C#
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebfrontCore.Controllers
|
|
{
|
|
[Route("dynamic")]
|
|
public class DynamicFileController : BaseController
|
|
{
|
|
private static readonly IDictionary<string, string> _fileCache = new Dictionary<string, string>();
|
|
|
|
[Route("css/{fileName}")]
|
|
public async Task<IActionResult> Css(string fileName)
|
|
{
|
|
if (fileName.EndsWith(".css"))
|
|
{
|
|
#if DEBUG
|
|
string cssData = await System.IO.File.ReadAllTextAsync($"X:\\IW4MAdmin\\WebfrontCore\\wwwroot\\css\\{fileName}");
|
|
cssData = await Manager.MiddlewareActionHandler.Execute(cssData, "custom_css_accent");
|
|
return Content(cssData, "text/css");
|
|
#endif
|
|
if (!_fileCache.ContainsKey(fileName))
|
|
{
|
|
|
|
string path = $"wwwroot\\css\\{fileName}";
|
|
string data = await System.IO.File.ReadAllTextAsync(path);
|
|
data = await Manager.MiddlewareActionHandler.Execute(data, "custom_css_accent");
|
|
_fileCache.Add(fileName, data);
|
|
}
|
|
|
|
return Content(_fileCache[fileName], "text/css");
|
|
}
|
|
|
|
return StatusCode(400);
|
|
}
|
|
}
|
|
}
|