using System; using System.Linq; using System.Management.Instrumentation; using System.Net.Http.Formatting; using System.Web.Mvc; using Umbraco.Core; using Umbraco.Web.Mvc; using Umbraco.Web.WebApi; using Umbraco.Web.WebApi.Filters; using umbraco.BusinessLogic; using umbraco.cms.presentation.Trees; namespace Umbraco.Web.Trees { //NOTE: We will of course have to authorized this but changing the base class once integrated [PluginController("UmbracoTrees")] public class ApplicationTreeApiController : UmbracoApiController //UmbracoAuthorizedApiController { /// /// Remove the xml formatter... only support JSON! /// /// protected override void Initialize(global::System.Web.Http.Controllers.HttpControllerContext controllerContext) { base.Initialize(controllerContext); controllerContext.Configuration.Formatters.Remove(controllerContext.Configuration.Formatters.XmlFormatter); } /// /// Returns the tree nodes for an application /// /// /// /// [HttpQueryStringFilter("queryStrings")] public TreeNodeCollection GetApplicationTrees(string application, FormDataCollection queryStrings) { if (application == null) throw new ArgumentNullException("application"); //find all tree definitions that have the current application alias var appTrees = ApplicationTree.getApplicationTree(application).Where(x => x.Initialize).ToArray(); if (appTrees.Count() == 1) { //return the nodes for the one tree assigned return GetNodeCollection(appTrees.Single(), "-1", queryStrings); } var collection = new TreeNodeCollection(); foreach (var tree in appTrees) { //return the root nodes for each tree in the app //collection.Add(); //GetNodeCollection(tree, "-1", queryStrings); } return null; } /// /// Returns the tree data for a specific tree for the children of the id /// /// /// /// /// [HttpQueryStringFilter("queryStrings")] public TreeNodeCollection GetTreeData(string treeType, string id, FormDataCollection queryStrings) { if (treeType == null) throw new ArgumentNullException("treeType"); //get the configured tree var foundConfigTree = ApplicationTree.getByAlias(treeType); if (foundConfigTree == null) throw new InstanceNotFoundException("Could not find tree of type " + treeType + " in the trees.config"); return GetNodeCollection(foundConfigTree, id, queryStrings); } /// /// Get the node collection for the tree, try loading from new controllers first, then from legacy trees /// /// /// /// /// private TreeNodeCollection GetNodeCollection(ApplicationTree configTree, string id, FormDataCollection queryStrings) { if (configTree == null) throw new ArgumentNullException("configTree"); var byControllerAttempt = configTree.TryLoadFromControllerTree(id, queryStrings, ControllerContext, Request); if (byControllerAttempt.Success) { return byControllerAttempt.Result; } var legacyAttempt = configTree.TryLoadFromLegacyTree(id, queryStrings, Url); if (legacyAttempt.Success) { return legacyAttempt.Result; } throw new ApplicationException("Could not render a tree for type " + configTree.Alias); } //Temporary, but necessary until we refactor trees in general internal class TreeParams : ITreeService { public string NodeKey { get; set; } public int StartNodeID { get; set; } public bool ShowContextMenu { get; set; } public bool IsDialog { get; set; } public TreeDialogModes DialogMode { get; set; } public string FunctionToCall { get; set; } } } }