mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
* Fixes ids for Releases, Collaborators, and Contributors * updates the interface for releases * update the obverable release client * updates ids from int to long based on GH database schema * converts a test condition to use the proper type * updates generated paging and observable classes
98 lines
4.1 KiB
C#
98 lines
4.1 KiB
C#
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's UserUser GPG Keys API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/">User GPG Keys documentation</a> for more information.
|
|
/// </remarks>
|
|
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Gpg")]
|
|
public class UserGpgKeysClient : ApiClient, IUserGpgKeysClient
|
|
{
|
|
/// <summary>
|
|
/// Instantiates a new GitHub User GPG Keys API client.
|
|
/// </summary>
|
|
/// <param name="apiConnection">The API connection.</param>
|
|
public UserGpgKeysClient(IApiConnection apiConnection) : base(apiConnection)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all GPG keys for the authenticated user.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#list-your-gpg-keys">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <returns>A <see cref="IReadOnlyList{GpgKey}"/> of <see cref="GpgKey"/>s for the current user.</returns>
|
|
[ManualRoute("GET", "/user/gpg_keys")]
|
|
public Task<IReadOnlyList<GpgKey>> GetAllForCurrent()
|
|
{
|
|
return GetAllForCurrent(ApiOptions.None);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all GPG keys for the authenticated user.
|
|
/// </summary>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#list-your-gpg-keys">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <returns>A <see cref="IReadOnlyList{GpgKey}"/> of <see cref="GpgKey"/>s for the current user.</returns>
|
|
[ManualRoute("GET", "/user/gpg_keys")]
|
|
public Task<IReadOnlyList<GpgKey>> GetAllForCurrent(ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, nameof(options));
|
|
|
|
return ApiConnection.GetAll<GpgKey>(ApiUrls.GpgKeys(), options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// View extended details of the <see cref="GpgKey"/> for the specified id.
|
|
/// </summary>
|
|
/// <param name="gpgKeyId">The Id of the GPG key</param>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#get-a-single-gpg-key">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <returns>The <see cref="GpgKey"/> for the specified Id.</returns>
|
|
[ManualRoute("GET", "/user/gpg_keys/{gpg_key_id}")]
|
|
public Task<GpgKey> Get(long gpgKeyId)
|
|
{
|
|
return ApiConnection.Get<GpgKey>(ApiUrls.GpgKeys(gpgKeyId));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates a new <see cref="GpgKey"/> for the authenticated user.
|
|
/// </summary>
|
|
/// <param name="newGpgKey">The new GPG key to add.</param>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#create-a-gpg-key">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <returns>The newly created <see cref="GpgKey"/>.</returns>
|
|
[ManualRoute("POST", "/user/gpg_keys")]
|
|
public Task<GpgKey> Create(NewGpgKey newGpgKey)
|
|
{
|
|
Ensure.ArgumentNotNull(newGpgKey, nameof(newGpgKey));
|
|
|
|
return ApiConnection.Post<GpgKey>(ApiUrls.GpgKeys(), newGpgKey);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Deletes the GPG key for the specified Id.
|
|
/// </summary>
|
|
/// <param name="gpgKeyId">The Id of the GPG key to delete.</param>
|
|
/// <remarks>
|
|
/// See the <a href="https://developer.github.com/v3/users/gpg_keys/#delete-a-gpg-key">API documentation</a> for more information.
|
|
/// </remarks>
|
|
/// <returns></returns>
|
|
[ManualRoute("DELETE", "/user/gpg_keys/{gpg_key_id}")]
|
|
public Task Delete(long gpgKeyId)
|
|
{
|
|
return ApiConnection.Delete(ApiUrls.GpgKeys(gpgKeyId));
|
|
}
|
|
}
|
|
}
|