mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
* #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>
143 lines
7.4 KiB
C#
143 lines
7.4 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Reactions API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/reactions/">Reactions API documentation</a> for more information.
|
|
/// </remarks>
|
|
public class PullRequestReviewCommentReactionsClient : ApiClient, IPullRequestReviewCommentReactionsClient
|
|
{
|
|
public PullRequestReviewCommentReactionsClient(IApiConnection apiConnection)
|
|
: base(apiConnection)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get all reactions for a specified Pull Request Review Comment.
|
|
/// </summary>
|
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="commentId">The comment id</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions")]
|
|
public Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, long commentId)
|
|
{
|
|
return GetAll(owner, name, commentId, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get all reactions for a specified Pull Request Review Comment.
|
|
/// </summary>
|
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="commentId">The comment id</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions")]
|
|
public Task<IReadOnlyList<Reaction>> GetAll(string owner, string name, long commentId, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<Reaction>(ApiUrls.PullRequestReviewCommentReactions(owner, name, commentId), null, options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get all reactions for a specified Pull Request Review Comment.
|
|
/// </summary>
|
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="commentId">The comment id</param>
|
|
[ManualRoute("GET", "/repositories/{id}/pulls/comments/{comment_id}/reactions")]
|
|
public Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, long commentId)
|
|
{
|
|
return GetAll(repositoryId, commentId, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get all reactions for a specified Pull Request Review Comment.
|
|
/// </summary>
|
|
/// <remarks>https://developer.github.com/v3/reactions/#list-reactions-for-a-pull-request-review-comment</remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="commentId">The comment id</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
[ManualRoute("GET", "/repositories/{id}/pulls/comments/{comment_id}/reactions")]
|
|
public Task<IReadOnlyList<Reaction>> GetAll(long repositoryId, long commentId, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<Reaction>(ApiUrls.PullRequestReviewCommentReactions(repositoryId, commentId), null, options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a reaction for a specified Pull Request Review Comment.
|
|
/// </summary>
|
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-pull-request-review-comment</remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="commentId">The comment id</param>
|
|
/// <param name="reaction">The reaction to create</param>
|
|
[ManualRoute("POST", "/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions")]
|
|
public Task<Reaction> Create(string owner, string name, long commentId, NewReaction reaction)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(reaction, nameof(reaction));
|
|
|
|
return ApiConnection.Post<Reaction>(ApiUrls.PullRequestReviewCommentReactions(owner, name, commentId), reaction);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a reaction for a specified Pull Request Review Comment.
|
|
/// </summary>
|
|
/// <remarks>https://developer.github.com/v3/reactions/#create-reaction-for-a-pull-request-review-comment</remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="commentId">The comment id</param>
|
|
/// <param name="reaction">The reaction to create</param>
|
|
[ManualRoute("POST", "/repositories/{id}/pulls/comments/{comment_id}/reactions")]
|
|
public Task<Reaction> Create(long repositoryId, long commentId, NewReaction reaction)
|
|
{
|
|
Ensure.ArgumentNotNull(reaction, nameof(reaction));
|
|
|
|
return ApiConnection.Post<Reaction>(ApiUrls.PullRequestReviewCommentReactions(repositoryId, commentId), reaction);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a reaction for a specified Pull Request comment
|
|
/// </summary>
|
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="commentId">The comment id</param>
|
|
/// <param name="reactionId">The reaction id</param>
|
|
/// <returns></returns>
|
|
[ManualRoute("DELETE", "/repos/{owner}/{repo}/pulls/comments/{comment_id}/reactions/{reaction_id}")]
|
|
public Task Delete(string owner, string name, long commentId, long reactionId)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
|
|
return ApiConnection.Delete(ApiUrls.PullRequestReviewCommentReaction(owner, name, commentId, reactionId));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a reaction for a specified Pull Request comment
|
|
/// </summary>
|
|
/// <remarks>https://docs.github.com/rest/reactions#delete-a-pull-request-comment-reaction</remarks>
|
|
/// <param name="repositoryId">The owner of the repository</param>
|
|
/// <param name="commentId">The comment id</param>
|
|
/// <param name="reactionId">The reaction id</param>
|
|
/// <returns></returns>
|
|
[ManualRoute("DELETE", "/repositories/{id}/pulls/comments/{comment_id}/reactions/{reaction_id}")]
|
|
public Task Delete(long repositoryId, long commentId, long reactionId)
|
|
{
|
|
return ApiConnection.Delete(ApiUrls.PullRequestReviewCommentReaction(repositoryId, commentId, reactionId));
|
|
}
|
|
}
|
|
}
|