/Development/4.0/PsTFS.CmdLet/Provider/MethodeProvider.cs

# · C# · 211 lines · 10 code · 3 blank · 198 comment · 0 complexity · 3c479fd4b1f269e07910188fc61106b8 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace PsTFS.Provider
  6. {
  7. public class MethodeProvider
  8. {
  9. //public void information()
  10. //{
  11. // #region WORKITEM
  12. // // Vérification si parcour des workitem
  13. // if ("WORKITEM".Equals(com1, StringComparison.OrdinalIgnoreCase) || "WI".Equals(com1, StringComparison.OrdinalIgnoreCase))
  14. // {
  15. // int result = 0;
  16. // if (int.TryParse(com2, out result))
  17. // {
  18. // WorkItem wi = witstore.GetWorkItem(result);
  19. // WriteItemObject(wi, path, true);
  20. // }
  21. // else if ("TYPE".Equals(com2, StringComparison.OrdinalIgnoreCase))
  22. // {
  23. // #region TYPE
  24. // if (com3 != string.Empty)
  25. // {
  26. // #region Recherche les workitems du type demandé
  27. // string where = Context.GetContext().Project != String.Empty ? " where [System.TeamProject] = '" + Context.GetContext().Project + "'" : String.Empty;
  28. // where = where != string.Empty ? where + " AND [System.WorkitemType] = '" + com3 + "'" : " where [System.WorkitemType] = '" + com3 + "'";
  29. // WorkItemCollection wic = witstore.Query("Select [System.ID] from WorkItem " + where);
  30. // List<StructureWorkitem> list = ConvertItemsToWI(wic, false);
  31. // WriteItemObject(list, path, true);
  32. // #endregion Recherche les workitems du type demandé
  33. // }
  34. // else
  35. // {
  36. // #region Récupére les type de WI
  37. // List<StructureWorkitemType> listWorkitemType = new List<StructureWorkitemType>();
  38. // VersionControlServer vcs = Methode_Service.VersionControlServer();
  39. // if (Context.GetContext().Project == string.Empty)
  40. // {
  41. // ProjectCollection projects = witstore.Projects;
  42. // foreach (Project project in projects)
  43. // {
  44. // WorkItemTypeCollection witc = project.WorkItemTypes;
  45. // foreach (WorkItemType wit in witc)
  46. // {
  47. // var t = from u in listWorkitemType
  48. // where u.Name == wit.Name
  49. // select u as StructureWorkitemType;
  50. // if (t.ToList().Count == 0)
  51. // {
  52. // StructureWorkitemType swt = new StructureWorkitemType() { Name = wit.Name };
  53. // listWorkitemType.Add(swt);
  54. // }
  55. // }
  56. // }
  57. // }
  58. // else
  59. // {
  60. // WorkItemTypeCollection witc = witstore.Projects[Context.GetContext().Project].WorkItemTypes;
  61. // foreach (WorkItemType wit in witc)
  62. // {
  63. // listWorkitemType.Add(new StructureWorkitemType() { Name = wit.Name });
  64. // }
  65. // }
  66. // WriteItemObject(listWorkitemType, path, true);
  67. // #endregion Récupére les type de WI
  68. // }
  69. // #endregion TYPE
  70. // }
  71. // else if ("State".Equals(com2, StringComparison.OrdinalIgnoreCase))
  72. // {
  73. // #region State
  74. // if (com3 != string.Empty)
  75. // {
  76. // #region Recherche les workitems du state demandé
  77. // string where = Context.GetContext().Project != String.Empty ? " where [System.TeamProject] = '" + Context.GetContext().Project + "'" : String.Empty;
  78. // where = where != string.Empty ? where + " AND [System.State] = '" + com3 + "'" : " where [System.State] = '" + com3 + "'";
  79. // WorkItemCollection wic = witstore.Query("Select [System.ID] from WorkItem " + where);
  80. // List<StructureWorkitem> list = ConvertItemsToWI(wic, false);
  81. // WriteItemObject(list, path, true);
  82. // #endregion Recherche les workitems du state demandé
  83. // }
  84. // else
  85. // {
  86. // List<string> listState = new List<string>();
  87. // VersionControlServer vcs = Methode_Service.VersionControlServer();
  88. // if (Context.GetContext().Project == string.Empty)
  89. // {
  90. // ProjectCollection projects = witstore.Projects;
  91. // foreach (Project project in projects)
  92. // {
  93. // WorkItemTypeCollection witc = project.WorkItemTypes;
  94. // foreach (WorkItemType wit in witc)
  95. // {
  96. // AllowedValuesCollection avc = wit.FieldDefinitions["State"].AllowedValues;
  97. // foreach (string s in avc)
  98. // {
  99. // if (!listState.Contains(s))
  100. // listState.Add(s);
  101. // }
  102. // }
  103. // }
  104. // }
  105. // else
  106. // {
  107. // WorkItemTypeCollection witc = witstore.Projects[Context.GetContext().Project].WorkItemTypes;
  108. // foreach (WorkItemType wit in witc)
  109. // {
  110. // AllowedValuesCollection avc = wit.FieldDefinitions["State"].AllowedValues;
  111. // foreach (string s in avc)
  112. // {
  113. // if (!listState.Contains(s))
  114. // listState.Add(s);
  115. // }
  116. // }
  117. // }
  118. // WriteItemObject(listState, path, true);
  119. // }
  120. // #endregion State
  121. // }
  122. // else
  123. // {
  124. // string where = Context.GetContext().Project != String.Empty ? " where [System.TeamProject] = '" + Context.GetContext().Project + "'" : String.Empty;
  125. // WorkItemCollection wic = witstore.Query("Select [System.ID] from WorkItem " + where);
  126. // List<StructureWorkitem> list = ConvertItemsToWI(wic, true);
  127. // WriteItemObject(list, path, true);
  128. // }
  129. // }
  130. // #endregion WORKITEM
  131. // #region SOURCECONTROL
  132. // else if ("SOURCECONTROL".Equals(com1, StringComparison.OrdinalIgnoreCase) || "SC".Equals(com1, StringComparison.OrdinalIgnoreCase))
  133. // {
  134. // List<StructureSC> list = ConvertItemsToList(Methode.GetElementsByPath(GetPathTFS(path), recurse == true ? RecursionType.Full : RecursionType.OneLevel));
  135. // WriteItemObject(list, path, true);
  136. // }
  137. // #endregion SOURCECONTROL
  138. // #region TEAMPROJECT
  139. // else if ("TEAMPROJECT".Equals(com1, StringComparison.OrdinalIgnoreCase) || "TP".Equals(com1, StringComparison.OrdinalIgnoreCase))
  140. // {
  141. // ProjectCollection pc = witstore.Projects;
  142. // List<StructureProject> listStructureProjet = GetElementsByProject(pc);
  143. // WriteItemObject(listStructureProjet, path, true);
  144. // }
  145. // #endregion TEAMPROJECT
  146. // #region BUILD
  147. // else if ("BUILD".Equals(com1, StringComparison.OrdinalIgnoreCase) || "BL".Equals(com1, StringComparison.OrdinalIgnoreCase))
  148. // {
  149. // if ("STATUS".Equals(com2, StringComparison.OrdinalIgnoreCase) || "ST".Equals(com2, StringComparison.OrdinalIgnoreCase))
  150. // {
  151. // List<string> status = new List<string>();
  152. // status.Add("Failed");
  153. // status.Add("InProgress");
  154. // status.Add("NotStarted");
  155. // status.Add("PartiallySucceeded");
  156. // status.Add("Stopped");
  157. // status.Add("Succeeded");
  158. // if (status.Contains(com3))
  159. // {
  160. // IBuildServer bs = Methode_Service.BuildServer();
  161. // IBuildDetail[] listBuild = bs.QueryBuilds(Context.GetContext().Project);
  162. // List<StructureBuild> listretour = new List<StructureBuild>();
  163. // List<StructureBuild> list = ConvertItemsToBuild(listBuild);
  164. // foreach (StructureBuild sb in list)
  165. // {
  166. // BuildStatus encour = (BuildStatus)Enum.Parse(typeof(BuildStatus), com3, true);
  167. // if (sb.Status == encour)
  168. // {
  169. // listretour.Add(sb);
  170. // }
  171. // }
  172. // WriteItemObject(listretour, path, true);
  173. // }
  174. // else
  175. // {
  176. // WriteItemObject(status, path, true);
  177. // }
  178. // }
  179. // else
  180. // {
  181. // IBuildServer bs = Methode_Service.BuildServer();
  182. // IBuildDetail[] listBuild = bs.QueryBuilds(Context.GetContext().Project);
  183. // List<StructureBuild> list = ConvertItemsToBuild(listBuild);
  184. // WriteItemObject(list, path, true);
  185. // }
  186. // }
  187. // #endregion BUILD
  188. // #region MEMBERPROJECT
  189. // else if ("MEMBERPROJECT".Equals(com1, StringComparison.OrdinalIgnoreCase) || "MP".Equals(com1, StringComparison.OrdinalIgnoreCase))
  190. // {
  191. // List<Groups> lg = new List<Groups>();
  192. // lg = Methode.GetMembersProject(Context.GetContext().Project);
  193. // if (!string.IsNullOrEmpty(com2))
  194. // {
  195. // var lm = from Groups m in lg
  196. // where m.DisplayName.Equals(com2, StringComparison.OrdinalIgnoreCase)
  197. // select m.Members;
  198. // WriteItemObject(lm, path, true);
  199. // }
  200. // else
  201. // {
  202. // WriteItemObject(lg, path, true);
  203. // }
  204. // }
  205. // #endregion MEMBERPROJECT
  206. //}
  207. }
  208. }