1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00
Teknik/Utilities/TagHelpers/VersionHelper.cs
2018-10-25 22:22:53 -07:00

41 lines
1.3 KiB
C#

using Microsoft.AspNetCore.Razor.TagHelpers;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.IO;
namespace Teknik.Utilities.TagHelpers
{
[HtmlTargetElement("version")]
public class VersionHelper : TagHelper
{
private const string _verFile = "version.json";
public string Source { get; set; }
public override void Process(TagHelperContext context, TagHelperOutput output)
{
// Clear the initial wrap tag
output.TagName = string.Empty;
// Get the version file info
string dataDir = (string)AppDomain.CurrentDomain.GetData("DataDirectory");
string fullPath = Path.Combine(dataDir, _verFile);
if (File.Exists(fullPath))
{
using (StreamReader file = File.OpenText(fullPath))
using (JsonTextReader reader = new JsonTextReader(file))
{
JObject res = (JObject)JToken.ReadFrom(reader);
string commitVer = res["version"].ToString();
string commitHash = res["hash"].ToString();
output.Content.AppendHtml($"Version: {commitVer} - Hash: <a href=\"{Source}{commitHash}\">{commitHash.Truncate(10)}</a>");
}
}
}
}
}