mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-28 08:58:37 +00:00
296 lines
13 KiB
C#
296 lines
13 KiB
C#
using System;
|
|
using System.Reactive;
|
|
using System.Reactive.Threading.Tasks;
|
|
using Octokit.Reactive.Internal;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Issue Milestones API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/issues/milestones/">Issue Milestones API documentation</a> for more information.
|
|
/// </remarks>
|
|
public class ObservableMilestonesClient : IObservableMilestonesClient
|
|
{
|
|
readonly IMilestonesClient _client;
|
|
readonly IConnection _connection;
|
|
|
|
public ObservableMilestonesClient(IGitHubClient client)
|
|
{
|
|
Ensure.ArgumentNotNull(client, "client");
|
|
|
|
_client = client.Issue.Milestone;
|
|
_connection = client.Connection;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a single Milestone by number.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#get-a-single-milestone
|
|
/// </remarks>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> Get(string owner, string name, int number)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
|
|
return _client.Get(owner, name, number).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a single Milestone by number.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#get-a-single-milestone
|
|
/// </remarks>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> Get(int repositoryId, int number)
|
|
{
|
|
return _client.Get(repositoryId, number).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all open milestones for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> GetAllForRepository(string owner, string name)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
|
|
return GetAllForRepository(owner, name, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all open milestones for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The ID of the repository</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> GetAllForRepository(int repositoryId)
|
|
{
|
|
return GetAllForRepository(repositoryId, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all open milestones for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
|
/// </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>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> GetAllForRepository(string owner, string name, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
Ensure.ArgumentNotNull(options, "options");
|
|
|
|
return _connection.GetAndFlattenAllPages<Milestone>(ApiUrls.Milestones(owner, name), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all open milestones for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The ID of the repository</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> GetAllForRepository(int repositoryId, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, "options");
|
|
|
|
return _connection.GetAndFlattenAllPages<Milestone>(ApiUrls.Milestones(repositoryId), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all open milestones for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> GetAllForRepository(string owner, string name, MilestoneRequest request)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
Ensure.ArgumentNotNull(request, "request");
|
|
|
|
return GetAllForRepository(owner, name, request, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all open milestones for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The ID of the repository</param>
|
|
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> GetAllForRepository(int repositoryId, MilestoneRequest request)
|
|
{
|
|
Ensure.ArgumentNotNull(request, "request");
|
|
|
|
return GetAllForRepository(repositoryId, request, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all open milestones for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> GetAllForRepository(string owner, string name, MilestoneRequest request, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
Ensure.ArgumentNotNull(request, "request");
|
|
Ensure.ArgumentNotNull(options, "options");
|
|
|
|
return _connection.GetAndFlattenAllPages<Milestone>(ApiUrls.Milestones(owner, name),
|
|
request.ToParametersDictionary(), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all open milestones for the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/issues/milestones/#list-milestones-for-a-repository
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The ID of the repository</param>
|
|
/// <param name="request">Used to filter and sort the list of Milestones returned</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> GetAllForRepository(int repositoryId, MilestoneRequest request, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(request, "request");
|
|
Ensure.ArgumentNotNull(options, "options");
|
|
|
|
return _connection.GetAndFlattenAllPages<Milestone>(ApiUrls.Milestones(repositoryId),
|
|
request.ToParametersDictionary(), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a milestone for the specified repository. Any user with pull access to a repository can create a
|
|
/// Milestone.
|
|
/// </summary>
|
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#create-a-milestone</remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="newMilestone">A <see cref="NewMilestone"/> instance describing the new Milestone to create</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> Create(string owner, string name, NewMilestone newMilestone)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
Ensure.ArgumentNotNull(newMilestone, "newMilestone");
|
|
|
|
return _client.Create(owner, name, newMilestone).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a milestone for the specified repository. Any user with pull access to a repository can create a
|
|
/// Milestone.
|
|
/// </summary>
|
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#create-a-milestone</remarks>
|
|
/// <param name="repositoryId">The ID of the repository</param>
|
|
/// <param name="newMilestone">A <see cref="NewMilestone"/> instance describing the new Milestone to create</param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> Create(int repositoryId, NewMilestone newMilestone)
|
|
{
|
|
Ensure.ArgumentNotNull(newMilestone, "newMilestone");
|
|
|
|
return _client.Create(repositoryId, newMilestone).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates a milestone for the specified repository. Any user with pull access to a repository can create a
|
|
/// Milestone.
|
|
/// </summary>
|
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#update-a-milestone</remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The Milestone number</param>
|
|
/// <param name="milestoneUpdate">An <see cref="MilestoneUpdate"/> instance describing the changes to make to the Milestone
|
|
/// </param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> Update(string owner, string name, int number, MilestoneUpdate milestoneUpdate)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
Ensure.ArgumentNotNull(milestoneUpdate, "milestoneUpdate");
|
|
|
|
return _client.Update(owner, name, number, milestoneUpdate).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Updates a milestone for the specified repository. Any user with pull access to a repository can create a
|
|
/// Milestone.
|
|
/// </summary>
|
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#update-a-milestone</remarks>
|
|
/// <param name="repositoryId">The ID of the repository</param>
|
|
/// <param name="number">The Milestone number</param>
|
|
/// <param name="milestoneUpdate">An <see cref="MilestoneUpdate"/> instance describing the changes to make to the Milestone
|
|
/// </param>
|
|
/// <returns></returns>
|
|
public IObservable<Milestone> Update(int repositoryId, int number, MilestoneUpdate milestoneUpdate)
|
|
{
|
|
Ensure.ArgumentNotNull(milestoneUpdate, "milestoneUpdate");
|
|
|
|
return _client.Update(repositoryId, number, milestoneUpdate).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a milestone for the specified repository. Any user with pull access to a repository can create an
|
|
/// Milestone.
|
|
/// </summary>
|
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#delete-a-milestone</remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="number">The milestone number</param>
|
|
/// <returns></returns>
|
|
public IObservable<Unit> Delete(string owner, string name, int number)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
|
|
return _client.Delete(owner, name, number).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a milestone for the specified repository. Any user with pull access to a repository can create an
|
|
/// Milestone.
|
|
/// </summary>
|
|
/// <remarks>http://developer.github.com/v3/issues/milestones/#delete-a-milestone</remarks>
|
|
/// <param name="repositoryId">The ID of the repository</param>
|
|
/// <param name="number">The milestone number</param>
|
|
/// <returns></returns>
|
|
public IObservable<Unit> Delete(int repositoryId, int number)
|
|
{
|
|
return _client.Delete(repositoryId, number).ToObservable();
|
|
}
|
|
}
|
|
}
|