webmusic/Pages/playlist.cshtml
2023-06-29 16:50:29 +02:00

15 lines
381 B
Plaintext

@page
@using System.Web
@model IndexModel
@{
var path = HttpUtility.UrlDecode(Request.QueryString.Value.TrimStart('?'));
Layout = null;
Response.ContentType = "text/plain; charset=utf-8";
}
@if (Model.Path.Contains("..")) {
return;
}
@foreach (var file in Model.Files) {
@Html.Raw("https://" + Request.Host + "/" + Model.Fullpath + "/" + file.Replace("?", "%3F") + "\n")
}