mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
127 lines
4.6 KiB
C#
127 lines
4.6 KiB
C#
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's User Keys API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/users/keys/">User Keys API documentation</a> for more information.
|
|
/// </remarks>
|
|
public class UserKeysClient : ApiClient, IUserKeysClient
|
|
{
|
|
public UserKeysClient(IApiConnection apiConnection)
|
|
: base(apiConnection)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all verified public keys for a user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#list-public-keys-for-a-user
|
|
/// </remarks>
|
|
/// <param name="userName">The @ handle of the user.</param>
|
|
/// <returns>Lists the verified public keys for a user.</returns>
|
|
[ManualRoute("GET", "/users/{username}/keys")]
|
|
public Task<IReadOnlyList<PublicKey>> GetAll(string userName)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(userName, nameof(userName));
|
|
|
|
return GetAll(userName, ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all verified public keys for a user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#list-public-keys-for-a-user
|
|
/// </remarks>
|
|
/// <param name="userName">The @ handle of the user.</param>
|
|
/// <param name="options">Options to change API's behavior.</param>
|
|
/// <returns>Lists the verified public keys for a user.</returns>
|
|
[ManualRoute("GET", "/users/{username}/keys")]
|
|
public Task<IReadOnlyList<PublicKey>> GetAll(string userName, ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(userName, nameof(userName));
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<PublicKey>(ApiUrls.Keys(userName), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all public keys for the authenticated user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#list-your-public-keys
|
|
/// </remarks>
|
|
/// <returns>Lists the current user's keys.</returns>
|
|
[ManualRoute("GET", "/user/keys")]
|
|
public Task<IReadOnlyList<PublicKey>> GetAllForCurrent()
|
|
{
|
|
return GetAllForCurrent(ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all public keys for the authenticated user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#list-your-public-keys
|
|
/// </remarks>
|
|
/// <param name="options">Options to chagne API's behavior.</param>
|
|
/// <returns>Lists the current user's keys.</returns>
|
|
[ManualRoute("GET", "/user/keys")]
|
|
public Task<IReadOnlyList<PublicKey>> GetAllForCurrent(ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<PublicKey>(ApiUrls.Keys(), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves the <see cref="PublicKey"/> for the specified id.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#get-a-single-public-key
|
|
/// </remarks>
|
|
/// <param name="id">The Id of the SSH key</param>
|
|
/// <returns></returns>
|
|
[ManualRoute("GET", "/user/keys/{key_id}")]
|
|
public Task<PublicKey> Get(int id)
|
|
{
|
|
return ApiConnection.Get<PublicKey>(ApiUrls.Keys(id));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Create a public key <see cref="NewPublicKey"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#create-a-public-key
|
|
/// </remarks>
|
|
/// <param name="newKey">The SSH Key contents</param>
|
|
/// <returns></returns>
|
|
[ManualRoute("POST", "/user/keys")]
|
|
public Task<PublicKey> Create(NewPublicKey newKey)
|
|
{
|
|
Ensure.ArgumentNotNull(newKey, nameof(newKey));
|
|
|
|
return ApiConnection.Post<PublicKey>(ApiUrls.Keys(), newKey);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Delete a public key.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// https://developer.github.com/v3/users/keys/#delete-a-public-key
|
|
/// </remarks>
|
|
/// <param name="id">The id of the key to delete</param>
|
|
/// <returns></returns>
|
|
[ManualRoute("DELETE", "/user/keys/{key_id}")]
|
|
public Task Delete(int id)
|
|
{
|
|
return ApiConnection.Delete(ApiUrls.Keys(id));
|
|
}
|
|
}
|
|
}
|