-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppendVersionExtension.cs
58 lines (47 loc) · 1.75 KB
/
AppendVersionExtension.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
using System.IO;
using System.Security.Cryptography;
using System.Web.Caching;
namespace System.Web.Mvc
{
public static class AppendVersionExtension
{
public static string AppendVersion(this UrlHelper urlHelper, string contentPath)
{
var physicalPath = urlHelper.RequestContext.HttpContext.Server.MapPath(contentPath);
var version = TryGetCachedVersion(contentPath, physicalPath, urlHelper.RequestContext.HttpContext.Cache);
if (version != null)
{
var relativePath = urlHelper.Content(contentPath);
return AppendHash(relativePath, version);
}
return urlHelper.Content(contentPath);
}
public static string AppendHash(string relativePath, string version)
{
var divider = "?";
if (relativePath.Contains("?"))
divider = "&";
return relativePath + divider + version;
}
public static string TryGetCachedVersion(string contentPath, string physicalPath, Cache cache)
{
if (!File.Exists(physicalPath))
return null;
var version = cache[contentPath] as string;
if (string.IsNullOrEmpty(version))
{
version = ComputeHash(physicalPath);
cache.Insert(contentPath, version, new CacheDependency(physicalPath));
}
return version;
}
public static string ComputeHash(string physicalPath)
{
using (var stream = File.OpenRead(physicalPath))
using (var sha256 = SHA256.Create())
{
return Convert.ToBase64String(sha256.ComputeHash(stream));
}
}
}
}