mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-22 22:46:08 +00:00
72e30a7f90
* add reactions to issue response payload * add reactions to commit comment payload * add reactions to review comment payload * create tests for issue client * tests for commitcomment client * tests for pull request review comment * change observable tests * simplify strings * remove unnecessary clients * change integration tests to retrieve all reaction types * create integration test for issue comment client * fix merge conflicts * fix merge conflicts * gets tests passing again * fix some reaction integration tests * Fixup unit tests wth preview accepts header Also applied preview header to a couple of repositoryId based calls that were added by another PR * Fixup unit tests wth preview accepts header Also applied preview header to a couple of repositoryId based calls that were added by another PR * Rework reaction payload tests for IssueComments to handle Get, GetAllForIssue and GetAllForRepository calls * [WIP] reaction payload tests * Rework reaction payload tests for IssueComments to handle Get, GetAllForIssue and GetAllForRepository calls * Rework reaction payload tests for Issues client * Rework reaction payload tests for PullRequestReviews client * Rework reaction payload tests for CommitComments client * Revert "[WIP] reaction payload tests" This reverts commit a6179b0f21a3ddfe36bfd3ae5eafae0e69b52252.
126 lines
3.6 KiB
C#
126 lines
3.6 KiB
C#
using System;
|
|
using System.Diagnostics;
|
|
using System.Globalization;
|
|
|
|
namespace Octokit
|
|
{
|
|
[DebuggerDisplay("{DebuggerDisplay,nq}")]
|
|
public class PullRequestReviewComment
|
|
{
|
|
public PullRequestReviewComment() { }
|
|
|
|
public PullRequestReviewComment(int id)
|
|
{
|
|
Id = id;
|
|
}
|
|
|
|
public PullRequestReviewComment(Uri url, int id, string diffHunk, string path, int? position, int? originalPosition, string commitId, string originalCommitId, User user, string body, DateTimeOffset createdAt, DateTimeOffset updatedAt, Uri htmlUrl, Uri pullRequestUrl)
|
|
{
|
|
Url = url;
|
|
Id = id;
|
|
DiffHunk = diffHunk;
|
|
Path = path;
|
|
Position = position;
|
|
OriginalPosition = originalPosition;
|
|
CommitId = commitId;
|
|
OriginalCommitId = originalCommitId;
|
|
User = user;
|
|
Body = body;
|
|
CreatedAt = createdAt;
|
|
UpdatedAt = updatedAt;
|
|
HtmlUrl = htmlUrl;
|
|
PullRequestUrl = pullRequestUrl;
|
|
}
|
|
|
|
/// <summary>
|
|
/// URL of the comment via the API.
|
|
/// </summary>
|
|
public Uri Url { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The comment Id.
|
|
/// </summary>
|
|
public int Id { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The diff hunk the comment is about.
|
|
/// </summary>
|
|
public string DiffHunk { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The relative path of the file the comment is about.
|
|
/// </summary>
|
|
public string Path { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The line index in the diff.
|
|
/// </summary>
|
|
public int? Position { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The comment original position.
|
|
/// </summary>
|
|
public int? OriginalPosition { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The commit Id the comment is associated with.
|
|
/// </summary>
|
|
public string CommitId { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The original commit Id the comment is associated with.
|
|
/// </summary>
|
|
public string OriginalCommitId { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The user that created the comment.
|
|
/// </summary>
|
|
public User User { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The text of the comment.
|
|
/// </summary>
|
|
public string Body { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The date the comment was created.
|
|
/// </summary>
|
|
public DateTimeOffset CreatedAt { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The date the comment was last updated.
|
|
/// </summary>
|
|
public DateTimeOffset UpdatedAt { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The URL for this comment on Github.com
|
|
/// </summary>
|
|
public Uri HtmlUrl { get; protected set; }
|
|
|
|
/// <summary>
|
|
/// The URL for the pull request via the API.
|
|
/// </summary>
|
|
public Uri PullRequestUrl { get; protected set; }
|
|
|
|
public ReactionSummary Reactions { get; protected set; }
|
|
|
|
internal string DebuggerDisplay
|
|
{
|
|
get { return string.Format(CultureInfo.InvariantCulture, "Id: {0}, Path: {1}, User: {2}, Url: {3}", Id, Path, User.DebuggerDisplay, Url); }
|
|
}
|
|
}
|
|
|
|
public enum PullRequestReviewCommentSort
|
|
{
|
|
/// <summary>
|
|
/// Sort by create date (default)
|
|
/// </summary>
|
|
Created,
|
|
|
|
/// <summary>
|
|
/// Sort by the date of the last update
|
|
/// </summary>
|
|
Updated
|
|
}
|
|
}
|