|
| 1 | +using DotNet.DocsTools.Utility; |
| 2 | +using DotnetDocsTools.GitHubCommunications; |
| 3 | +using DotnetDocsTools.GitHubObjects; |
| 4 | +using DotnetDocsTools.GraphQLQueries; |
| 5 | + |
| 6 | +namespace DotNet.DocsTools.GraphQLQueries; |
| 7 | + |
| 8 | +/// <summary> |
| 9 | +/// Retrieve all PRs merged during a sprint |
| 10 | +/// </summary> |
| 11 | +/// <remarks> |
| 12 | +/// This class encapsulates retrieving and enumerating |
| 13 | +/// all PRs merged during a given sprint for a single repository. |
| 14 | +/// The constructor sets the arguments for the query, and validates |
| 15 | +/// all arguments. |
| 16 | +/// The Perform Query method starts an iteration of (possibly) |
| 17 | +/// multiple requests that would enumerate all PRs merged to the |
| 18 | +/// specified branch during the sprint. |
| 19 | +/// </remarks> |
| 20 | +public class PullRequestsMergedInSprint |
| 21 | +{ |
| 22 | + private const string PRQueryText = |
| 23 | + @"query PullRequestsMerged ($search_value: String!, $end_cursor: String) { |
| 24 | + search(query: $search_value, type: ISSUE, first: 25, after: $end_cursor) { |
| 25 | + pageInfo { |
| 26 | + hasNextPage |
| 27 | + endCursor |
| 28 | + } |
| 29 | + nodes { |
| 30 | + ... on PullRequest { |
| 31 | + title |
| 32 | + number |
| 33 | + changedFiles |
| 34 | + id |
| 35 | + url |
| 36 | + labels(first: 5) { |
| 37 | + nodes { |
| 38 | + name |
| 39 | + } |
| 40 | + } |
| 41 | + author { |
| 42 | + login |
| 43 | + ... on User { |
| 44 | + name |
| 45 | + } |
| 46 | + } |
| 47 | + } |
| 48 | + } |
| 49 | + } |
| 50 | + }"; |
| 51 | + |
| 52 | + private readonly IGitHubClient client; |
| 53 | + private readonly string search_value; |
| 54 | + |
| 55 | + /// <summary> |
| 56 | + /// Construct the object for this query |
| 57 | + /// </summary> |
| 58 | + /// <param name="client">The client object</param> |
| 59 | + /// <param name="owner">The owner of this repo</param> |
| 60 | + /// <param name="repository">The repository name</param> |
| 61 | + /// <param name="branch">The name of the branch within the repository</param> |
| 62 | + /// <param name="labels">A collection of label filters to apply</param> |
| 63 | + /// <param name="dateRange">The range of dates to query</param> |
| 64 | + public PullRequestsMergedInSprint( |
| 65 | + IGitHubClient client, string owner, string repository, |
| 66 | + string branch, IEnumerable<string>? labels, DateRange dateRange) |
| 67 | + { |
| 68 | + this.client = client ?? throw new ArgumentNullException(paramName: nameof(client), message: "Cannot be null"); |
| 69 | + if (string.IsNullOrWhiteSpace(owner)) |
| 70 | + throw new ArgumentException(message: "Must not be whitespace", paramName: nameof(owner)); |
| 71 | + if (string.IsNullOrWhiteSpace(repository)) |
| 72 | + throw new ArgumentException(message: "Must not be whitespace", paramName: nameof(repository)); |
| 73 | + if (string.IsNullOrWhiteSpace(branch)) |
| 74 | + throw new ArgumentException(message: "Must not be whitespace", paramName: nameof(branch)); |
| 75 | + |
| 76 | + var labelFilter = labels != null && labels.Any() ? string.Join(" ", labels) : string.Empty; |
| 77 | + search_value = $"type:pr is:merged base:{branch} {labelFilter} " + |
| 78 | + $"repo:{owner}/{repository} " + |
| 79 | + $"closed:{dateRange.StartDate:yyyy-MM-dd}..{dateRange.EndDate:yyyy-MM-dd}"; |
| 80 | + } |
| 81 | + |
| 82 | + /// <summary> |
| 83 | + /// Enumerate the Pull Request results |
| 84 | + /// </summary> |
| 85 | + /// <returns>The async enumerable for these PRs</returns> |
| 86 | + /// <remarks> |
| 87 | + /// The GraphQL interface is ideally suited to paging and async |
| 88 | + /// enumeration. So, the query returns the enumerable. |
| 89 | + /// </remarks> |
| 90 | + public async IAsyncEnumerable<PullRequest> PerformQuery() |
| 91 | + { |
| 92 | + var queryText = new GraphQLPacket |
| 93 | + { |
| 94 | + query = PRQueryText, |
| 95 | + variables = { [nameof(search_value)] = search_value } |
| 96 | + }; |
| 97 | + |
| 98 | + var cursor = default(string); |
| 99 | + var hasMore = true; |
| 100 | + while (hasMore) |
| 101 | + { |
| 102 | + queryText.variables["end_cursor"] = cursor!; |
| 103 | + var jsonData = await client.PostGraphQLRequestAsync(queryText); |
| 104 | + |
| 105 | + var searchNodes = jsonData.GetProperty("search"); |
| 106 | + |
| 107 | + foreach (var item in searchNodes.GetProperty("nodes").EnumerateArray()) |
| 108 | + yield return new PullRequest(item); |
| 109 | + (hasMore, cursor) = searchNodes.NextPageInfo(); |
| 110 | + } |
| 111 | + } |
| 112 | +} |
0 commit comments