using System; using System.Globalization; using System.Linq; using System.Linq.Expressions; using System.Management.Instrumentation; using System.Web.Mvc; using System.Web.Routing; using ClientDependency.Core.Config; using Umbraco.Core; using Umbraco.Core.Configuration; using Umbraco.Web.Mvc; using Umbraco.Web.WebApi; using Umbraco.Web.WebServices; namespace Umbraco.Web { /// /// Extension methods for UrlHelper /// public static class UrlHelperExtensions { /// /// Returns the base path (not including the 'action') of the MVC controller "ExamineManagementController" /// /// /// public static string GetExamineManagementServicePath(this UrlHelper url) { var result = url.GetUmbracoApiService("GetIndexerDetails"); return result.TrimEnd("GetIndexerDetails").EnsureEndsWith('/'); } /// /// Return the Url for a Web Api service /// /// /// /// /// /// public static string GetUmbracoApiService(this UrlHelper url, string actionName, RouteValueDictionary routeVals = null) where T : UmbracoApiController { return url.GetUmbracoApiService(actionName, typeof(T), routeVals); } /// /// Return the Base Url (not including the action) for a Web Api service /// /// /// /// /// public static string GetUmbracoApiServiceBaseUrl(this UrlHelper url, string actionName) where T : UmbracoApiController { return url.GetUmbracoApiService(actionName).TrimEnd(actionName); } public static string GetUmbracoApiServiceBaseUrl(this UrlHelper url, Expression> methodSelector) where T : UmbracoApiController { var method = Core.ExpressionHelper.GetMethodInfo(methodSelector); if (method == null) { throw new MissingMethodException("Could not find the method " + methodSelector + " on type " + typeof(T) + " or the result "); } return url.GetUmbracoApiService(method.Name).TrimEnd(method.Name); } public static string GetUmbracoApiService(this UrlHelper url, Expression> methodSelector) where T : UmbracoApiController { var method = Core.ExpressionHelper.GetMethodInfo(methodSelector); if (method == null) { throw new MissingMethodException("Could not find the method " + methodSelector + " on type " + typeof(T) + " or the result "); } var parameters = Core.ExpressionHelper.GetMethodParams(methodSelector); var routeVals = new RouteValueDictionary(parameters); return url.GetUmbracoApiService(method.Name, routeVals); } /// /// Return the Url for a Web Api service /// /// /// /// /// /// public static string GetUmbracoApiService(this UrlHelper url, string actionName, Type apiControllerType, RouteValueDictionary routeVals = null) { Mandate.ParameterNotNullOrEmpty(actionName, "actionName"); Mandate.ParameterNotNull(apiControllerType, "apiControllerType"); var area = ""; var apiController = UmbracoApiControllerResolver.Current.RegisteredUmbracoApiControllers .SingleOrDefault(x => x == apiControllerType); if (apiController == null) throw new InvalidOperationException("Could not find the umbraco api controller of type " + apiControllerType.FullName); var metaData = PluginController.GetMetadata(apiController); if (!metaData.AreaName.IsNullOrWhiteSpace()) { //set the area to the plugin area area = metaData.AreaName; } return url.GetUmbracoApiService(actionName, ControllerExtensions.GetControllerName(apiControllerType), area, routeVals); } /// /// Return the Url for a Web Api service /// /// /// /// /// /// public static string GetUmbracoApiService(this UrlHelper url, string actionName, string controllerName, RouteValueDictionary routeVals = null) { return url.GetUmbracoApiService(actionName, controllerName, "", routeVals); } /// /// Return the Url for a Web Api service /// /// /// /// /// /// /// public static string GetUmbracoApiService(this UrlHelper url, string actionName, string controllerName, string area, RouteValueDictionary routeVals = null) { Mandate.ParameterNotNullOrEmpty(controllerName, "controllerName"); Mandate.ParameterNotNullOrEmpty(actionName, "actionName"); if (routeVals == null) { routeVals = new RouteValueDictionary(new {httproute = "", area = area}); } else { var requiredRouteVals = new RouteValueDictionary(new { httproute = "", area = area }); requiredRouteVals.MergeLeft(routeVals); //copy it back now routeVals = requiredRouteVals; } return url.Action(actionName, controllerName, routeVals); } /// /// Return the Url for an action with a cache-busting hash appended /// /// /// /// /// /// public static string GetUrlWithCacheBust(this UrlHelper url, string actionName, string controllerName, RouteValueDictionary routeVals = null) { var applicationJs = url.Action(actionName, controllerName, routeVals); applicationJs = applicationJs + "?umb__rnd=" + GetCacheBustHash(); return applicationJs; } /// /// /// /// public static string GetCacheBustHash() { //make a hash of umbraco and client dependency version //in case the user bypasses the installer and just bumps the web.config or clientdep config //if in debug mode, always burst the cache if (GlobalSettings.DebugMode) { return DateTime.Now.Ticks.ToString(CultureInfo.InvariantCulture).GenerateHash(); } var version = UmbracoVersion.GetSemanticVersion().ToSemanticString(); return string.Format("{0}.{1}", version, ClientDependencySettings.Instance.Version).GenerateHash(); } } }