mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-16 08:25:28 +00:00
138 lines
7.1 KiB
C#
138 lines
7.1 KiB
C#
// ----------------------------------------------------------------------------------------------
|
|
// _ _ _ ____ _ _____
|
|
// / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___
|
|
// / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \
|
|
// / ___ \ | | | (__ | | | || | ___) || |_| __/| (_| || | | | | || _|| (_| || | | | | | | |
|
|
// /_/ \_\|_| \___||_| |_||_||____/ \__|\___| \__,_||_| |_| |_||_| \__,_||_| |_| |_| |_|
|
|
// ----------------------------------------------------------------------------------------------
|
|
// |
|
|
// Copyright 2015-2024 Łukasz "JustArchi" Domeradzki
|
|
// Contact: JustArchi@JustArchi.net
|
|
// |
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
// |
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
// |
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Immutable;
|
|
using System.Net;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using ArchiSteamFarm.IPC.Responses;
|
|
using ArchiSteamFarm.Localization;
|
|
using ArchiSteamFarm.Web;
|
|
using ArchiSteamFarm.Web.GitHub;
|
|
using ArchiSteamFarm.Web.GitHub.Data;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace ArchiSteamFarm.IPC.Controllers.Api;
|
|
|
|
[Route("Api/WWW/GitHub")]
|
|
public sealed class GitHubController : ArchiController {
|
|
/// <summary>
|
|
/// Fetches the most recent GitHub release of ASF project.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is internal API being utilizied by our ASF-ui IPC frontend. You should not depend on existence of any /Api/WWW endpoints as they can disappear and change anytime.
|
|
/// </remarks>
|
|
[HttpGet("Release")]
|
|
[ProducesResponseType<GenericResponse<GitHubReleaseResponse>>((int) HttpStatusCode.OK)]
|
|
[ProducesResponseType<GenericResponse>((int) HttpStatusCode.ServiceUnavailable)]
|
|
public async Task<ActionResult<GenericResponse>> GitHubReleaseGet() {
|
|
CancellationToken cancellationToken = HttpContext.RequestAborted;
|
|
|
|
ReleaseResponse? releaseResponse = await GitHubService.GetLatestRelease(SharedInfo.GithubRepo, false, cancellationToken).ConfigureAwait(false);
|
|
|
|
return releaseResponse != null ? Ok(new GenericResponse<GitHubReleaseResponse>(new GitHubReleaseResponse(releaseResponse))) : StatusCode((int) HttpStatusCode.ServiceUnavailable, new GenericResponse(false, Strings.FormatErrorRequestFailedTooManyTimes(WebBrowser.MaxTries)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Fetches specific GitHub release of ASF project. Use "latest" for latest stable release.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is internal API being utilizied by our ASF-ui IPC frontend. You should not depend on existence of any /Api/WWW endpoints as they can disappear and change anytime.
|
|
/// </remarks>
|
|
[HttpGet("Release/{version:required}")]
|
|
[ProducesResponseType<GenericResponse<GitHubReleaseResponse>>((int) HttpStatusCode.OK)]
|
|
[ProducesResponseType<GenericResponse>((int) HttpStatusCode.BadRequest)]
|
|
[ProducesResponseType<GenericResponse>((int) HttpStatusCode.ServiceUnavailable)]
|
|
public async Task<ActionResult<GenericResponse>> GitHubReleaseGet(string version) {
|
|
ArgumentException.ThrowIfNullOrEmpty(version);
|
|
|
|
CancellationToken cancellationToken = HttpContext.RequestAborted;
|
|
|
|
ReleaseResponse? releaseResponse;
|
|
|
|
switch (version.ToUpperInvariant()) {
|
|
case "LATEST":
|
|
releaseResponse = await GitHubService.GetLatestRelease(SharedInfo.GithubRepo, cancellationToken: cancellationToken).ConfigureAwait(false);
|
|
|
|
break;
|
|
default:
|
|
if (!Version.TryParse(version, out Version? parsedVersion)) {
|
|
return BadRequest(new GenericResponse(false, Strings.FormatErrorIsInvalid(nameof(version))));
|
|
}
|
|
|
|
releaseResponse = await GitHubService.GetRelease(SharedInfo.GithubRepo, parsedVersion.ToString(4), cancellationToken).ConfigureAwait(false);
|
|
|
|
break;
|
|
}
|
|
|
|
return releaseResponse != null ? Ok(new GenericResponse<GitHubReleaseResponse>(new GitHubReleaseResponse(releaseResponse))) : StatusCode((int) HttpStatusCode.ServiceUnavailable, new GenericResponse(false, Strings.FormatErrorRequestFailedTooManyTimes(WebBrowser.MaxTries)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Fetches history of specific GitHub page from ASF project.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is internal API being utilizied by our ASF-ui IPC frontend. You should not depend on existence of any /Api/WWW endpoints as they can disappear and change anytime.
|
|
/// </remarks>
|
|
[HttpGet("Wiki/History/{page:required}")]
|
|
[ProducesResponseType<GenericResponse<string>>((int) HttpStatusCode.OK)]
|
|
[ProducesResponseType<GenericResponse>((int) HttpStatusCode.BadRequest)]
|
|
[ProducesResponseType<GenericResponse>((int) HttpStatusCode.ServiceUnavailable)]
|
|
public async Task<ActionResult<GenericResponse>> GitHubWikiHistoryGet(string page) {
|
|
ArgumentException.ThrowIfNullOrEmpty(page);
|
|
|
|
CancellationToken cancellationToken = HttpContext.RequestAborted;
|
|
|
|
Dictionary<string, DateTime>? revisions = await GitHubService.GetWikiHistory(page, cancellationToken).ConfigureAwait(false);
|
|
|
|
return revisions != null ? revisions.Count > 0 ? Ok(new GenericResponse<ImmutableDictionary<string, DateTime>>(revisions.ToImmutableDictionary())) : BadRequest(new GenericResponse(false, Strings.FormatErrorIsInvalid(nameof(page)))) : StatusCode((int) HttpStatusCode.ServiceUnavailable, new GenericResponse(false, Strings.FormatErrorRequestFailedTooManyTimes(WebBrowser.MaxTries)));
|
|
}
|
|
|
|
/// <summary>
|
|
/// Fetches specific GitHub page of ASF project.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This is internal API being utilizied by our ASF-ui IPC frontend. You should not depend on existence of any /Api/WWW endpoints as they can disappear and change anytime.
|
|
/// Specifying revision is optional - when not specified, will fetch latest available. If specified revision is invalid, GitHub will automatically fetch the latest revision as well.
|
|
/// </remarks>
|
|
[HttpGet("Wiki/Page/{page:required}")]
|
|
[ProducesResponseType<GenericResponse<string>>((int) HttpStatusCode.OK)]
|
|
[ProducesResponseType<GenericResponse>((int) HttpStatusCode.BadRequest)]
|
|
[ProducesResponseType<GenericResponse>((int) HttpStatusCode.ServiceUnavailable)]
|
|
public async Task<ActionResult<GenericResponse>> GitHubWikiPageGet(string page, [FromQuery] string? revision = null) {
|
|
ArgumentException.ThrowIfNullOrEmpty(page);
|
|
|
|
CancellationToken cancellationToken = HttpContext.RequestAborted;
|
|
|
|
string? html = await GitHubService.GetWikiPage(page, revision, cancellationToken).ConfigureAwait(false);
|
|
|
|
return html switch {
|
|
null => StatusCode((int) HttpStatusCode.ServiceUnavailable, new GenericResponse(false, Strings.FormatErrorRequestFailedTooManyTimes(WebBrowser.MaxTries))),
|
|
"" => BadRequest(new GenericResponse(false, Strings.FormatErrorIsInvalid(nameof(page)))),
|
|
_ => Ok(new GenericResponse<string>(html))
|
|
};
|
|
}
|
|
}
|