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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
|
using Microsoft.TeamFoundation.Client;
using Microsoft.TeamFoundation.Core.WebApi;
using Microsoft.TeamFoundation.WorkItemTracking.Client;
using Microsoft.TeamFoundation.WorkItemTracking.Proxy;
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.Diagnostics;
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";
public const String RESOLVED_BY = "Microsoft.VSTS.Common.ResolvedBy";
public const String RESOLVED_DATE = "Microsoft.VSTS.Common.ResolvedDate";
public const String RESOLVED_REASON = "Microsoft.VSTS.Common.ResolvedReason";
public const String EMBEDDED_VERSION = "Custom.EmbeddedVersion";
public const String MACHINE_SN = "Custom.MachineSN";
public const String ENVIRONMENT = "Custom.Environment";
public const String LOGGED_IN_USER = "Custom.LoggedInUser";
public const String MACHINE_TYPE = "Custom.MachineType";
}
#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();
LogManager.Log("Retrieving project " + name + " details...");
ProjectHttpClient projectClient = connection.GetClient<ProjectHttpClient>();
TeamProjectReference project = projectClient.GetProjects().Result.FirstOrDefault(x => x.Name == name);
if (project == null)
{
throw LogManager.Log(new ArgumentException(String.Format("Project '{0}' could not be found.", name)));
}
LogManager.Log("Project details successfully retrieved.");
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 = new TfsTeamProjectCollection(new Uri(CollectionURL), connection.Credentials);
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);
}
var mainArea = new Area() { Name = project.Name, Path = project.Name };
p.Areas.Add(mainArea);
foreach (var area in store.Projects[project.Name].AreaRootNodes.OfType<Node>())
{
Area a = new Area();
FillArea(a, area);
mainArea.SubAreas.Add(a);
}
foreach (var iteration in store.Projects[project.Name].IterationRootNodes.OfType<Node>())
{
p.Iterations.Add(new Iteration()
{
Name = iteration.Name,
Path = iteration.Path,
});
}
return p;
});
}
private Area FillArea(Area area, Node node)
{
area.Name = node.Name;
area.Path = node.Path;
foreach (var child in node.ChildNodes.OfType<Node>())
{
var subArea = new Area();
FillArea(subArea, child);
area.SubAreas.Add(subArea);
}
return area;
}
/// <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,
});
}
if (!String.IsNullOrWhiteSpace(workItem.Comment))
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetFieldNameForWrite(CoreField.History),
Value = workItem.Comment,
From = workItem.CreatedBy.AssignName
});
}
if (workItem.Iteration != null)
{
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,
});
if (workItem.EmbeddedVersion != null)
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.EMBEDDED_VERSION),
Value = workItem.EmbeddedVersion,
});
}
if (workItem.Environment != null)
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.ENVIRONMENT),
Value = workItem.Environment,
});
}
if (workItem.MachineSerialNumber != null)
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.MACHINE_SN),
Value = workItem.MachineSerialNumber,
});
}
if (workItem.LoggedInUser != null)
{
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.LOGGED_IN_USER),
Value = workItem.LoggedInUser,
});
}
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Add,
Path = GetExtensionFieldNameForWrite(ExtensionFields.MACHINE_TYPE),
Value = workItem.MachineType.ToDescription(),
});
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>(() =>
{
var connection = CreateConnection();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var item = witClient.GetWorkItemAsync(id, expand: Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItemExpand.All).Result;
return ConvertToWorkItem(project, item);
});
}
/// <summary>
/// Gets the type of the work items by.
/// </summary>
/// <param name="project">The project.</param>
/// <param name="type">The type.</param>
/// <returns></returns>
public Task<List<WorkItem>> GetWorkItemsByType(Project project, WorkItemType type)
{
return Task.Factory.StartNew<List<WorkItem>>(() =>
{
var connection = CreateConnection();
var projCollection = new TfsTeamProjectCollection(new Uri(CollectionURL), connection.Credentials);
var store = projCollection.GetService<WorkItemStore>();
WorkItemCollection queryResults = store.Query(String.Format("Select [Id]" + "From WorkItems " + "Where [Work Item Type] = '{0}'", type.ToString()));
var ids = queryResults.OfType<Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem>().Where(x => x.Project.Name == project.Name).ToList().Select(x => x.Id).ToList();
if (ids.Count == 0) return new List<WorkItem>();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var items = witClient.GetWorkItemsAsync(ids).Result;
return items.Select(x => ConvertToWorkItem(project, x)).ToList();
});
}
/// <summary>
/// Gets all work items of the specified project.
/// </summary>
/// <param name="project">The project.</param>
/// <returns></returns>
public Task<List<WorkItem>> GetAllWorkItems(Project project)
{
return Task.Factory.StartNew<List<WorkItem>>(() =>
{
var connection = CreateConnection();
var projCollection = new TfsTeamProjectCollection(new Uri(CollectionURL), connection.Credentials);
var store = projCollection.GetService<WorkItemStore>();
WorkItemCollection queryResults = store.Query("Select [Id]" + "From WorkItems " + "Where [Work Item Type] = 'Bug' Or [Work Item Type] = 'Task'");
var ids = queryResults.OfType<Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem>().Where(x => x.Project.Name == project.Name).ToList().Select(x => x.Id).ToList();
if (ids.Count == 0) return new List<WorkItem>();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var items = witClient.GetWorkItemsAsync(ids).Result;
return items.Select(x => ConvertToWorkItem(project, x)).ToList();
});
}
/// <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;
});
}
/// <summary>
/// Gets all the work items created by the specified team member.
/// </summary>
/// <param name="project">The project.</param>
/// <param name="member">The member.</param>
/// <returns></returns>
public Task<List<WorkItem>> GetWorkItemsCreatedBy(Project project, TeamMember member)
{
return Task.Factory.StartNew<List<WorkItem>>(() =>
{
var connection = CreateConnection();
var projCollection = new TfsTeamProjectCollection(new Uri(CollectionURL), connection.Credentials);
var store = projCollection.GetService<WorkItemStore>();
WorkItemCollection queryResults = store.Query(String.Format("Select [Id]" + "From WorkItems " + "Where [Created By] = '{0}' And [Work Item Type] = 'Bug'", member.AssignName));
var ids = queryResults.OfType<Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem>().Where(x => x.Project.Name == project.Name).ToList().Select(x => x.Id).ToList();
if (ids.Count == 0) return new List<WorkItem>();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var idsList = ids.ChunkBy(200);
List<Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem> items = new List<Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem>();
foreach (var idsChunk in idsList)
{
var chunkItems = witClient.GetWorkItemsAsync(idsChunk).Result;
items.AddRange(chunkItems);
}
return items.Select(x => ConvertToWorkItem(project, x)).ToList();
});
}
public Task<List<AttachementHandler>> GetWorkItemAttachements(int id)
{
return Task.Factory.StartNew<List<AttachementHandler>>(() =>
{
List<AttachementHandler> handlers = new List<AttachementHandler>();
var connection = CreateConnection();
var projCollection = new TfsTeamProjectCollection(new Uri(CollectionURL), connection.Credentials);
projCollection.EnsureAuthenticated();
WorkItemStore wistore = projCollection.GetService<WorkItemStore>();
Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem wi = wistore.GetWorkItem(id);
//WorkItemServer wiserver = projCollection.GetService<WorkItemServer>();
foreach (Microsoft.TeamFoundation.WorkItemTracking.Client.Attachment attachement in wi.Attachments)
{
AttachementHandler handler = new AttachementHandler((targetPath) =>
{
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
//Method 1. Use for progress...
//Stream st = witClient.GetAttachmentContentAsync(Guid.Parse(attachement.FileGuid)).Result;
//var tempFile = TemporaryManager.CreateFile();
//using (var fileStream = File.Open(tempFile, FileMode.Create))
//{
// byte[] buffer = new byte[2048]; // read in chunks of 2KB
// int bytesRead;
// while ((bytesRead = st.Read(buffer, 0, buffer.Length)) > 0)
// {
// fileStream.Write(buffer, 0, bytesRead);
// }
//}
//File.Copy(tempFile, targetPath, true);
//tempFile.Delete();
//Method 2. More basic...
WorkItemServer wiserver = projCollection.GetService<WorkItemServer>();
string tempPath = wiserver.DownloadFile(attachement.Id);
File.Copy(tempPath, targetPath, true);
try
{
File.Delete(tempPath);
}
catch { }
});
handler.Name = attachement.Name;
handler.Comment = attachement.Comment;
handler.AttachedTimeUtc = attachement.AttachedTimeUtc;
handler.Extension = attachement.Extension;
handler.FileGuid = attachement.FileGuid;
handler.Length = attachement.Length;
handlers.Add(handler);
}
return handlers;
});
}
public Task<List<WorkItem>> GetWorkItemsForMachine(Project project, String serialNumber, DateTime startUtc, DateTime endUtc)
{
return Task.Factory.StartNew<List<WorkItem>>(() =>
{
var connection = CreateConnection();
var projCollection = new TfsTeamProjectCollection(new Uri(CollectionURL), connection.Credentials);
var store = projCollection.GetService<WorkItemStore>();
WorkItemCollection queryResults = store.Query($"Select [Id] From WorkItems Where {ExtensionFields.MACHINE_SN} = '{serialNumber}' And [Work Item Type] = 'Bug' AND [Created Date] >= '{startUtc.ToString("MM/dd/yyyy")}' AND [Created Date] <= '{endUtc.ToString("MM/dd/yyyy")}'");
var ids = queryResults.OfType<Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem>().Where(x => x.Project.Name == project.Name).ToList().Select(x => x.Id).ToList();
if (ids.Count == 0) return new List<WorkItem>();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var items = witClient.GetWorkItemsAsync(ids).Result;
return items.Select(x => ConvertToWorkItem(project, x)).ToList();
});
}
/// <summary>
/// Sets the state of the work item.
/// </summary>
/// <param name="project">The project.</param>
/// <param name="item">The item.</param>
/// <param name="state">The state.</param>
/// <returns></returns>
public Task<WorkItem> SetWorkItemState(Project project, WorkItem item, State state)
{
return Task.Factory.StartNew<WorkItem>(() =>
{
var connection = CreateConnection();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var patchDocument = new JsonPatchDocument();
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Replace,
Path = GetFieldNameForWrite(CoreField.State),
Value = state.ToString(),
});
var updatedItem = witClient.UpdateWorkItemAsync(patchDocument, item.ID).Result;
return ConvertToWorkItem(project, updatedItem);
});
}
public Task<WorkItem> UpdateWorkItemSystemInfo(Project project, WorkItem item, String systemInfo)
{
return Task.Factory.StartNew<WorkItem>(() =>
{
var connection = CreateConnection();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var patchDocument = new JsonPatchDocument();
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Replace,
Path = GetExtensionFieldNameForWrite(ExtensionFields.SYSTEM_INFO),
Value = systemInfo,
});
var updatedItem = witClient.UpdateWorkItemAsync(patchDocument, item.ID).Result;
return ConvertToWorkItem(project, updatedItem);
});
}
/// <summary>
/// Adds a comment to the work item discussion.
/// </summary>
/// <param name="project">The project.</param>
/// <param name="item">The item.</param>
/// <param name="teamMember">Team member</param>
/// <param name="comment">The comment.</param>
/// <returns></returns>
public Task<WorkItem> AddWorkItemComment(Project project, WorkItem item, TeamMember teamMember, String comment)
{
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.History),
Value = comment,
From = teamMember.AssignName
});
var updatedItem = witClient.UpdateWorkItemAsync(patchDocument, item.ID).Result;
return ConvertToWorkItem(project, updatedItem);
});
}
/// <summary>
/// Sets the work item assignment.
/// </summary>
/// <param name="project">The project.</param>
/// <param name="item">The item.</param>
/// <param name="member">The member.</param>
/// <returns></returns>
public Task<WorkItem> SetWorkItemAssignment(Project project, WorkItem item, TeamMember member)
{
return Task.Factory.StartNew<WorkItem>(() =>
{
var connection = CreateConnection();
WorkItemTrackingHttpClient witClient = connection.GetClient<WorkItemTrackingHttpClient>();
var patchDocument = new JsonPatchDocument();
patchDocument.Add(new JsonPatchOperation
{
Operation = Operation.Replace,
Path = GetFieldNameForWrite(CoreField.AssignedTo),
Value = member.AssignName,
});
var updatedItem = witClient.UpdateWorkItemAsync(patchDocument, item.ID).Result;
return ConvertToWorkItem(project, updatedItem);
});
}
#endregion
#region Private Methods
/// <summary>
/// Creates connection to VSTS.
/// </summary>
/// <returns></returns>
private VssConnection CreateConnection()
{
LogManager.Log("Generating VSTS connection using personal token " + PersonalToken);
VssConnection connection = new VssConnection(new Uri(CollectionURL), new VssBasicCredential(String.Empty, PersonalToken));
connection.Credentials.PromptType = CredentialPromptType.DoNotPrompt;
connection.ConnectAsync(VssConnectMode.User).SyncResult();
LogManager.Log("VSS Connection established...");
LogManager.Log("Authenticated: " + connection.HasAuthenticated);
if (connection.HasAuthenticated)
{
LogManager.Log("Authenticated Identity: " + connection.AuthorizedIdentity.DisplayName);
}
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];
}
private WorkItem ConvertToWorkItem(Project project, Microsoft.TeamFoundation.WorkItemTracking.WebApi.Models.WorkItem item)
{
WorkItem workItem = new WorkItem();
workItem.ID = item.Id.Value;
workItem.Title = item.Fields[GetFieldNameForRead(CoreField.Title)].ToString();
workItem.CreatedDate = DateTime.Parse(item.Fields[GetFieldNameForRead(CoreField.CreatedDate)].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.ResolvedBy = project.Members.SingleOrDefault(x => x.AssignName == TryGetField(item.Fields, ExtensionFields.RESOLVED_BY));
if (item.Fields.ContainsKey(ExtensionFields.RESOLVED_REASON))
{
try
{
workItem.ResolvedReason = ParseEnumByDescription<ResolvedReason>(item.Fields[ExtensionFields.RESOLVED_REASON].ToString());
if (item.Fields.ContainsKey(ExtensionFields.RESOLVED_DATE))
{
workItem.ResolvedDate = DateTime.Parse(item.Fields[ExtensionFields.RESOLVED_DATE].ToString());
}
}
catch (Exception ex)
{
Debug.WriteLine($"Error parsing TFS work item resolved reason.\n{ex.ToString()}");
LogManager.Log(ex, "Error parsing TFS work item resolved reason.");
}
}
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 = TryGetField(item.Fields, ExtensionFields.FOUND_IN_BUILD).ToString();
workItem.State = (State)Enum.Parse(typeof(State), item.Fields[GetFieldNameForRead(CoreField.State)].ToString());
if (item.Fields.ContainsKey(ExtensionFields.SEVERITY))
{
workItem.Severity = ParseEnumByDescription<Severity>(item.Fields[ExtensionFields.SEVERITY].ToString());
}
workItem.Priority = (Priority)int.Parse(item.Fields[ExtensionFields.PRIORITY].ToString());
if (item.Fields.ContainsKey(ExtensionFields.STEPS_TO_REP))
{
workItem.StepsToReproduce = TryGetField(item.Fields, ExtensionFields.STEPS_TO_REP).ToString();
}
if (item.Fields.ContainsKey(ExtensionFields.SYSTEM_INFO))
{
workItem.SystemInformation = TryGetField(item.Fields, ExtensionFields.SYSTEM_INFO).ToString();
}
if (item.Fields.ContainsKey(ExtensionFields.LOGGED_IN_USER))
{
workItem.LoggedInUser = TryGetField(item.Fields, ExtensionFields.LOGGED_IN_USER).ToString();
}
if (item.Fields.ContainsKey(ExtensionFields.MACHINE_SN))
{
workItem.MachineSerialNumber = TryGetField(item.Fields, ExtensionFields.MACHINE_SN).ToString();
}
if (item.Fields.ContainsKey(ExtensionFields.ENVIRONMENT))
{
workItem.Environment = TryGetField(item.Fields, ExtensionFields.ENVIRONMENT).ToString();
}
if (item.Fields.ContainsKey(ExtensionFields.MACHINE_TYPE))
{
workItem.MachineType = ParseEnumByDescription<MachineType>(item.Fields[ExtensionFields.MACHINE_TYPE].ToString());
}
workItem.Comment = TryGetField(item.Fields, GetFieldNameForRead(CoreField.History)).ToString();
return workItem;
}
#endregion
}
}
|