Not Tested
This commit is contained in:
@ -9,11 +9,14 @@ internal static partial class Helper20241108
|
||||
{
|
||||
|
||||
private record Attribute([property: JsonPropertyName("isLocked")] bool IsLocked,
|
||||
[property: JsonPropertyName("name")] string Name);
|
||||
[property: JsonPropertyName("name")] string Name,
|
||||
[property: JsonPropertyName("parameterTitle")] string? ParameterTitle,
|
||||
[property: JsonPropertyName("state")] string? State,
|
||||
[property: JsonPropertyName("workItemType")] string? WorkItemType);
|
||||
|
||||
private record Relation([property: JsonPropertyName("rel")] string Type,
|
||||
[property: JsonPropertyName("url")] string URL,
|
||||
[property: JsonPropertyName("attributes")] Attribute Attributes);
|
||||
private record Relation([property: JsonPropertyName("attributes")] Attribute Attributes,
|
||||
[property: JsonPropertyName("id")] int Id,
|
||||
[property: JsonPropertyName("rel")] string Rel);
|
||||
|
||||
private record WorkItem(DateTime? ActivatedDate,
|
||||
string AreaPath,
|
||||
@ -47,6 +50,39 @@ internal static partial class Helper20241108
|
||||
|
||||
public override string ToString() => $"{Id} - {WorkItemType} - {Title}";
|
||||
|
||||
public static WorkItem Get(WorkItem workItem, Relation[] relations)
|
||||
{
|
||||
WorkItem result = new(workItem.ActivatedDate,
|
||||
workItem.AreaPath,
|
||||
workItem.AssignedTo,
|
||||
workItem.BusinessValue,
|
||||
workItem.ChangedDate,
|
||||
workItem.ClosedDate,
|
||||
workItem.CommentCount,
|
||||
workItem.CreatedDate,
|
||||
workItem.Description,
|
||||
workItem.Effort,
|
||||
workItem.Id,
|
||||
workItem.IterationPath,
|
||||
workItem.Parent,
|
||||
workItem.Priority,
|
||||
relations,
|
||||
workItem.Requester,
|
||||
workItem.ResolvedDate,
|
||||
workItem.Revision,
|
||||
workItem.RiskReductionMinusOpportunityEnablement,
|
||||
workItem.StartDate,
|
||||
workItem.State,
|
||||
workItem.Tags,
|
||||
workItem.TargetDate,
|
||||
workItem.TimeCriticality,
|
||||
workItem.Title,
|
||||
workItem.Violation,
|
||||
workItem.WeightedShortestJobFirst,
|
||||
workItem.WorkItemType);
|
||||
return result;
|
||||
}
|
||||
|
||||
public static WorkItem? GetWithOutRelations(WorkItem? workItem)
|
||||
{
|
||||
WorkItem? result = workItem is null ? null : new(workItem.ActivatedDate,
|
||||
@ -88,7 +124,7 @@ internal static partial class Helper20241108
|
||||
{
|
||||
}
|
||||
|
||||
private record Record(WorkItem WorkItem, WorkItem? Parent, Record[] Children, Record[] Related, Record[] Successors)
|
||||
private record Record(WorkItem WorkItem, WorkItem? Parent, Record[]? Children, Record[]? Related, Record[]? Successors)
|
||||
{
|
||||
|
||||
internal static Record GetWithoutNesting(Record record, string? violation)
|
||||
@ -122,95 +158,95 @@ internal static partial class Helper20241108
|
||||
record.WorkItem.Violation is null ? violation : record.WorkItem.Violation,
|
||||
record.WorkItem.WeightedShortestJobFirst,
|
||||
record.WorkItem.WorkItemType);
|
||||
result = new(workItem, record.Parent, [], [], []);
|
||||
result = new(workItem, record.Parent, null, null, null);
|
||||
return result;
|
||||
}
|
||||
|
||||
private static Record Get(Record record, bool keepRelations)
|
||||
{
|
||||
Record result;
|
||||
Record[]? childRecords;
|
||||
Record[]? relatedRecords;
|
||||
Record[]? successorRecords;
|
||||
List<Record> relationRecords;
|
||||
WorkItem? parentWorkItem = keepRelations ? record.Parent : WorkItem.GetWithOutRelations(record.Parent);
|
||||
WorkItem? workItem = keepRelations ? record.WorkItem : WorkItem.GetWithOutRelations(record.WorkItem) ?? throw new Exception();
|
||||
List<Record> childRecords = [];
|
||||
List<Record> relatedRecords = [];
|
||||
List<Record> successorRecords = [];
|
||||
foreach (Record r in record.Children)
|
||||
childRecords.Add(Get(r, keepRelations));
|
||||
foreach (Record r in record.Related)
|
||||
relatedRecords.Add(Get(r, keepRelations));
|
||||
foreach (Record r in record.Successors)
|
||||
successorRecords.Add(Get(r, keepRelations));
|
||||
result = new(workItem, parentWorkItem, childRecords.ToArray(), relatedRecords.ToArray(), successorRecords.ToArray());
|
||||
return result;
|
||||
}
|
||||
|
||||
internal static Record Get(WorkItem workItem, WorkItem? parent, ReadOnlyCollection<Record> children, ReadOnlyCollection<Record> related, ReadOnlyCollection<Record> successors, bool keepRelations)
|
||||
{
|
||||
Record result;
|
||||
Record record = new(workItem, parent, children.ToArray(), related.ToArray(), successors.ToArray());
|
||||
result = Get(record, keepRelations);
|
||||
return result;
|
||||
}
|
||||
|
||||
private static int? GetIdFromUrl(string relationName, Relation relation)
|
||||
{
|
||||
int? result;
|
||||
string[] segments = relation?.Attributes is null || relation.Attributes.Name != relationName ? [] : relation.URL.Split('/');
|
||||
if (segments.Length < 2)
|
||||
result = null;
|
||||
if (record.Children is null)
|
||||
childRecords = null;
|
||||
else
|
||||
{
|
||||
if (!int.TryParse(segments[^1], out int id))
|
||||
result = null;
|
||||
else
|
||||
result = id;
|
||||
relationRecords = [];
|
||||
foreach (Record r in record.Children)
|
||||
relationRecords.Add(Get(r, keepRelations));
|
||||
childRecords = relationRecords.ToArray();
|
||||
}
|
||||
if (record.Related is null)
|
||||
relatedRecords = null;
|
||||
else
|
||||
{
|
||||
relationRecords = [];
|
||||
foreach (Record r in record.Related)
|
||||
relationRecords.Add(Get(r, keepRelations));
|
||||
relatedRecords = relationRecords.ToArray();
|
||||
}
|
||||
if (record.Successors is null)
|
||||
successorRecords = null;
|
||||
else
|
||||
{
|
||||
relationRecords = [];
|
||||
foreach (Record r in record.Successors)
|
||||
relationRecords.Add(Get(r, keepRelations));
|
||||
successorRecords = relationRecords.ToArray();
|
||||
}
|
||||
result = new(workItem, parentWorkItem, childRecords, relatedRecords, successorRecords);
|
||||
return result;
|
||||
}
|
||||
|
||||
internal static Record Get(WorkItem workItem, WorkItem? parent, ReadOnlyCollection<Record>? children, ReadOnlyCollection<Record>? related, ReadOnlyCollection<Record>? successors, bool keepRelations)
|
||||
{
|
||||
Record result;
|
||||
Record record = new(workItem, parent, children?.ToArray(), related?.ToArray(), successors?.ToArray());
|
||||
result = Get(record, keepRelations);
|
||||
return result;
|
||||
}
|
||||
|
||||
internal static ReadOnlyCollection<Record> GetKeyValuePairs(ReadOnlyDictionary<int, WorkItem> keyValuePairs, WorkItem workItem, string relationName, List<bool> nests, bool keepRelations)
|
||||
{
|
||||
List<Record> results = [];
|
||||
int? childId;
|
||||
Record record;
|
||||
nests.Add(true);
|
||||
WorkItem? childWorkItem;
|
||||
WorkItem? parentWorkItem;
|
||||
WorkItem? relationWorkItem;
|
||||
List<WorkItem> collection = [];
|
||||
ReadOnlyCollection<Record> childRecords;
|
||||
ReadOnlyCollection<Record> relatedRecords;
|
||||
ReadOnlyCollection<Record> successorRecords;
|
||||
ReadOnlyCollection<Record>? childRecords;
|
||||
ReadOnlyCollection<Record>? relatedRecords;
|
||||
ReadOnlyCollection<Record>? successorRecords;
|
||||
if (workItem.Relations is not null && workItem.Relations.Length > 0)
|
||||
{
|
||||
collection.Clear();
|
||||
foreach (Relation relation in workItem.Relations)
|
||||
{
|
||||
childId = GetIdFromUrl(relationName, relation);
|
||||
if (childId is not null && workItem.Parent is not null && relation?.URL is not null && relation.URL.Contains(workItem.Parent.Value.ToString()))
|
||||
if (relation.Attributes.Name != relationName)
|
||||
continue;
|
||||
if (childId is null || !keyValuePairs.TryGetValue(childId.Value, out childWorkItem))
|
||||
if (workItem.Parent is not null && relation.Id == workItem.Parent.Value)
|
||||
continue;
|
||||
collection.Add(childWorkItem);
|
||||
if (!keyValuePairs.TryGetValue(relation.Id, out relationWorkItem))
|
||||
continue;
|
||||
collection.Add(relationWorkItem);
|
||||
}
|
||||
collection = (from l in collection orderby l.State != "Closed", l.Id select l).ToList();
|
||||
foreach (WorkItem w in collection)
|
||||
{
|
||||
if (nests.Count > 99)
|
||||
if (nests.Count > 500)
|
||||
break;
|
||||
if (w.Parent is null)
|
||||
parentWorkItem = null;
|
||||
else
|
||||
_ = keyValuePairs.TryGetValue(w.Parent.Value, out parentWorkItem);
|
||||
childRecords = GetKeyValuePairs(keyValuePairs, w, "Child", nests, keepRelations); // Forward
|
||||
// records = GetKeyValuePairs(keyValuePairs, w, "Predecessor", nests); // Reverse
|
||||
// successorRecords = GetKeyValuePairs(keyValuePairs, w, "Successor", nests); // Forward
|
||||
// if (successorRecords.Count > 0)
|
||||
// {
|
||||
// if (successorRecords.Count > 0)
|
||||
// { }
|
||||
// }
|
||||
successorRecords = new([]);
|
||||
relatedRecords = GetKeyValuePairs(keyValuePairs, w, "Related", nests, keepRelations); // Related
|
||||
relatedRecords = null; // GetKeyValuePairs(keyValuePairs, w, "Related", nests, keepRelations); // Related
|
||||
successorRecords = null; // GetKeyValuePairs(keyValuePairs, w, "Successor", nests, keepRelations); // Forward
|
||||
// predecessorRecords = GetKeyValuePairs(keyValuePairs, w, "Predecessor", nests, keepRelations); // Reverse
|
||||
record = Get(w, parentWorkItem, childRecords, relatedRecords, successorRecords, keepRelations);
|
||||
results.Add(record);
|
||||
}
|
||||
@ -269,125 +305,60 @@ internal static partial class Helper20241108
|
||||
return results;
|
||||
}
|
||||
|
||||
private static ReadOnlyDictionary<int, string> GetCurrentDirectories(string destinationDirectory, ReadOnlyCollection<string> bugUserStoryWorkItemTypes)
|
||||
private static ReadOnlyCollection<WorkItem>? GetWorkItems(string fileName, string sourceDirectory)
|
||||
{
|
||||
Dictionary<int, string> results = [];
|
||||
int id;
|
||||
string idCheck;
|
||||
string? fileName;
|
||||
string[] directories;
|
||||
string[] split = ["-"];
|
||||
foreach (string w in bugUserStoryWorkItemTypes)
|
||||
WorkItem[]? results;
|
||||
string? checkFile = null;
|
||||
string? checkDirectory = sourceDirectory;
|
||||
string? pathRoot = Path.GetPathRoot(sourceDirectory);
|
||||
for (int i = 0; i < int.MaxValue; i++)
|
||||
{
|
||||
directories = Directory.GetDirectories(destinationDirectory, $"*-{w.Replace(" ", "-")}", SearchOption.AllDirectories);
|
||||
foreach (string directory in directories)
|
||||
{
|
||||
fileName = Path.GetFileName(directory);
|
||||
if (string.IsNullOrEmpty(fileName))
|
||||
continue;
|
||||
idCheck = fileName.Split(split, StringSplitOptions.None)[0];
|
||||
if (!int.TryParse(idCheck, out id))
|
||||
continue;
|
||||
if (!results.ContainsKey(id))
|
||||
results.Add(id, directory);
|
||||
else
|
||||
MoveToDuplicate(destinationDirectory, directory);
|
||||
}
|
||||
}
|
||||
return new(results);
|
||||
}
|
||||
|
||||
private static void MoveToDuplicate(string destinationDirectory, string directory)
|
||||
{
|
||||
if (string.IsNullOrEmpty(destinationDirectory))
|
||||
throw new ArgumentException($"'{nameof(destinationDirectory)}' cannot be null or empty.", nameof(destinationDirectory));
|
||||
if (string.IsNullOrEmpty(directory))
|
||||
throw new ArgumentException($"'{nameof(directory)}' cannot be null or empty.", nameof(directory));
|
||||
}
|
||||
|
||||
private static ReadOnlyCollection<WorkItem> GetWorkItems(string sourceDirectory, ReadOnlyCollection<string> bugUserStoryWorkItemTypes)
|
||||
{
|
||||
List<WorkItem> results = [];
|
||||
string json;
|
||||
string checkFile;
|
||||
WorkItem? workItem;
|
||||
string directoryName;
|
||||
string? checkDirectory = null;
|
||||
foreach (string w in bugUserStoryWorkItemTypes)
|
||||
{
|
||||
directoryName = Path.GetFileName(sourceDirectory);
|
||||
if (!directoryName.EndsWith(w.Replace(" ", "-")))
|
||||
continue;
|
||||
checkDirectory = Path.Combine(sourceDirectory, directoryName.Split('-')[0]);
|
||||
if (!Directory.Exists(checkDirectory))
|
||||
{
|
||||
checkDirectory = null;
|
||||
continue;
|
||||
}
|
||||
break;
|
||||
}
|
||||
if (!string.IsNullOrEmpty(checkDirectory))
|
||||
{
|
||||
checkFile = Path.Combine(checkDirectory, ".json");
|
||||
checkDirectory = Path.GetDirectoryName(checkDirectory);
|
||||
if (string.IsNullOrEmpty(checkDirectory) || checkDirectory == pathRoot)
|
||||
break;
|
||||
checkFile = Path.Combine(checkDirectory, fileName);
|
||||
if (File.Exists(checkFile))
|
||||
{
|
||||
json = File.ReadAllText(checkFile);
|
||||
workItem = JsonSerializer.Deserialize(json, WorkItemSourceGenerationContext.Default.WorkItem);
|
||||
if (workItem is not null)
|
||||
results.Add(workItem);
|
||||
}
|
||||
break;
|
||||
checkFile = null;
|
||||
}
|
||||
return new(results);
|
||||
}
|
||||
|
||||
private static ReadOnlyCollection<WorkItem> GetWorkItems(ReadOnlyDictionary<int, string> collection)
|
||||
{
|
||||
List<WorkItem> results = [];
|
||||
string json;
|
||||
string checkFile;
|
||||
string? directory;
|
||||
WorkItem? workItem;
|
||||
string? checkDirectory;
|
||||
foreach (KeyValuePair<int, string> keyValuePair in collection)
|
||||
{
|
||||
if (!collection.TryGetValue(keyValuePair.Key, out directory) || string.IsNullOrEmpty(directory))
|
||||
continue;
|
||||
checkDirectory = Path.Combine(directory, $"{keyValuePair.Key}");
|
||||
if (!Directory.Exists(checkDirectory))
|
||||
continue;
|
||||
checkFile = Path.Combine(checkDirectory, ".json");
|
||||
if (!File.Exists(checkFile))
|
||||
continue;
|
||||
json = File.ReadAllText(checkFile);
|
||||
workItem = JsonSerializer.Deserialize(json, WorkItemSourceGenerationContext.Default.WorkItem);
|
||||
if (workItem is null)
|
||||
continue;
|
||||
results.Add(workItem);
|
||||
}
|
||||
return new(results);
|
||||
}
|
||||
|
||||
private static ReadOnlyCollection<WorkItem> GetWorkItems(string sourceDirectory, ReadOnlyCollection<string> bugUserStoryWorkItemTypes, ReadOnlyDictionary<int, string> collection)
|
||||
{
|
||||
ReadOnlyCollection<WorkItem> results;
|
||||
if (collection.Count > 0)
|
||||
results = GetWorkItems(collection);
|
||||
if (checkFile is null)
|
||||
results = null;
|
||||
else
|
||||
results = GetWorkItems(sourceDirectory, bugUserStoryWorkItemTypes);
|
||||
return results;
|
||||
{
|
||||
string json = File.ReadAllText(checkFile);
|
||||
results = JsonSerializer.Deserialize<WorkItem[]>(json);
|
||||
}
|
||||
return results is null ? null : new(results);
|
||||
}
|
||||
|
||||
internal static void WriteMarkdown(ILogger<Worker> logger, List<string> args)
|
||||
{
|
||||
// string url = args[5];
|
||||
bool keepRelations = true;
|
||||
string fileName = args[2];
|
||||
string sourceDirectory = Path.GetFullPath(args[0]);
|
||||
ReadOnlyCollection<string> bugUserStoryWorkItemTypes = args[2].Split('|').ToArray().AsReadOnly();
|
||||
// ReadOnlyCollection<string> bugUserStoryTaskWorkItemTypes = new(new string[] { "Bug", "User Story", "Task" });
|
||||
ReadOnlyDictionary<int, string> collection = GetCurrentDirectories(sourceDirectory, bugUserStoryWorkItemTypes);
|
||||
ReadOnlyCollection<WorkItem> workItems = GetWorkItems(sourceDirectory, bugUserStoryWorkItemTypes, collection);
|
||||
ReadOnlyDictionary<int, Record> keyValuePairs = GetWorkItems(workItems, keepRelations);
|
||||
logger.LogInformation("Found {keyValuePairs}", keyValuePairs.Count);
|
||||
string sourceDirectoryName = Path.GetFileName(sourceDirectory);
|
||||
string idCheck = sourceDirectoryName.Split('-', StringSplitOptions.None)[0];
|
||||
if (!int.TryParse(idCheck, out int id))
|
||||
logger.LogInformation("Not valid directory!");
|
||||
else
|
||||
{
|
||||
ReadOnlyCollection<WorkItem>? workItems = GetWorkItems(fileName, sourceDirectory);
|
||||
if (workItems is null)
|
||||
logger.LogInformation("No file found!");
|
||||
else
|
||||
{
|
||||
Record? record;
|
||||
ReadOnlyDictionary<int, Record> keyValuePairs = GetWorkItems(workItems, keepRelations);
|
||||
logger.LogInformation("Found {keyValuePairs}", keyValuePairs.Count);
|
||||
if (!keyValuePairs.TryGetValue(id, out record))
|
||||
logger.LogInformation($"Id {id} not found!");
|
||||
else
|
||||
{
|
||||
logger.LogInformation($"Id {id} found with title {record.WorkItem.Title}!");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user