mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 12:03:19 +00:00
Add repositoryId overloads to methods on I(Observable)StarredClient (#1389)
* modified XML docs * updated xml docs * added new overloads * added new unit tests * added new integration tests * revert xml back a little * fixed failed tests * cleared <returns> tags * removed <returns> tags * remove <returns> tags
This commit is contained in:
committed by
Ryan Gribble
parent
9cf39defc1
commit
e701ae763c
@@ -2,6 +2,12 @@
|
||||
|
||||
namespace Octokit.Reactive
|
||||
{
|
||||
/// <summary>
|
||||
/// A client for GitHub's Activity Starring API.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/activity/starring/">Activity Starring API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
public interface IObservableStarredClient
|
||||
{
|
||||
/// <summary>
|
||||
@@ -10,9 +16,15 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{User}"/> of <see cref="User"/>s starring the passed repository</returns>
|
||||
IObservable<User> GetAllStargazers(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
IObservable<User> GetAllStargazers(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository
|
||||
/// </summary>
|
||||
@@ -20,8 +32,15 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{User}"/> of <see cref="User"/>s starring the passed repository</returns>
|
||||
IObservable<User> GetAllStargazers(string owner, string name, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
IObservable<User> GetAllStargazers(int repositoryId, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||
@@ -29,8 +48,14 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>A <see cref="IObservable{UserStar}"/> of <see cref="User"/>s starring the passed repository with star creation timestamps.</returns>
|
||||
IObservable<UserStar> GetAllStargazersWithTimestamps(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||
@@ -39,43 +64,38 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>A <see cref="IObservable{UserStar}"/> of <see cref="User"/>s starring the passed repository with star creation timestamps.</returns>
|
||||
IObservable<UserStar> GetAllStargazersWithTimestamps(string owner, string name, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user
|
||||
/// </summary>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{Repository}"/> of <see cref="Repository"/>(ies) starred by the current user
|
||||
/// </returns>
|
||||
IObservable<Repository> GetAllForCurrent();
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user
|
||||
/// </summary>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{Repository}"/> of <see cref="Repository"/>(ies) starred by the current user
|
||||
/// </returns>
|
||||
IObservable<Repository> GetAllForCurrent(ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the current authenticated user with star creation timestamps.
|
||||
/// </returns>
|
||||
IObservable<RepositoryStar> GetAllForCurrentWithTimestamps();
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the current authenticated user with star creation timestamps.
|
||||
/// </returns>
|
||||
IObservable<RepositoryStar> GetAllForCurrentWithTimestamps(ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -83,10 +103,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{Repository}"/> of <see cref="Repository"/>(ies) starred by the current user,
|
||||
/// sorted according to the passed request parameters
|
||||
/// </returns>
|
||||
IObservable<Repository> GetAllForCurrent(StarredRequest request);
|
||||
|
||||
/// <summary>
|
||||
@@ -95,10 +111,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{Repository}"/> of <see cref="Repository"/>(ies) starred by the current user,
|
||||
/// sorted according to the passed request parameters
|
||||
/// </returns>
|
||||
IObservable<Repository> GetAllForCurrent(StarredRequest request, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -106,10 +118,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the current user,
|
||||
/// sorted according to the passed request parameters and with star creation timestamps.
|
||||
/// </returns>
|
||||
IObservable<RepositoryStar> GetAllForCurrentWithTimestamps(StarredRequest request);
|
||||
|
||||
/// <summary>
|
||||
@@ -118,10 +126,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the current user,
|
||||
/// sorted according to the passed request parameters and with star creation timestamps.
|
||||
/// </returns>
|
||||
IObservable<RepositoryStar> GetAllForCurrentWithTimestamps(StarredRequest request, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -129,7 +133,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{Repository}"/> starred by the specified user</returns>
|
||||
IObservable<Repository> GetAllForUser(string user);
|
||||
|
||||
/// <summary>
|
||||
@@ -138,7 +141,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{Repository}"/> starred by the specified user</returns>
|
||||
IObservable<Repository> GetAllForUser(string user, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -146,9 +148,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/>(ies) starred by the specified user with star creation timestamps.
|
||||
/// </returns>
|
||||
IObservable<RepositoryStar> GetAllForUserWithTimestamps(string user);
|
||||
|
||||
/// <summary>
|
||||
@@ -157,9 +156,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/>(ies) starred by the specified user with star creation timestamps.
|
||||
/// </returns>
|
||||
IObservable<RepositoryStar> GetAllForUserWithTimestamps(string user, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -168,7 +164,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{Repository}"/> starred by the specified user</returns>
|
||||
IObservable<Repository> GetAllForUser(string user, StarredRequest request);
|
||||
|
||||
/// <summary>
|
||||
@@ -178,7 +173,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{Repository}"/> starred by the specified user</returns>
|
||||
IObservable<Repository> GetAllForUser(string user, StarredRequest request, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -187,10 +181,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the specified user,
|
||||
/// sorted according to the passed request parameters and with star creation timestamps.
|
||||
/// </returns>
|
||||
IObservable<RepositoryStar> GetAllForUserWithTimestamps(string user, StarredRequest request);
|
||||
|
||||
/// <summary>
|
||||
@@ -200,10 +190,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the specified user,
|
||||
/// sorted according to the passed request parameters and with star creation timestamps.
|
||||
/// </returns>
|
||||
IObservable<RepositoryStar> GetAllForUserWithTimestamps(string user, StarredRequest request, ApiOptions options);
|
||||
|
||||
/// <summary>
|
||||
@@ -212,7 +198,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>A <c>bool</c> representing the success of the operation</returns>
|
||||
IObservable<bool> CheckStarred(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
@@ -220,7 +205,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository to star</param>
|
||||
/// <param name="name">The name of the repository to star</param>
|
||||
/// <returns>A <c>bool</c> representing the success of starring</returns>
|
||||
IObservable<bool> StarRepo(string owner, string name);
|
||||
|
||||
/// <summary>
|
||||
@@ -228,7 +212,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository to unstar</param>
|
||||
/// <param name="name">The name of the repository to unstar</param>
|
||||
/// <returns>A <c>bool</c> representing the success of the operation</returns>
|
||||
IObservable<bool> RemoveStarFromRepo(string owner, string name);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -4,6 +4,12 @@ using Octokit.Reactive.Internal;
|
||||
|
||||
namespace Octokit.Reactive
|
||||
{
|
||||
/// <summary>
|
||||
/// A client for GitHub's Activity Starring API.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// See the <a href="http://developer.github.com/v3/activity/starring/">Activity Starring API documentation</a> for more information.
|
||||
/// </remarks>
|
||||
public class ObservableStarredClient : IObservableStarredClient
|
||||
{
|
||||
private readonly IStarredClient _client;
|
||||
@@ -23,7 +29,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{User}"/> of <see cref="User"/>s starring the passed repository</returns>
|
||||
public IObservable<User> GetAllStargazers(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -32,6 +37,16 @@ namespace Octokit.Reactive
|
||||
return GetAllStargazers(owner, name, ApiOptions.None);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
public IObservable<User> GetAllStargazers(int repositoryId)
|
||||
{
|
||||
return GetAllStargazers(repositoryId, ApiOptions.None);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository
|
||||
/// </summary>
|
||||
@@ -39,7 +54,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{User}"/> of <see cref="User"/>s starring the passed repository</returns>
|
||||
public IObservable<User> GetAllStargazers(string owner, string name, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -49,13 +63,25 @@ namespace Octokit.Reactive
|
||||
return _connection.GetAndFlattenAllPages<User>(ApiUrls.Stargazers(owner, name), options);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
public IObservable<User> GetAllStargazers(int repositoryId, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, "options");
|
||||
|
||||
return _connection.GetAndFlattenAllPages<User>(ApiUrls.Stargazers(repositoryId), options);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>A <see cref="IObservable{UserStar}"/> of <see cref="User"/>s starring the passed repository with star creation timestamps.</returns>
|
||||
public IObservable<UserStar> GetAllStargazersWithTimestamps(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -64,6 +90,16 @@ namespace Octokit.Reactive
|
||||
return GetAllStargazersWithTimestamps(owner, name, ApiOptions.None);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
public IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId)
|
||||
{
|
||||
return GetAllStargazersWithTimestamps(repositoryId, ApiOptions.None);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||
/// </summary>
|
||||
@@ -71,7 +107,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>A <see cref="IObservable{UserStar}"/> of <see cref="User"/>s starring the passed repository with star creation timestamps.</returns>
|
||||
public IObservable<UserStar> GetAllStargazersWithTimestamps(string owner, string name, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -81,13 +116,23 @@ namespace Octokit.Reactive
|
||||
return _connection.GetAndFlattenAllPages<UserStar>(ApiUrls.Stargazers(owner, name), null, AcceptHeaders.StarCreationTimestamps, options);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the stargazers for the passed repository with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <param name="repositoryId">The ID of the repository</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
public IObservable<UserStar> GetAllStargazersWithTimestamps(int repositoryId, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, "options");
|
||||
|
||||
return _connection.GetAndFlattenAllPages<UserStar>(ApiUrls.Stargazers(repositoryId), null, AcceptHeaders.StarCreationTimestamps, options);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user
|
||||
/// </summary>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{Repository}"/> of <see cref="Repository"/>(ies) starred by the current user
|
||||
/// </returns>
|
||||
public IObservable<Repository> GetAllForCurrent()
|
||||
{
|
||||
return GetAllForCurrent(ApiOptions.None);
|
||||
@@ -97,9 +142,6 @@ namespace Octokit.Reactive
|
||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user
|
||||
/// </summary>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{Repository}"/> of <see cref="Repository"/>(ies) starred by the current user
|
||||
/// </returns>
|
||||
public IObservable<Repository> GetAllForCurrent(ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, "options");
|
||||
@@ -111,9 +153,6 @@ namespace Octokit.Reactive
|
||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the current authenticated user with star creation timestamps.
|
||||
/// </returns>
|
||||
public IObservable<RepositoryStar> GetAllForCurrentWithTimestamps()
|
||||
{
|
||||
return GetAllForCurrentWithTimestamps(ApiOptions.None);
|
||||
@@ -123,9 +162,6 @@ namespace Octokit.Reactive
|
||||
/// Retrieves all of the starred <see cref="Repository"/>(ies) for the current user with star creation timestamps.
|
||||
/// </summary>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the current authenticated user with star creation timestamps.
|
||||
/// </returns>
|
||||
public IObservable<RepositoryStar> GetAllForCurrentWithTimestamps(ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(options, "options");
|
||||
@@ -138,10 +174,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{Repository}"/> of <see cref="Repository"/>(ies) starred by the current user,
|
||||
/// sorted according to the passed request parameters
|
||||
/// </returns>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
|
||||
public IObservable<Repository> GetAllForCurrent(StarredRequest request)
|
||||
{
|
||||
@@ -156,10 +188,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{Repository}"/> of <see cref="Repository"/>(ies) starred by the current user,
|
||||
/// sorted according to the passed request parameters
|
||||
/// </returns>
|
||||
public IObservable<Repository> GetAllForCurrent(StarredRequest request, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(request, "request");
|
||||
@@ -173,10 +201,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the current user,
|
||||
/// sorted according to the passed request parameters and with star creation timestamps.
|
||||
/// </returns>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
|
||||
public IObservable<RepositoryStar> GetAllForCurrentWithTimestamps(StarredRequest request)
|
||||
{
|
||||
@@ -191,10 +215,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the current user,
|
||||
/// sorted according to the passed request parameters and with star creation timestamps.
|
||||
/// </returns>
|
||||
public IObservable<RepositoryStar> GetAllForCurrentWithTimestamps(StarredRequest request, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNull(request, "request");
|
||||
@@ -208,7 +228,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{Repository}"/> starred by the specified user</returns>
|
||||
public IObservable<Repository> GetAllForUser(string user)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(user, "user");
|
||||
@@ -222,7 +241,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{Repository}"/> starred by the specified user</returns>
|
||||
public IObservable<Repository> GetAllForUser(string user, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(user, "user");
|
||||
@@ -236,9 +254,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/>(ies) starred by the specified user with star creation timestamps.
|
||||
/// </returns>
|
||||
public IObservable<RepositoryStar> GetAllForUserWithTimestamps(string user)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(user, "user");
|
||||
@@ -252,9 +267,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/>(ies) starred by the specified user with star creation timestamps.
|
||||
/// </returns>
|
||||
public IObservable<RepositoryStar> GetAllForUserWithTimestamps(string user, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(user, "user");
|
||||
@@ -269,7 +281,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{Repository}"/> starred by the specified user</returns>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
|
||||
public IObservable<Repository> GetAllForUser(string user, StarredRequest request)
|
||||
{
|
||||
@@ -286,7 +297,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated</exception>
|
||||
/// <returns>A <see cref="IObservable{Repository}"/> starred by the specified user</returns>
|
||||
public IObservable<Repository> GetAllForUser(string user, StarredRequest request, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(user, "user");
|
||||
@@ -302,10 +312,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="user">The login of the user</param>
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the specified user,
|
||||
/// sorted according to the passed request parameters and with star creation timestamps.
|
||||
/// </returns>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
|
||||
public IObservable<RepositoryStar> GetAllForUserWithTimestamps(string user, StarredRequest request)
|
||||
{
|
||||
@@ -322,10 +328,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="request">Star-specific request parameters that sort the results</param>
|
||||
/// <param name="options">Options for changing the API response</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>
|
||||
/// A <see cref="IObservable{RepoStar}"/> of <see cref="Repository"/>(ies) starred by the specified user,
|
||||
/// sorted according to the passed request parameters and with star creation timestamps.
|
||||
/// </returns>
|
||||
public IObservable<RepositoryStar> GetAllForUserWithTimestamps(string user, StarredRequest request, ApiOptions options)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(user, "user");
|
||||
@@ -341,7 +343,6 @@ namespace Octokit.Reactive
|
||||
/// <param name="owner">The owner of the repository</param>
|
||||
/// <param name="name">The name of the repository</param>
|
||||
/// <exception cref="AuthorizationException">Thrown if the client is not authenticated.</exception>
|
||||
/// <returns>A <c>bool</c> representing the success of the operation</returns>
|
||||
public IObservable<bool> CheckStarred(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -355,7 +356,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository to star</param>
|
||||
/// <param name="name">The name of the repository to star</param>
|
||||
/// <returns>A <c>bool</c> representing the success of starring</returns>
|
||||
public IObservable<bool> StarRepo(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
@@ -369,7 +369,6 @@ namespace Octokit.Reactive
|
||||
/// </summary>
|
||||
/// <param name="owner">The owner of the repository to unstar</param>
|
||||
/// <param name="name">The name of the repository to unstar</param>
|
||||
/// <returns>A <c>bool</c> representing the success of the operation</returns>
|
||||
public IObservable<bool> RemoveStarFromRepo(string owner, string name)
|
||||
{
|
||||
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
|
||||
|
||||
Reference in New Issue
Block a user