mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
167 lines
7.8 KiB
C#
167 lines
7.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's miscellaneous APIs.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the <a href="http://developer.github.com/v3/misc/">Miscellaneous API documentation</a> for more details.
|
|
/// </remarks>
|
|
[Obsolete("Use individual clients available on the GitHubClient for these methods")]
|
|
public class MiscellaneousClient : ApiClient, IMiscellaneousClient
|
|
{
|
|
private readonly IEmojisClient _emojisClient;
|
|
private readonly IMarkdownClient _markdownClient;
|
|
private readonly IGitIgnoreClient _gitIgnoreClient;
|
|
private readonly ILicensesClient _licensesClient;
|
|
private readonly IRateLimitClient _rateLimitClient;
|
|
private readonly IMetaClient _metaClient;
|
|
|
|
/// <summary>
|
|
/// Initializes a new GitHub miscellaneous API client.
|
|
/// </summary>
|
|
/// <param name="apiConnection">An API connection.</param>
|
|
public MiscellaneousClient(IApiConnection apiConnection)
|
|
: base(apiConnection)
|
|
{
|
|
_emojisClient = new EmojisClient(apiConnection);
|
|
_markdownClient = new MarkdownClient(apiConnection);
|
|
_gitIgnoreClient = new GitIgnoreClient(apiConnection);
|
|
_licensesClient = new LicensesClient(apiConnection);
|
|
_rateLimitClient = new RateLimitClient(apiConnection);
|
|
_metaClient = new MetaClient(apiConnection);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets all the emojis available to use on GitHub.
|
|
/// </summary>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
/// <returns>An <see cref="IReadOnlyList{Emoji}"/> of emoji and their URI.</returns>
|
|
[ManualRoute("GET", "/emojis")]
|
|
public async Task<IReadOnlyList<Emoji>> GetAllEmojis()
|
|
{
|
|
var result = await ApiConnection.Get<IDictionary<string, string>>(ApiUrls.Emojis());
|
|
|
|
return result.Select(x => new Emoji(x.Key, x.Value)).ToList();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the rendered Markdown for the specified plain-text Markdown document.
|
|
/// </summary>
|
|
/// <param name="markdown">A plain-text Markdown document</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
/// <returns>The rendered Markdown.</returns>
|
|
[ManualRoute("POST", "/markdown/raw")]
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use MarkdownClient.RenderRawMarkdown instead.")]
|
|
public Task<string> RenderRawMarkdown(string markdown)
|
|
{
|
|
return _markdownClient.RenderRawMarkdown(markdown);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the rendered Markdown for an arbitrary markdown document.
|
|
/// </summary>
|
|
/// <param name="markdown">An arbitrary Markdown document</param>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
/// <returns>The rendered Markdown.</returns>
|
|
[ManualRoute("POST", "/markdown")]
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use MarkdownClient.RenderArbitraryMarkdown instead.")]
|
|
public Task<string> RenderArbitraryMarkdown(NewArbitraryMarkdown markdown)
|
|
{
|
|
return _markdownClient.RenderArbitraryMarkdown(markdown);
|
|
}
|
|
|
|
/// <summary>
|
|
/// List all templates available to pass as an option when creating a repository.
|
|
/// </summary>
|
|
/// <returns>A list of template names</returns>
|
|
[ManualRoute("GET", "/gitignore/templates")]
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use GitIgnoreClient.GetAllGitIgnoreTemplates instead.")]
|
|
public Task<IReadOnlyList<string>> GetAllGitIgnoreTemplates()
|
|
{
|
|
return _gitIgnoreClient.GetAllGitIgnoreTemplates();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves the source for a single GitIgnore template
|
|
/// </summary>
|
|
/// <param name="templateName"></param>
|
|
/// <returns>A template and its source</returns>
|
|
[ManualRoute("GET", "/gitignore/templates/{name}")]
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use GitIgnoreClient.GetGitIgnoreTemplate instead.")]
|
|
public Task<GitIgnoreTemplate> GetGitIgnoreTemplate(string templateName)
|
|
{
|
|
Ensure.ArgumentNotNullOrEmptyString(templateName, nameof(templateName));
|
|
|
|
return _gitIgnoreClient.GetGitIgnoreTemplate(templateName);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a list of the licenses shown in the license picker on GitHub.com. This is not a comprehensive
|
|
/// list of all possible OSS licenses.
|
|
/// </summary>
|
|
/// <returns>A list of licenses available on the site</returns>
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use LicensesClient.GetAllLicenses instead.")]
|
|
[ManualRoute("GET", "/licenses")]
|
|
public Task<IReadOnlyList<LicenseMetadata>> GetAllLicenses()
|
|
{
|
|
return _licensesClient.GetAllLicenses();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Returns a list of the licenses shown in the license picker on GitHub.com. This is not a comprehensive
|
|
/// list of all possible OSS licenses.
|
|
/// </summary>
|
|
/// <param name="options">Options for changing the API response</param>
|
|
/// <returns>A list of licenses available on the site</returns>
|
|
[ManualRoute("GET", "/licenses")]
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use LicensesClient.GetAllLicenses instead.")]
|
|
public Task<IReadOnlyList<LicenseMetadata>> GetAllLicenses(ApiOptions options)
|
|
{
|
|
Ensure.ArgumentNotNull(options, "options");
|
|
|
|
return _licensesClient.GetAllLicenses(options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves a license based on the license key such as "mit"
|
|
/// </summary>
|
|
/// <param name="key"></param>
|
|
/// <returns>A <see cref="License" /> that includes the license key, text, and attributes of the license.</returns>
|
|
[ManualRoute("GET", "/licenses/{key}")]
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use LicensesClient.GetLicense instead.")]
|
|
public Task<License> GetLicense(string key)
|
|
{
|
|
return _licensesClient.GetLicense(key);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets API Rate Limits (API service rather than header info).
|
|
/// </summary>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
/// <returns>An <see cref="MiscellaneousRateLimit"/> of Rate Limits.</returns>
|
|
[ManualRoute("GET", "/rate_limit")]
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use RateLimitClient.GetRateLimits instead.")]
|
|
public Task<MiscellaneousRateLimit> GetRateLimits()
|
|
{
|
|
return _rateLimitClient.GetRateLimits();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieves information about GitHub.com, the service or a GitHub Enterprise installation.
|
|
/// </summary>
|
|
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
|
/// <returns>An <see cref="Meta"/> containing metadata about the GitHub instance.</returns>
|
|
[ManualRoute("GET", "/meta")]
|
|
[Obsolete("This client is being deprecated and will be removed in the future. Use MetaClient.GetMetadata instead.")]
|
|
public Task<Meta> GetMetadata()
|
|
{
|
|
return _metaClient.GetMetadata();
|
|
}
|
|
}
|
|
} |