mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
420 lines
21 KiB
C#
420 lines
21 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 Collaborators on a Repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/">Collaborators API documentation</a> for more details.
|
|
/// </remarks>
|
|
public class ObservableRepoCollaboratorsClient : IObservableRepoCollaboratorsClient
|
|
{
|
|
readonly IRepoCollaboratorsClient _client;
|
|
readonly IConnection _connection;
|
|
|
|
/// <summary>
|
|
/// Initializes a new GitHub Repo Collaborators API client.
|
|
/// </summary>
|
|
/// <param name="client">An IGitHubClient client.</param>
|
|
public ObservableRepoCollaboratorsClient(IGitHubClient client)
|
|
{
|
|
Ensure.ArgumentNotNull(client, nameof(client));
|
|
|
|
_client = client.Repository.Collaborator;
|
|
_connection = client.Connection;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the collaborators on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<User> GetAll(string owner, string name)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
|
|
return GetAll(owner, name, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the collaborators on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<User> GetAll(long repositoryId)
|
|
{
|
|
return GetAll(repositoryId, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the collaborators on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<User> GetAll(string owner, string name, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return GetAll(owner, name, new RepositoryCollaboratorListRequest(), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the collaborators on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<User> GetAll(long repositoryId, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return GetAll(repositoryId, new RepositoryCollaboratorListRequest(), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the collaborators on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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="request">Used to request and filter a list of repository collaborators</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<User> GetAll(string owner, string name, RepositoryCollaboratorListRequest request)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(request, nameof(request));
|
|
|
|
return GetAll(owner, name, request, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the collaborators on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="request">Used to request and filter a list of repository collaborators</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<User> GetAll(long repositoryId, RepositoryCollaboratorListRequest request)
|
|
{
|
|
Ensure.ArgumentNotNull(request, nameof(request));
|
|
|
|
return GetAll(repositoryId, request, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the collaborators on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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="request">Used to request and filter a list of repository collaborators</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<User> GetAll(string owner, string name, RepositoryCollaboratorListRequest request, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNull(request, nameof(request));
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return _connection.GetAndFlattenAllPages<User>(ApiUrls.RepoCollaborators(owner, name), request.ToParametersDictionary(), AcceptHeaders.NestedTeamsPreview, options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the collaborators on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="request">Used to request and filter a list of repository collaborators</param>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<User> GetAll(long repositoryId, RepositoryCollaboratorListRequest request, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(request, nameof(request));
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return _connection.GetAndFlattenAllPages<User>(ApiUrls.RepoCollaborators(repositoryId), request.ToParametersDictionary(), AcceptHeaders.NestedTeamsPreview, options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Checks if a user is a collaborator on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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="user">Username of the prospective collaborator</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<bool> IsCollaborator(string owner, string name, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.IsCollaborator(owner, name, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Checks if a user is a collaborator on a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#get">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="user">Username of the prospective collaborator</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<bool> IsCollaborator(long repositoryId, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.IsCollaborator(repositoryId, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Review a user's permission level in a repository
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level">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="user">Username of the collaborator to check permission for</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<CollaboratorPermission> ReviewPermission(string owner, string name, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.ReviewPermission(owner, name, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Review a user's permission level in a repository
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/repos/collaborators/#review-a-users-permission-level">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="user">Username of the collaborator to check permission for</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<CollaboratorPermission> ReviewPermission(long repositoryId, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.ReviewPermission(repositoryId, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a new collaborator to the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#add-collaborator">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="user">Username of the new collaborator</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<Unit> Add(string owner, string name, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.Add(owner, name, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a new collaborator to the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#add-collaborator">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="user">Username of the new collaborator</param>
|
|
/// <param name="permission">The permission to set. Only valid on organization-owned repositories.</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<bool> Add(string owner, string name, string user, CollaboratorRequest permission)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
Ensure.ArgumentNotNull(permission, nameof(permission));
|
|
|
|
return _client.Add(owner, name, user, permission).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a new collaborator to the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#add-collaborator">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="user">Username of the new collaborator</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<Unit> Add(long repositoryId, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.Add(repositoryId, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Adds a new collaborator to the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="user">Username of the new collaborator</param>
|
|
/// <param name="permission">The permission to set. Only valid on organization-owned repositories.</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<bool> Add(long repositoryId, string user, CollaboratorRequest permission)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
Ensure.ArgumentNotNull(permission, nameof(permission));
|
|
|
|
return _client.Add(repositoryId, user, permission).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invites a user as a collaborator to a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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="user">The username of the prospective collaborator</param>
|
|
public IObservable<RepositoryInvitation> Invite(string owner, string name, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.Invite(owner, name, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invites a user as a collaborator to a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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="user">The username of the prospective collaborator</param>
|
|
/// <param name="permission">The permission to set. Only valid on organization-owned repositories.</param>
|
|
public IObservable<RepositoryInvitation> Invite(string owner, string name, string user, CollaboratorRequest permission)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
Ensure.ArgumentNotNull(permission, nameof(permission));
|
|
|
|
return _client.Invite(owner, name, user, permission).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invites a user as a collaborator to a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="user">The username of the prospective collaborator</param>
|
|
|
|
public IObservable<RepositoryInvitation> Invite(long repositoryId, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.Invite(repositoryId, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Invites a user as a collaborator to a repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="user">The username of the prospective collaborator</param>
|
|
/// <param name="permission">The permission to set. Only valid on organization-owned repositories.</param>
|
|
public IObservable<RepositoryInvitation> Invite(long repositoryId, string user, CollaboratorRequest permission)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
Ensure.ArgumentNotNull(permission, nameof(permission));
|
|
|
|
return _client.Invite(repositoryId, user, permission).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a collaborator from the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#list">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="user">Username of the deleted collaborator</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<Unit> Delete(string owner, string name, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(owner, nameof(owner));
|
|
Ensure.ArgumentNotNullOrEmptyString(name, nameof(name));
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.Delete(owner, name, user).ToObservable();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes a collaborator from the repository.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/repos/collaborators/#remove-collaborator">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <param name="repositoryId">The id of the repository</param>
|
|
/// <param name="user">Username of the deleted collaborator</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
public IObservable<Unit> Delete(long repositoryId, string user)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(user, nameof(user));
|
|
|
|
return _client.Delete(repositoryId, user).ToObservable();
|
|
}
|
|
}
|
|
} |