我正在开发一个多租户MVC 4应用程序,用户可以在其中使用一些主题。
他可以通过添加到主题表的相对路径来覆盖每个单一的资源(css,js,jpg,png,ect ......),例如 /Scripts/booking.js
使用哪个租户是通过网址计算的,例如 http:// myapp / tenant / Booking / New 这只是应该使用的连接字符串的名称。
因此,如果针对特定资源请求,我首先需要检查数据库中是否存在此ressource的覆盖版本,如果找到则使用它。
现在,我想实现microsoft在System.Web.Optimization命名空间中提供的新的捆绑和缩小功能。但我无法弄清楚如何实现数据库中的文件。
我已经制作了自己的JsMinify实现原型来实现这个目标
public class MyJsMinify : JsMinify
{
private static byte[] GetContentFile(FileInfo filePath)
{
string fullName = filePath.FullName;
int indexOf = fullName.IndexOf("content", StringComparison.OrdinalIgnoreCase);
string substring = fullName.Substring(indexOf + 8).Replace(@"\\", "/").Replace(@"\", "/");
ThemingService themingService = ObjectFactory.GetInstance<ThemingService>();
Theming myTheming = themingService.Find(new ThemingFilter { FilePathLike = substring });
if (myTheming == null)
{
return themingService.GetContentFile(fullName);
}
return myTheming.FileData;
}
public override void Process(BundleContext context, BundleResponse response)
{
StringBuilder newContent = new StringBuilder();
foreach (FileInfo fileInfo in response.Files)
{
using (MemoryStream memoryStream = new MemoryStream(GetContentFile(fileInfo)))
{
using (StreamReader myStreamReader = new StreamReader(memoryStream, true))
{
newContent.AppendLine(myStreamReader.ReadToEnd());
}
}
}
response.Content = newContent.ToString();
base.Process(context, response);
}
}
如果我处于发布模式,这似乎有效,但在开发时,我想要独立引用每个单独的脚本。这在整个捆绑和缩小框架中自动完成。框架生成的Ressource URL如下所示
<script src="/myapp/Content/Scripts/jquery-1.9.0.js"></script>
但应该看起来像这样
<script src="/myapp/tenant/Content/Scripts/jquery-1.9.0.js"></script>
我已配置以下路由:
routeCollection.MapRoute("Content1", "{mandator}/Content/{*filePath}", new { mandator = defaultMandator, controller = "Environment", action = "ContentFile" }, new { mandator = mandatorConstraints });
routeCollection.MapRoute("Content2", "Content/{*filePath}", new { mandator = defaultMandator, controller = "Environment", action = "ContentFile" }, new { mandator = mandatorConstraints });
ContentFile方法如下所示
[AcceptVerbs(HttpVerbs.Get)]
[AcceptType(HttpTypes.All)]
[OutputCache(CacheProfile = "ContentFile")]
public ActionResult ContentFile(string filePath)
{
if (string.Compare(filePath, "Stylesheets/Import.css", StringComparison.OrdinalIgnoreCase) == 0)
{
return GetContentImport(CssFileArray, "Stylesheets/");
}
if (string.Compare(filePath, "Stylesheets/ImportOutlook.css", StringComparison.OrdinalIgnoreCase) == 0)
{
return GetContentImport(OutlookCssFileArray, "Stylesheets/");
}
if (string.Compare(filePath, "Scripts/OutlookAddin/Import.js", StringComparison.OrdinalIgnoreCase) == 0)
{
return GetContentImport(OutlookJsFileArray, "Scripts/");
}
return new FileContentResult(GetContentFile(filePath), MimeType(filePath));
}
有人知道如何实现这个目标吗?是否有多租户模式?
关心卢卡斯
答案 0 :(得分:0)
所以我不确定我是否完全理解你的场景,但我相信这就是VirtualPathProviders可以用来做的事情。
我们在1.1-alpha1版本中添加了支持,因此bundle会自动使用在ASP.NET中注册的VirtualPathProvider来获取文件的内容。
如果您要编写一个能够始终返回正确版本的〜/ Scripts / booking.js的自定义VPP,那么一切都应该正常工作。