-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUtil.cs
72 lines (64 loc) · 2.61 KB
/
Util.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using atlas.Data;
using atlas.Servers;
using atlas.Servers.Gemini;
namespace atlas
{
public static class Util
{
public static string CenterString(string txt, int length)
{
var delta = Math.Abs(txt.Length - length);
for (int i = 0; i < delta; i++)
{
if (i % 2 == 0)
txt = " " + txt;
else
txt += " ";
}
return txt;
}
public static string CreateDirectoryListing(Context ctx, Location loc)
{
var sb = new StringBuilder();
foreach (var file in Directory.GetFiles(loc.AbsoluteRootPath))
{
var fi = new FileInfo(file);
sb.AppendLine($"=> {ctx.Uri.Scheme}://{ctx.Capsule.FQDN}/{loc.AbsoluteRootPath.Replace(ctx.Capsule.AbsoluteRootPath, "")}/{Path.GetFileName(file)} {CenterString(fi.CreationTimeUtc.ToString("yyyy-MM-dd"), 12)} | {CenterString($"{fi.Length / 1024 / 1024f:0.00}mb", 10)} | {Path.GetFileName(file)}");
}
return sb.ToString();
}
internal static string ReplaceTokens(string input, Context ctx)
{
Dictionary<string, Func<string>> tokens = new()
{
{ "%%{sub}%%", () =>
{
if (ctx is GeminiCtx gctx)
{
var name = gctx.Certificate?.Subject.Replace("CN=","");
return string.IsNullOrEmpty(name) ? "Anon" : name;
}
else
return "Spartan";
}
},
{ "%%{host}%%", () => ctx.Uri?.Host },
{ "%%{path}%%", () => ctx.Uri?.AbsolutePath },
{ "%%{scheme}%%", () => ctx.Uri?.Scheme },
{ "%%{date}%%", () => DateTime.Now.ToString("yyyy-MM-dd") },
{ "%%{time}%%", () => DateTime.Now.ToString("HH:mm:ss") },
{ "%%{datetime}%%", () => DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") },
{ "%%{rendertime}%%", () => (DateTime.UtcNow - ctx.RequestStart).TotalMilliseconds.ToString("0.00")},
{ "%%{ls}%%", () => CreateDirectoryListing(ctx, ctx.Capsule.GetLocation(ctx.Uri)) }
};
foreach (var token in tokens)
input = input.Replace(token.Key, token.Value());
input = input.Trim();
return input;
}
}
}