Files
octokit.net/Octokit/Clients/CheckSuitesClient.cs
Victor 6c43183837 fix: comment id model update to long instead of int
* #2927: comment id model update to long instead of int

* #2927: code review fixes (1)

* #2927: code review fixes (2)

* #2927: comment id model update to long instead of int: unit tests fix

* #2927: code review fixes

* Fixed most names of parameters

---------

Co-authored-by: Victor Vorobyev <victor@myrtle-sa.com>
Co-authored-by: Brian C. Arnold <brian.arnold@spiderrock.net>
2024-06-10 08:12:08 -05:00

298 lines
16 KiB
C#

using System;
using System.Linq;
using System.Net;
using System.Threading.Tasks;
namespace Octokit
{
/// <summary>
/// A client for GitHub's Check Suites API.
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/">Check Suites API documentation</a> for more information.
/// </remarks>
public class CheckSuitesClient : ApiClient, ICheckSuitesClient
{
/// <summary>
/// Initializes a new GitHub Check Suites API client.
/// </summary>
/// <param name="apiConnection">An API connection</param>
public CheckSuitesClient(IApiConnection apiConnection) : base(apiConnection)
{
}
/// <summary>
/// Gets a single Check Suite by Id
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#get-a-single-check-suite">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="checkSuiteId">The Id of the check suite</param>
[ManualRoute("GET", "/repos/{owner}/{repo}/check-suites/{id}")]
public Task<CheckSuite> Get(string owner, string repoName, long checkSuiteId)
{
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
Ensure.ArgumentNotNullOrEmptyString(repoName, nameof(repoName));
return ApiConnection.Get<CheckSuite>(ApiUrls.CheckSuite(owner, repoName, checkSuiteId), null);
}
/// <summary>
/// Gets a single Check Suite by Id
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#get-a-single-check-suite">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="checkSuiteId">The Id of the check suite</param>
[ManualRoute("GET", "/repositories/{id}/check-suites/{check_suite_id}")]
public Task<CheckSuite> Get(long repositoryId, long checkSuiteId)
{
return ApiConnection.Get<CheckSuite>(ApiUrls.CheckSuite(repositoryId, checkSuiteId), null);
}
/// <summary>
/// Lists Check Suites for a commit reference (SHA, branch name or tag name)
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#list-check-suites-for-a-specific-ref">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="reference">The reference (SHA, branch name or tag name) to list check suites for</param>
[ManualRoute("GET", "/repos/{owner}/{repo}/commits/{ref}/check-suites")]
public Task<CheckSuitesResponse> GetAllForReference(string owner, string repoName, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
Ensure.ArgumentNotNullOrEmptyString(repoName, nameof(repoName));
Ensure.ArgumentNotNullOrEmptyString(reference, nameof(reference));
return GetAllForReference(owner, repoName, reference, new CheckSuiteRequest(), ApiOptions.None);
}
/// <summary>
/// Lists Check Suites for a commit reference (SHA, branch name or tag name)
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#list-check-suites-for-a-specific-ref">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="reference">The reference (SHA, branch name or tag name) to list check suites for</param>
[ManualRoute("GET", "/repositories/{id}/commits/{ref}/check-suites")]
public Task<CheckSuitesResponse> GetAllForReference(long repositoryId, string reference)
{
Ensure.ArgumentNotNullOrEmptyString(reference, nameof(reference));
return GetAllForReference(repositoryId, reference, new CheckSuiteRequest(), ApiOptions.None);
}
/// <summary>
/// Lists Check Suites for a commit reference (SHA, branch name or tag name)
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#list-check-suites-for-a-specific-ref">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="reference">The reference (SHA, branch name or tag name) to list check suites for</param>
/// <param name="request">Details to filter the request, such as by App Id or Check Name</param>
[ManualRoute("GET", "/repos/{owner}/{repo}/commits/{ref}/check-suites")]
public Task<CheckSuitesResponse> GetAllForReference(string owner, string repoName, string reference, CheckSuiteRequest request)
{
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
Ensure.ArgumentNotNullOrEmptyString(repoName, nameof(repoName));
Ensure.ArgumentNotNullOrEmptyString(reference, nameof(reference));
Ensure.ArgumentNotNull(request, nameof(request));
return GetAllForReference(owner, repoName, reference, request, ApiOptions.None);
}
/// <summary>
/// Lists Check Suites for a commit reference (SHA, branch name or tag name)
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#list-check-suites-for-a-specific-ref">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="reference">The reference (SHA, branch name or tag name) to list check suites for</param>
/// <param name="request">Details to filter the request, such as by App Id or Check Name</param>
[ManualRoute("GET", "/repositories/{id}/commits/{ref}/check-suites")]
public Task<CheckSuitesResponse> GetAllForReference(long repositoryId, string reference, CheckSuiteRequest request)
{
Ensure.ArgumentNotNullOrEmptyString(reference, nameof(reference));
Ensure.ArgumentNotNull(request, nameof(request));
return GetAllForReference(repositoryId, reference, request, ApiOptions.None);
}
/// <summary>
/// Lists Check Suites for a commit reference (SHA, branch name or tag name)
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#list-check-suites-for-a-specific-ref">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="reference">The reference (SHA, branch name or tag name) to list check suites for</param>
/// <param name="request">Details to filter the request, such as by App Id or Check Name</param>
/// <param name="options">Options to change the API response</param>
[ManualRoute("GET", "/repos/{owner}/{repo}/commits/{ref}/check-suites")]
public async Task<CheckSuitesResponse> GetAllForReference(string owner, string repoName, string reference, CheckSuiteRequest request, ApiOptions options)
{
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
Ensure.ArgumentNotNullOrEmptyString(repoName, nameof(repoName));
Ensure.ArgumentNotNullOrEmptyString(reference, nameof(reference));
Ensure.ArgumentNotNull(request, nameof(request));
Ensure.ArgumentNotNull(options, nameof(options));
var results = await ApiConnection.GetAll<CheckSuitesResponse>(ApiUrls.CheckSuitesForReference(owner, repoName, reference), request.ToParametersDictionary(), options).ConfigureAwait(false);
return new CheckSuitesResponse(
results.Count > 0 ? results.Max(x => x.TotalCount) : 0,
results.SelectMany(x => x.CheckSuites).ToList());
}
/// <summary>
/// Lists Check Suites for a commit reference (SHA, branch name or tag name)
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#list-check-suites-for-a-specific-ref">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="reference">The reference (SHA, branch name or tag name) to list check suites for</param>
/// <param name="request">Details to filter the request, such as by App Id or Check Name</param>
/// <param name="options">Options to change the API response</param>
[ManualRoute("GET", "/repositories/{id}/commits/{ref}/check-suites")]
public async Task<CheckSuitesResponse> GetAllForReference(long repositoryId, string reference, CheckSuiteRequest request, ApiOptions options)
{
Ensure.ArgumentNotNull(request, nameof(request));
Ensure.ArgumentNotNull(options, nameof(options));
Ensure.ArgumentNotNullOrEmptyString(reference, nameof(reference));
var results = await ApiConnection.GetAll<CheckSuitesResponse>(ApiUrls.CheckSuitesForReference(repositoryId, reference), request.ToParametersDictionary(), options).ConfigureAwait(false);
return new CheckSuitesResponse(
results.Count > 0 ? results.Max(x => x.TotalCount) : 0,
results.SelectMany(x => x.CheckSuites).ToList());
}
/// <summary>
/// Updates Check Suites preferences on a repository, such as disabling automatic creation when code is pushed
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#set-preferences-for-check-suites-on-a-repository">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="preferences">The check suite preferences</param>
[ManualRoute("PATCH", "/repos/{owner}/{repo}/check-suites/preferences")]
public Task<CheckSuitePreferencesResponse> UpdatePreferences(string owner, string repoName, CheckSuitePreferences preferences)
{
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
Ensure.ArgumentNotNullOrEmptyString(repoName, nameof(repoName));
Ensure.ArgumentNotNull(preferences, nameof(preferences));
return ApiConnection.Patch<CheckSuitePreferencesResponse>(ApiUrls.CheckSuitePreferences(owner, repoName), preferences);
}
/// <summary>
/// Updates Check Suites preferences on a repository, such as disabling automatic creation when code is pushed
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#set-preferences-for-check-suites-on-a-repository">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="preferences">The check suite preferences</param>
[ManualRoute("GET", "/repositories/{id}/check-suites/preferences")]
public Task<CheckSuitePreferencesResponse> UpdatePreferences(long repositoryId, CheckSuitePreferences preferences)
{
Ensure.ArgumentNotNull(preferences, nameof(preferences));
return ApiConnection.Patch<CheckSuitePreferencesResponse>(ApiUrls.CheckSuitePreferences(repositoryId), preferences);
}
/// <summary>
/// Creates a new Check Suite
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#create-a-check-suite">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="newCheckSuite">Details of the Check Suite to create</param>
[ManualRoute("POST", "/repos/{owner}/{repo}/check-suites")]
public Task<CheckSuite> Create(string owner, string repoName, NewCheckSuite newCheckSuite)
{
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
Ensure.ArgumentNotNullOrEmptyString(repoName, nameof(repoName));
Ensure.ArgumentNotNull(newCheckSuite, nameof(newCheckSuite));
return ApiConnection.Post<CheckSuite>(ApiUrls.CheckSuites(owner, repoName), newCheckSuite);
}
/// <summary>
/// Creates a new Check Suite
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#create-a-check-suite">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="newCheckSuite">Details of the Check Suite to create</param>
[ManualRoute("GET", "/repositories/{id}/check-suites")]
public Task<CheckSuite> Create(long repositoryId, NewCheckSuite newCheckSuite)
{
Ensure.ArgumentNotNull(newCheckSuite, nameof(newCheckSuite));
return ApiConnection.Post<CheckSuite>(ApiUrls.CheckSuites(repositoryId), newCheckSuite);
}
/// <summary>
/// Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#request-check-suites">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="owner">The owner of the repository</param>
/// <param name="repoName">The name of the repository</param>
/// <param name="checkSuiteId">The Id of the check suite</param>
[ManualRoute("GET", "/repos/{owner}/{repo}/check-suites/{2}/rerequest")]
public async Task<bool> Rerequest(string owner, string repoName, long checkSuiteId)
{
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
Ensure.ArgumentNotNullOrEmptyString(repoName, nameof(repoName));
var httpStatusCode = await Connection.Post(ApiUrls.CheckSuiteRerequest(owner, repoName, checkSuiteId)).ConfigureAwait(false);
if (httpStatusCode != HttpStatusCode.Created)
{
throw new ApiException("Invalid Status Code returned. Expected a 201", httpStatusCode);
}
return httpStatusCode == HttpStatusCode.Created;
}
/// <summary>
/// Triggers GitHub to rerequest an existing check suite, without pushing new code to a repository
/// </summary>
/// <remarks>
/// See the <a href="https://developer.github.com/v3/checks/suites/#request-check-suites">Check Suites API documentation</a> for more information.
/// </remarks>
/// <param name="repositoryId">The Id of the repository</param>
/// <param name="checkSuiteId">The Id of the check suite</param>
[ManualRoute("GET", "/repositories/{id}/check-suites/{2}/rerequest")]
public async Task<bool> Rerequest(long repositoryId, long checkSuiteId)
{
var httpStatusCode = await Connection.Post(ApiUrls.CheckSuiteRerequest(repositoryId, checkSuiteId)).ConfigureAwait(false);
if (httpStatusCode != HttpStatusCode.Created)
{
throw new ApiException("Invalid Status Code returned. Expected a 201", httpStatusCode);
}
return httpStatusCode == HttpStatusCode.Created;
}
}
}