mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
123 lines
4.7 KiB
C#
123 lines
4.7 KiB
C#
using System;
|
|
using System.Reactive.Threading.Tasks;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Git Trees API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/git/trees/">Git Trees API documentation</a> for more information.
|
|
/// </remarks>
|
|
public class ObservableTreesClient : IObservableTreesClient
|
|
{
|
|
readonly ITreesClient _client;
|
|
|
|
public ObservableTreesClient(IGitHubClient client)
|
|
{
|
|
Ensure.ArgumentNotNull(client, "client");
|
|
|
|
_client = client.Git.Tree;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Tree Response for a given SHA.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/git/trees/#get-a-tree
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="reference">The SHA that references the tree</param>
|
|
public IObservable<TreeResponse> Get(string owner, string name, string reference)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
|
|
|
return _client.Get(owner, name, reference).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Tree Response for a given SHA.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/git/trees/#get-a-tree
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="reference">The SHA that references the tree</param>
|
|
public IObservable<TreeResponse> Get(long repositoryId, string reference)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
|
|
|
return _client.Get(repositoryId, reference).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Tree Response for a given SHA.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/git/trees/#get-a-tree-recursively
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="reference">The SHA that references the tree</param>
|
|
public IObservable<TreeResponse> GetRecursive(string owner, string name, string reference)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
|
|
|
return _client.GetRecursive(owner, name, reference).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Tree Response for a given SHA.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/git/trees/#get-a-tree-recursively
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="reference">The SHA that references the tree</param>
|
|
public IObservable<TreeResponse> GetRecursive(long repositoryId, string reference)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(reference, "reference");
|
|
|
|
return _client.GetRecursive(repositoryId, reference).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Tree in the specified repo
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/git/trees/#create-a-tree
|
|
/// </remarks>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="name">The name of the repository</param>
|
|
/// <param name="newTree">The value of the new tree</param>
|
|
public IObservable<TreeResponse> Create(string owner, string name, NewTree newTree)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
|
Ensure.ArgumentNotNullOrEmptyString(name, "name");
|
|
Ensure.ArgumentNotNull(newTree, "newTree");
|
|
|
|
return _client.Create(owner, name, newTree).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new Tree in the specified repo
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// http://developer.github.com/v3/git/trees/#create-a-tree
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The Id of the repository</param>
|
|
/// <param name="newTree">The value of the new tree</param>
|
|
public IObservable<TreeResponse> Create(long repositoryId, NewTree newTree)
|
|
{
|
|
Ensure.ArgumentNotNull(newTree, "newTree");
|
|
|
|
return _client.Create(repositoryId, newTree).ToObservable();
|
|
}
|
|
}
|
|
}
|