/trunk/Trentacular.SharePoint.Deployment/Trentacular.SharePoint.StsAdmin/SolutionInventoryGatherer.cs

# · C# · 243 lines · 206 code · 27 blank · 10 comment · 25 complexity · 094a347911356d2a784b2cebf7c176b1 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Microsoft.SharePoint;
  5. using Microsoft.SharePoint.Administration;
  6. using Trentacular.SharePoint.WSPUtil;
  7. using Trentacular.SharePoint.StsAdmin.Util;
  8. namespace Trentacular.SharePoint.StsAdmin
  9. {
  10. public class SolutionInventoryGatherer : BaseConsoleHelper
  11. {
  12. public IEnumerable<string> Filenames { get; private set; }
  13. public SolutionInventoryGatherer(params string[] filenames)
  14. {
  15. Filenames = filenames;
  16. }
  17. public SolutionInventoryGatherer(IEnumerable<string> filenames)
  18. {
  19. Filenames = filenames;
  20. }
  21. public DeploymentInventory GetInventory()
  22. {
  23. var inventory = new DeploymentInventory();
  24. foreach (var solutionName in Filenames)
  25. {
  26. var existingSolution = SPFarm.Local.GetSolutionByName(solutionName);
  27. if (existingSolution == null)
  28. {
  29. Console.WriteLine(string.Format("An existing solution was not found with the name: {0}", solutionName));
  30. continue;
  31. }
  32. // Take inventory of solution deployments
  33. var deployInfo = new SolutionDeploymentInformation
  34. {
  35. SolutionId = existingSolution.Id,
  36. Deployed = existingSolution.Deployed,
  37. DeployedWebApplications = existingSolution.ContainsWebApplicationResource ?
  38. existingSolution.DeployedWebApplications.Select(wa => wa.Id).ToArray() :
  39. new Guid[0]
  40. };
  41. DoConsoleAction(string.Format("Extracting features in solution: {0}", solutionName), delegate()
  42. {
  43. deployInfo.FeatureDefinitions = existingSolution.ExtractFeatureDefinitions();
  44. });
  45. inventory.Add(solutionName.ToLower(), deployInfo);
  46. }
  47. InventoryFeatureActivations(inventory);
  48. return inventory;
  49. }
  50. private void InventoryFeatureActivations(DeploymentInventory inventory)
  51. {
  52. var spFarm = SPFarm.Local;
  53. var service = spFarm.Services.GetValue<SPWebService>("");
  54. Console.WriteLine("Beginning scan of all web applications in the farm");
  55. try
  56. {
  57. var webApplications = service.WebApplications.Cast<SPWebApplication>().ToList();
  58. // Have to manually add the CA web application since it is not included by default
  59. webApplications.Add(SPAdministrationWebApplication.Local);
  60. foreach (var webApp in webApplications)
  61. {
  62. Console.WriteLine(string.Format("Beginning scan of all sites in web application: {0}", webApp.GetUrl()));
  63. string context = string.Format("web application: {0}", webApp.GetUrl());
  64. try
  65. {
  66. foreach (SPSite unprivelegedSite in webApp.Sites)
  67. {
  68. try
  69. {
  70. context = string.Format("site: {0}", unprivelegedSite.Url);
  71. using (unprivelegedSite)
  72. {
  73. using (var site = (unprivelegedSite.SystemAccount == null) ? unprivelegedSite : new SPSite(unprivelegedSite.ID, unprivelegedSite.SystemAccount.UserToken))
  74. {
  75. Console.WriteLine(string.Format("Beginning scan of all webs in site: {0}", site.Url));
  76. try
  77. {
  78. foreach (SPWeb web in site.AllWebs)
  79. {
  80. context = string.Format("web: {0}", web.Url);
  81. using (web)
  82. {
  83. DoConsoleAction(string.Format("Taking inventory of activated features in web: {0}", web.Url), delegate()
  84. {
  85. if (inventory.HasFeatureDefinitions(SPFeatureScope.Web))
  86. {
  87. var activatedWebFeatures = web.Features.Cast<SPFeature>()
  88. .Select(f => f.DefinitionId)
  89. .ToList();
  90. if (activatedWebFeatures.Count > 0)
  91. {
  92. foreach (var deployInfo in inventory.Values)
  93. {
  94. foreach (var featureDefinition in deployInfo.FeatureDefinitions)
  95. {
  96. if (featureDefinition.Scope != SPFeatureScope.Web)
  97. continue;
  98. if (!activatedWebFeatures.Contains(featureDefinition.Id))
  99. continue;
  100. // Inventory the feature activation
  101. deployInfo.AddWebFeatureActivation(web, featureDefinition);
  102. }
  103. }
  104. }
  105. }
  106. });
  107. }
  108. }
  109. }
  110. catch (Exception e)
  111. {
  112. HandleError(e, true);
  113. }
  114. DoConsoleAction(string.Format("Taking inventory of activated features in site: {0}", site.Url), delegate()
  115. {
  116. if (inventory.HasFeatureDefinitions(SPFeatureScope.Site))
  117. {
  118. // Inventory Site Feature Activations
  119. var activatedSiteFeatures = site.Features.Cast<SPFeature>()
  120. .Select(f => f.DefinitionId)
  121. .ToList();
  122. if (activatedSiteFeatures.Count > 0)
  123. {
  124. foreach (var deployInfo in inventory.Values)
  125. {
  126. foreach (var featureDefinition in deployInfo.FeatureDefinitions)
  127. {
  128. if (featureDefinition.Scope != SPFeatureScope.Site)
  129. continue;
  130. if (!activatedSiteFeatures.Contains(featureDefinition.Id))
  131. continue;
  132. // Inventory the feature activation
  133. deployInfo.AddSiteFeatureActivation(site, featureDefinition);
  134. }
  135. }
  136. }
  137. }
  138. });
  139. }
  140. }
  141. }
  142. catch (Exception e)
  143. {
  144. if (context.Length > 0)
  145. context = "Exception during " + context;
  146. HandleError(context, e, true);
  147. }
  148. }
  149. }
  150. catch (Exception e)
  151. {
  152. if (context.Length > 0)
  153. context = "Exception during " + context;
  154. HandleError(context, e, true);
  155. }
  156. DoConsoleAction(string.Format("Taking inventory of activated features in web application: {0}", webApp.GetUrl()), delegate()
  157. {
  158. if (inventory.HasFeatureDefinitions(SPFeatureScope.WebApplication))
  159. {
  160. // Inventory Web Application Feature Activations
  161. var activatedWebAppFeatures = webApp.Features.Cast<SPFeature>()
  162. .Select(f => f.DefinitionId)
  163. .ToList();
  164. if (activatedWebAppFeatures.Count > 0)
  165. {
  166. foreach (var deployInfo in inventory.Values)
  167. {
  168. foreach (var featureDefinition in deployInfo.FeatureDefinitions)
  169. {
  170. if (featureDefinition.Scope != SPFeatureScope.WebApplication)
  171. continue;
  172. if (!activatedWebAppFeatures.Contains(featureDefinition.Id))
  173. continue;
  174. // Inventory the feature activation
  175. deployInfo.AddWebApplicationFeatureActivation(webApp, featureDefinition);
  176. }
  177. }
  178. }
  179. }
  180. });
  181. }
  182. }
  183. catch (Exception e)
  184. {
  185. HandleError(e, true);
  186. }
  187. DoConsoleAction("Taking inventory of activated features in the farm", delegate()
  188. {
  189. if (inventory.HasFeatureDefinitions(SPFeatureScope.Farm))
  190. {
  191. // Inventory Farm Feature Activations
  192. var activatedFarmFeatures = service.Features.Cast<SPFeature>()
  193. .Select(f => f.DefinitionId)
  194. .ToList();
  195. if (activatedFarmFeatures.Count > 0)
  196. {
  197. foreach (var deployInfo in inventory.Values)
  198. {
  199. foreach (var featureDefinition in deployInfo.FeatureDefinitions)
  200. {
  201. if (featureDefinition.Scope != SPFeatureScope.Farm)
  202. continue;
  203. // For farm Features, we only care about features that have been deactivated,
  204. // since features are activated automatically when scoped to the farm
  205. if (activatedFarmFeatures.Contains(featureDefinition.Id))
  206. deployInfo.AddFarmFeatureActivation(featureDefinition);
  207. else
  208. deployInfo.AddDeactivatedFarmFeature(featureDefinition);
  209. }
  210. }
  211. }
  212. }
  213. });
  214. }
  215. }
  216. }