1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
|
using Microsoft.TeamFoundation.Client;
using Microsoft.TeamFoundation.Core.WebApi;
using Microsoft.TeamFoundation.WorkItemTracking.Client;
using Microsoft.TeamFoundation.WorkItemTracking.WebApi;
using Microsoft.VisualStudio.Services.Common;
using Microsoft.VisualStudio.Services.WebApi;
using Microsoft.VisualStudio.Services.WebApi.Patch;
using Microsoft.VisualStudio.Services.WebApi.Patch.Json;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
namespace Tango.TFS
{
/// <summary>
/// Represents a VSTS (Visual Studio On-line) client implementation.
/// </summary>
/// <seealso cref="Tango.TFS.ITeamFoundationServiceClient" />
public class TeamFoundationServiceClient : ExtendedObject, ITeamFoundationServiceClient
{
#region Extension Fields Constants
private class ExtensionFields
{
public const String FOUND_IN_BUILD = "Microsoft.VSTS.Build.FoundIn";
public const String SEVERITY = "Microsoft.VSTS.Common.Severity";
public const String PRIORITY = "Microsoft.VSTS.Common.Priority";
public const String STEPS_TO_REP = "Microsoft.VSTS.TCM.ReproSteps";
public const String SYSTEM_INFO = "Microsoft.VSTS.TCM.SystemInfo";
}
#endregion
#region Properties
/// <summary>
/// Gets the default team collection URL.
/// </summary>
public String CollectionURL { get; private set; }
/// <summary>
/// Gets the personal token used to authenticate against the service. https://docs.microsoft.com/en-us/vsts/accounts/use-personal-access-tokens-to-authenticate?view=vsts
/// </summary>
public String PersonalToken { get; private set; }
/// <summary>
/// Gets the VSTS user name (optional).
/// </summary>
public String UserName { get; private set; }
#endregion
#region Constructors
/// <summary>
/// Initializes a new instance of the <see cref="TeamFoundationServiceClient"/> class.
/// </summary>
/// <param name="collectionURL">The collection URL.</param>
/// <param name="userName">Name of the user.</param>
/// <param name="personalToken">The personal token.</param>
public TeamFoundationServiceClient(String collectionURL, String userName, String personalToken)
{
CollectionURL = collectionURL;
UserName = userName;
PersonalToken = personalToken;
}
#endregion
#region Public Methods
/// <summary>
/// Gets a team project by the specified name.
/// </summary>
/// <param name="name">The name.</param>
/// <returns></returns>
public Task<Project> GetProject(string name)
{
return Task.Factory.StartNew<Project>(() =>
{
Project p = new Project();
VssConnection connection = CreateConnection();
ProjectHttpClient projectClient = connection.GetClient<ProjectHttpClient>();
TeamProjectReference project = projectClient.GetProjects(null).Result.FirstOrDefault(x => x.Name == name);
if (project == null)
{
throw new ArgumentException(String.Format("Project '{0}' could not be found.", name));
}
p.Name = project.Name;
p.ID = project.Id;
p.URL = project.Url;
p.Description = project.Description;
TeamHttpClient teamClient = connection.GetClient<TeamHttpClient>();
var team = teamClient.GetTeamsAsync(project.Id.ToString()).Result.FirstOrDefault();
IEnumerable<IdentityRef> teamMembers = teamClient.GetTeamMembersAsync(project.Id.ToString(), team.Id.ToString()).Result;
foreach (var member in teamMembers)
{
TeamMember teamMember = new TeamMember();
teamMember.ID = member.Id;
teamMember.DisplayName = member.DisplayName;
teamMember.ImageURL = member.ImageUrl;
teamMember.UniqueName = member.UniqueName;
teamMember.URL = member.Url;
p.Members.Add(teamMember);
}
TaggingHttpClient taggingClient = connection.GetClient<TaggingHttpClient>();
WebApiTagDefinitionList tags = taggingClient.GetTagsAsync(project.Id).Result;
foreach (var tag in tags)
{
p.Tags.Add(new Tag()
{
ID = tag.Id,
Name = tag.Name,
});
}
var projCollection = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri(CollectionURL));
var store = projCollection.GetService<WorkItemStore>();
WorkItemCollection queryResults = store.Query("Select [State], [Title] " + "From WorkItems " + "Where [Work Item Type] = 'User Story'");
var userStories = queryResults.OfType<Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem>().Where(x => x.Project.Name == project.Name).ToList();
foreach (var userStory in userStories)
{
WorkItem story = new WorkItem();
story.Type = WorkItemType.UserStory;
story.Title = userStory.Title;
story.ID = userStory.Id;
story.URL = userStory.Uri.ToString();
story.Description = userStory.Description;
if (userStory.Fields[CoreField.AssignedTo].Value != null)
{
story.AssignedTo = p.Members.SingleOrDefault(x => x.AssignName == userStory.Fields[CoreField.AssignedTo].Value.ToString());
}
story.Area = new Area() { Name = userStory.AreaPath };
story.Iteration = new Iteration() { Name = userStory.IterationPath };
p.UserStories.Add(story);
}
p.Areas.Add(new Area() { Name = project.Name, Path = project.Name });
foreach (var area in store.Projects[project.Name].AreaRootNodes.OfType<Node>())
{
p.Areas.Add(new Area()
{
Name = area.Name,
Path = area.Path,
});
}
foreach (var iteration in store.Projects[project.Name].IterationRootNodes.OfType<Node>())
{
p.Iterations.Add(new Iteration()
{
Name = iteration.Name,
Path = iteration.Path,
});
}
return p;
});
}
/// <summary>
/// Uploads a work item to the specified team project.
/// </summary>
/// <param name="project">The project.</param>
/// <param name="workItem">The work item.</param>
/// <returns></returns>
public Task<WorkItem> UploadWorkItem(Project project, WorkItem workItem)
{
return Task.Factory.StartNew<WorkItem>(() =>
{
var connection = CreateConnection();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var patchDocument = new JsonPatchDocument();
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.Title),
Value = workItem.Title,
});
if (!String.IsNullOrWhiteSpace(workItem.Description))
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.Description),
Value = workItem.Description,
});
}
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.IterationPath),
Value = workItem.Iteration.Path,
});
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.AreaPath),
Value = workItem.Area.Path,
});
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.AssignedTo),
Value = workItem.AssignedTo.AssignName,
});
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.CreatedBy),
Value = workItem.CreatedBy.AssignName,
});
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.ChangedBy),
Value = workItem.ChangedBy.AssignName,
});
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.AuthorizedAs),
Value = workItem.AuthorizedAs.AssignName,
});
if (workItem.UserStory != null)
{
patchDocument.Add(
new JsonPatchOperation()
{
Operation = Operation.Add,
Path = "/relations/-",
Value = new
{
rel = "System.LinkTypes.Hierarchy-Reverse",
url = workItem.UserStory.URL,
}
}
);
}
foreach (var attachment in workItem.Attachments)
{
Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.AttachmentReference attachmentReference = witClient.CreateAttachmentAsync(attachment.FilePath).Result;
patchDocument.Add(
new JsonPatchOperation()
{
Operation = Operation.Add,
Path = "/relations/-",
Value = new
{
rel = "AttachedFile",
url = attachmentReference.Url,
attributes = new { comment = attachment.Description, name = attachment.Name }
}
}
);
}
if (workItem.Tags.Count > 0)
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.Tags),
Value = String.Join("; ", workItem.Tags.Select(x => x.Name)),
});
}
if (!String.IsNullOrWhiteSpace(workItem.StepsToReproduce))
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.STEPS_TO_REP),
Value = workItem.StepsToReproduce,
});
}
if (!String.IsNullOrWhiteSpace(workItem.FoundInBuild))
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.FOUND_IN_BUILD),
Value = workItem.FoundInBuild,
});
}
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.State),
Value = workItem.State.ToString(),
});
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.SEVERITY),
Value = workItem.Severity.ToDescription(),
});
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.PRIORITY),
Value = (int)workItem.Priority,
});
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.SYSTEM_INFO),
Value = workItem.SystemInformation,
});
var resultWorkItem = witClient.CreateWorkItemAsync(patchDocument, project.Name, workItem.Type.ToString(), bypassRules: true).Result;
workItem.ID = resultWorkItem.Id.Value;
workItem.URL = resultWorkItem.Url;
return workItem;
});
}
/// <summary>
/// Gets a work item by the specified team project and work item id.
/// </summary>
/// <param name="project">The project.</param>
/// <param name="id">The identifier.</param>
/// <returns></returns>
public Task<WorkItem> GetWorkItem(Project project, int id)
{
return Task.Factory.StartNew<WorkItem>(() =>
{
WorkItem workItem = new WorkItem();
var connection = CreateConnection();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var item = witClient.GetWorkItemAsync(id, expand: Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemExpand.All).Result;
workItem.ID = item.Id.Value;
workItem.Title = item.Fields[GetFieldNameForRead(CoreField.Title)].ToString();
workItem.Description = TryGetField(item.Fields, GetFieldNameForRead(CoreField.Description));
workItem.Area = new Area()
{
Path = item.Fields[GetFieldNameForRead(CoreField.AreaPath)].ToString(),
Name = Path.GetFileName(item.Fields[GetFieldNameForRead(CoreField.AreaPath)].ToString()),
};
workItem.Iteration = new Iteration()
{
Path = item.Fields[GetFieldNameForRead(CoreField.IterationPath)].ToString(),
Name = Path.GetFileName(item.Fields[GetFieldNameForRead(CoreField.IterationPath)].ToString()),
};
workItem.AssignedTo = project.Members.SingleOrDefault(x => x.AssignName == TryGetField(item.Fields, GetFieldNameForRead(CoreField.AssignedTo)));
workItem.CreatedBy = project.Members.SingleOrDefault(x => x.AssignName == TryGetField(item.Fields, GetFieldNameForRead(CoreField.CreatedBy)));
workItem.ChangedBy = project.Members.SingleOrDefault(x => x.AssignName == TryGetField(item.Fields, GetFieldNameForRead(CoreField.ChangedBy)));
workItem.AuthorizedAs = project.Members.SingleOrDefault(x => x.AssignName == TryGetField(item.Fields, GetFieldNameForRead(CoreField.AuthorizedAs)));
workItem.Type = (WorkItemType)Enum.Parse(typeof(WorkItemType), item.Fields[GetFieldNameForRead(CoreField.WorkItemType)].ToString());
workItem.URL = item.Url;
if (item.Fields.ContainsKey(GetFieldNameForRead(CoreField.Tags)))
{
List<String> tags = item.Fields[GetFieldNameForRead(CoreField.Tags)].ToString().Split(';').Select(x => x.Trim()).ToList();
workItem.Tags = tags.Select(x => new Tag() { Name = x }).ToList();
}
workItem.FoundInBuild = item.Fields[ExtensionFields.FOUND_IN_BUILD].ToString();
workItem.State = (State)Enum.Parse(typeof(State), item.Fields[GetFieldNameForRead(CoreField.State)].ToString());
workItem.Severity = ParseEnumByDescription<Severity>(item.Fields[ExtensionFields.SEVERITY].ToString());
workItem.Priority = (Priority)int.Parse(item.Fields[ExtensionFields.PRIORITY].ToString());
workItem.StepsToReproduce = item.Fields[ExtensionFields.STEPS_TO_REP].ToString();
workItem.SystemInformation = item.Fields[ExtensionFields.SYSTEM_INFO].ToString();
return workItem;
});
}
/// <summary>
/// Deletes the specified work item.
/// </summary>
/// <param name="project">The project.</param>
/// <param name="id">The identifier.</param>
/// <returns></returns>
public Task DeleteWorkItem(Project project, int id)
{
return Task.Factory.StartNew(() =>
{
var connection = CreateConnection();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var result = witClient.DeleteWorkItemAsync(id, true).Result;
});
}
#endregion
#region Private Methods
/// <summary>
/// Creates connection to VSTS.
/// </summary>
/// <returns></returns>
private VssConnection CreateConnection()
{
VssConnection connection = new VssConnection(new Uri(CollectionURL), new VssBasicCredential(UserName, PersonalToken));
return connection;
}
/// <summary>
/// Creates a string representation of a VSTS field when reading.
/// </summary>
/// <param name="field">The field.</param>
/// <returns></returns>
private String GetFieldNameForRead(CoreField field)
{
return "System." + field.ToString();
}
/// <summary>
/// Creates a string representation of a VSTS field when writing.
/// </summary>
/// <param name="field">The field.</param>
/// <returns></returns>
private String GetFieldNameForWrite(CoreField field)
{
return "/fields/System." + field.ToString();
}
/// <summary>
/// Creates a string representation of a VSTS extension field when writing.
/// </summary>
/// <param name="field">The field.</param>
/// <returns></returns>
private String GetExtensionFieldNameForWrite(String extensionFieldName)
{
return "/fields/" + extensionFieldName;
}
/// <summary>
/// Returns a value of the specified field key if found. Otherwise return an empty string.
/// </summary>
/// <param name="fields">The fields.</param>
/// <param name="key">The key.</param>
/// <returns></returns>
private String TryGetField(IDictionary<String, Object> fields, String key)
{
if (fields.ContainsKey(key))
{
return fields[key].ToString();
}
return String.Empty;
}
/// <summary>
/// Returns the specified enum type value by it's [Description] attribute.
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="description">The description.</param>
/// <returns></returns>
private T ParseEnumByDescription<T>(String description)
{
Dictionary<String, T> values = new Dictionary<string, T>();
foreach (var item in Enum.GetValues(typeof(T)))
{
values.Add(((Enum)item).ToDescription(), (T)item);
}
return values[description];
}
#endregion
}
}
|