mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
514 lines
25 KiB
C#
514 lines
25 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Issue Labels API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/">Issue Labels API documentation</a> for more information.
|
|
/// </remarks>
|
|
public class IssuesLabelsClient : ApiClient, IIssuesLabelsClient
|
|
{
|
|
public IssuesLabelsClient(IApiConnection apiConnection)
|
|
: base(apiConnection)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all labels for the issue.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/issues/{issue_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForIssue(string owner, string name, int number)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
|
|
return GetAllForIssue(owner, name, number, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all labels for the issue.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
[ManualRoute("GET", "/repositories/{id}/issues/{number}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForIssue(long repositoryId, int number)
|
|
{
|
|
return GetAllForIssue(repositoryId, number, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all labels for the issue.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/issues/{issue_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForIssue(string owner, string name, int number, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<Label>(ApiUrls.IssueLabels(owner, name, number), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all labels for the issue.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-labels-on-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
[ManualRoute("GET", "/repositories/{id}/issues/{number}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForIssue(long repositoryId, int number, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<Label>(ApiUrls.IssueLabels(repositoryId, number), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all labels for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForRepository(string owner, string name)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
|
|
return GetAllForRepository(owner, name, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all labels for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
[ManualRoute("GET", "/repositories/{id}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForRepository(long repositoryId)
|
|
{
|
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all labels for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForRepository(string owner, string name, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<Label>(ApiUrls.Labels(owner, name), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all labels for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#list-all-labels-for-this-repository">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
[ManualRoute("GET", "/repositories/{id}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForRepository(long repositoryId, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<Label>(ApiUrls.Labels(repositoryId), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets labels for every issue in a milestone
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The number of the milestone</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/milestones/{milestone_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForMilestone(string owner, string name, int number)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
|
|
return GetAllForMilestone(owner, name, number, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets labels for every issue in a milestone
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="number">The number of the milestone</param>
|
|
[ManualRoute("GET", "/repositories/{id}/milestones/{milestone_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForMilestone(long repositoryId, int number)
|
|
{
|
|
return GetAllForMilestone(repositoryId, number, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets labels for every issue in a milestone
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The number of the milestone</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/milestones/{milestone_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForMilestone(string owner, string name, int number, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<Label>(ApiUrls.MilestoneLabels(owner, name, number), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets labels for every issue in a milestone
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-labels-for-every-issue-in-a-milestone">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="number">The number of the milestone</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
[ManualRoute("GET", "/repositories/{id}/milestones/{milestone_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> GetAllForMilestone(long repositoryId, int number, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<Label>(ApiUrls.MilestoneLabels(repositoryId, number), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a single Label by name.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-a-single-label">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="labelName">The name of the label</param>
|
|
[ManualRoute("GET", "/repos/{owner}/{repo}/labels/{name}")]
|
|
public Task<Label> Get(string owner, string name, string labelName)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName));
|
|
|
|
return ApiConnection.Get<Label>(ApiUrls.Label(owner, name, labelName));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a single Label by name.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#get-a-single-label">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="labelName">The name of the label</param>
|
|
[ManualRoute("GET", "/repositories/{id}/labels/{name}")]
|
|
public Task<Label> Get(long repositoryId, string labelName)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName));
|
|
|
|
return ApiConnection.Get<Label>(ApiUrls.Label(repositoryId, labelName));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a label.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#delete-a-label">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="labelName">The name of the label</param>
|
|
[ManualRoute("DELETE", "/repos/{owner}/{repo}/labels/{name}")]
|
|
public Task Delete(string owner, string name, string labelName)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName));
|
|
|
|
return ApiConnection.Delete(ApiUrls.Label(owner, name, labelName));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a label.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#delete-a-label">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="labelName">The name of the label</param>
|
|
[ManualRoute("DELETE", "/repositories/{id}/labels/{name}")]
|
|
public Task Delete(long repositoryId, string labelName)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName));
|
|
|
|
return ApiConnection.Delete(ApiUrls.Label(repositoryId, labelName));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a label.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#create-a-label">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="newLabel">The data for the label to be created</param>
|
|
[ManualRoute("POST", "/repos/{owner}/{repo}/labels")]
|
|
public Task<Label> Create(string owner, string name, NewLabel newLabel)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(newLabel, nameof(newLabel));
|
|
|
|
return ApiConnection.Post<Label>(ApiUrls.Labels(owner, name), newLabel);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a label.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#create-a-label">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="newLabel">The data for the label to be created</param>
|
|
[ManualRoute("POST", "/repositories/{id}/labels/{name}")]
|
|
public Task<Label> Create(long repositoryId, NewLabel newLabel)
|
|
{
|
|
Ensure.ArgumentNotNull(newLabel, nameof(newLabel));
|
|
|
|
return ApiConnection.Post<Label>(ApiUrls.Labels(repositoryId), newLabel);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates a label.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#update-a-label">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="labelName">The name of the label</param>
|
|
/// <param name="labelUpdate">The data for the label to be updated</param>
|
|
[ManualRoute("PATCH", "/repos/{owner}/{repo}/labels/{name}")]
|
|
public Task<Label> Update(string owner, string name, string labelName, LabelUpdate labelUpdate)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName));
|
|
Ensure.ArgumentNotNull(labelUpdate, nameof(labelUpdate));
|
|
|
|
// BUG: this should be a PATCH instead of POST
|
|
|
|
return ApiConnection.Post<Label>(ApiUrls.Label(owner, name, labelName), labelUpdate);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates a label.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#update-a-label">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="labelName">The name of the label</param>
|
|
/// <param name="labelUpdate">The data for the label to be updated</param>
|
|
[ManualRoute("PATCH", "/repositories/{id}/labels/{name}")]
|
|
public Task<Label> Update(long repositoryId, string labelName, LabelUpdate labelUpdate)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName));
|
|
Ensure.ArgumentNotNull(labelUpdate, nameof(labelUpdate));
|
|
|
|
// BUG: this should be a PATCH instead of POST
|
|
|
|
return ApiConnection.Post<Label>(ApiUrls.Label(repositoryId, labelName), labelUpdate);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a label to an issue
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#add-labels-to-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
/// <param name="labels">The names of the labels to add</param>
|
|
[ManualRoute("POST", "/repos/{owner}/{repo}/issues/{issue_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> AddToIssue(string owner, string name, int number, string[] labels)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(labels, nameof(labels));
|
|
|
|
return ApiConnection.Post<IReadOnlyList<Label>>(ApiUrls.IssueLabels(owner, name, number), labels);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a label to an issue
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#add-labels-to-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
/// <param name="labels">The names of the labels to add</param>
|
|
[ManualRoute("POST", "/repositories/{id}/issues/{number}/labels")]
|
|
public Task<IReadOnlyList<Label>> AddToIssue(long repositoryId, int number, string[] labels)
|
|
{
|
|
Ensure.ArgumentNotNull(labels, nameof(labels));
|
|
|
|
return ApiConnection.Post<IReadOnlyList<Label>>(ApiUrls.IssueLabels(repositoryId, number), labels);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes a label from an issue
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
/// <param name="labelName">The name of the label to remove</param>
|
|
[ManualRoute("DELETE", "/repos/{owner}/{repo}/issues/{issue_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> RemoveFromIssue(string owner, string name, int number, string labelName)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName));
|
|
|
|
return ApiConnection.Delete<IReadOnlyList<Label>>(ApiUrls.IssueLabel(owner, name, number, labelName), new object());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes a label from an issue
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-a-label-from-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
/// <param name="labelName">The name of the label to remove</param>
|
|
[ManualRoute("DELETE", "/repositories/{id}/issues/{number}/labels")]
|
|
public Task<IReadOnlyList<Label>> RemoveFromIssue(long repositoryId, int number, string labelName)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(labelName, nameof(labelName));
|
|
|
|
return ApiConnection.Delete<IReadOnlyList<Label>>(ApiUrls.IssueLabel(repositoryId, number, labelName), new object());
|
|
}
|
|
|
|
/// <summary>
|
|
/// Replaces all labels on the specified issues with the provided labels
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#replace-all-labels-for-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
/// <param name="labels">The names of the labels to set</param>
|
|
[ManualRoute("PUT", "/repos/{owner}/{repo}/issues/{issue_number}/labels")]
|
|
public Task<IReadOnlyList<Label>> ReplaceAllForIssue(string owner, string name, int number, string[] labels)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(labels, nameof(labels));
|
|
|
|
return ApiConnection.Put<IReadOnlyList<Label>>(ApiUrls.IssueLabels(owner, name, number), labels);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Replaces all labels on the specified issues with the provided labels
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#replace-all-labels-for-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
/// <param name="labels">The names of the labels to set</param>
|
|
[ManualRoute("PUT", "/repositories/{id}/issues/{number}/labels")]
|
|
public Task<IReadOnlyList<Label>> ReplaceAllForIssue(long repositoryId, int number, string[] labels)
|
|
{
|
|
Ensure.ArgumentNotNull(labels, nameof(labels));
|
|
|
|
return ApiConnection.Put<IReadOnlyList<Label>>(ApiUrls.IssueLabels(repositoryId, number), labels);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes all labels from an issue
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
[ManualRoute("DELETE", "/repos/{owner}/{repo}/issues/{issue_number}/labels")]
|
|
public Task RemoveAllFromIssue(string owner, string name, int number)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
|
|
return ApiConnection.Delete(ApiUrls.IssueLabels(owner, name, number));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Removes all labels from an issue
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/labels/#remove-all-labels-from-an-issue">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="number">The number of the issue</param>
|
|
[ManualRoute("DELETE", "/repositories/{id}/issues/{number}/labels")]
|
|
public Task RemoveAllFromIssue(long repositoryId, int number)
|
|
{
|
|
return ApiConnection.Delete(ApiUrls.IssueLabels(repositoryId, number));
|
|
}
|
|
}
|
|
}
|