141 lines
6.2 KiB
C#
141 lines
6.2 KiB
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bootstrap.Admin.Controllers.Api
|
|
{
|
|
/// <summary>
|
|
/// Gitee 网站信息接口类
|
|
/// </summary>
|
|
[Route("api/[controller]/[action]")]
|
|
[ApiController]
|
|
[AllowAnonymous]
|
|
public class GiteeController : ControllerBase
|
|
{
|
|
/// <summary>
|
|
/// 获取 Gitee 网站 Issues 信息
|
|
/// </summary>
|
|
/// <param name="client"></param>
|
|
/// <param name="userName"></param>
|
|
/// <param name="repoName"></param>
|
|
/// <param name="label"></param>
|
|
/// <param name="color"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public async Task<ActionResult> Issues([FromServices]GiteeHttpClient client, [FromQuery]string userName = "LongbowEnterprise", [FromQuery]string repoName = "BootstrapAdmin", [FromQuery]string label = "custom badge", [FromQuery]string color = "orange")
|
|
{
|
|
var ret = await GetJsonAsync(() => client.HttpClient.GetStringAsync($"https://gitee.com/{userName}/{repoName}/issues"), content =>
|
|
{
|
|
var regex = Regex.Matches(content, "<div class='ui mini circular label'>([\\d]+)</div>", RegexOptions.IgnoreCase);
|
|
var labels = new string[] { "open", "progressing", "closed", "rejected" };
|
|
var result = string.IsNullOrEmpty(content) ? new string[] { "unknown" } : regex.Select((m, i) => $"{labels[i]} {m.Groups[1].Value}");
|
|
return string.Join(" ", result);
|
|
});
|
|
color = ret.StartsWith("open 0 progressing 0") ? "success" : color;
|
|
return new JsonResult(new { schemaVersion = 1, label, message = ret, color });
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取 Gitee 网站 Pulls 信息
|
|
/// </summary>
|
|
/// <param name="client"></param>
|
|
/// <param name="userName"></param>
|
|
/// <param name="repoName"></param>
|
|
/// <param name="label"></param>
|
|
/// <param name="color"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public async Task<ActionResult> Pulls([FromServices]GiteeHttpClient client, [FromQuery]string userName = "LongbowEnterprise", [FromQuery]string repoName = "BootstrapAdmin", [FromQuery]string label = "custom badge", [FromQuery]string color = "orange")
|
|
{
|
|
var ret = await GetJsonAsync(() => client.HttpClient.GetStringAsync($"https://gitee.com/{userName}/{repoName}/pulls"), content =>
|
|
{
|
|
var regex = Regex.Matches(content, "<div class='ui mini circular label'>([\\d]+)</div>", RegexOptions.IgnoreCase);
|
|
var labels = new string[] { "open", "merged", "closed" };
|
|
var result = string.IsNullOrEmpty(content) ? new string[] { "unknown" } : regex.Select((m, i) => $"{labels[i]} {m.Groups[1].Value}");
|
|
return string.Join(" ", result);
|
|
});
|
|
return new JsonResult(new { schemaVersion = 1, label, message = ret, color });
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取 Gitee 网站 Releases 信息
|
|
/// </summary>
|
|
/// <param name="client"></param>
|
|
/// <param name="userName"></param>
|
|
/// <param name="repoName"></param>
|
|
/// <param name="label"></param>
|
|
/// <param name="color"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public async Task<ActionResult> Releases([FromServices]GiteeHttpClient client, [FromQuery]string userName = "LongbowEnterprise", [FromQuery]string repoName = "BootstrapAdmin", [FromQuery]string label = "custom badge", [FromQuery]string color = "orange")
|
|
{
|
|
var ret = await GetJsonAsync(() => client.HttpClient.GetStringAsync($"https://gitee.com/{userName}/{repoName}/releases"), content =>
|
|
{
|
|
var regex = Regex.Match(content, $"<a href=\"/{userName}/{repoName}/releases/([^\\s]+)\" target=\"_blank\">", RegexOptions.IgnoreCase);
|
|
return string.IsNullOrEmpty(content) ? "unknown" : regex.Groups[1].Value;
|
|
});
|
|
return new JsonResult(new { schemaVersion = 1, label, message = ret, color });
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取 Gitee 网站 Builds 信息
|
|
/// </summary>
|
|
/// <param name="client"></param>
|
|
/// <param name="userName"></param>
|
|
/// <param name="projName"></param>
|
|
/// <param name="branchName"></param>
|
|
/// <param name="label"></param>
|
|
/// <param name="color"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public async Task<ActionResult> Builds([FromServices]GiteeHttpClient client, [FromQuery]string userName = "ArgoZhang", [FromQuery]string projName = "bootstrapadmin", [FromQuery]string branchName = "master", [FromQuery]string label = "custom badge", [FromQuery]string color = "orange")
|
|
{
|
|
var ret = await GetJsonAsync(() => client.HttpClient.GetAsJsonAsync<AppveyorBuildResult>($"https://ci.appveyor.com/api/projects/{userName}/{projName}/branch/{branchName}", null, new CancellationTokenSource(2000).Token), content =>
|
|
{
|
|
return content == null ? "unknown" : content.Build.Version;
|
|
});
|
|
return new JsonResult(new { schemaVersion = 1, label, message = ret, color });
|
|
}
|
|
|
|
private async static Task<string> GetJsonAsync<T>(Func<Task<T>> requestUrl, Func<T, string> callback)
|
|
{
|
|
var ret = "unresponsive";
|
|
try
|
|
{
|
|
var resq = await requestUrl();
|
|
ret = callback(resq);
|
|
}
|
|
catch (OperationCanceledException)
|
|
{
|
|
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
ex.Log();
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
private class AppveyorBuildResult
|
|
{
|
|
/// <summary>
|
|
/// Appveyor 编译版本实例
|
|
/// </summary>
|
|
public Build Build { get; set; }
|
|
}
|
|
|
|
private class Build
|
|
{
|
|
/// <summary>
|
|
/// Build 版本信息
|
|
/// </summary>
|
|
public string Version { get; set; }
|
|
}
|
|
}
|
|
}
|