mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-11-02 00:23:59 +08:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
48cd5e7c7f | ||
|
|
3b44fda51c | ||
|
|
dbfc9a5bb4 | ||
|
|
1b758aa41a | ||
|
|
43bdc70899 | ||
|
|
fadda000a6 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -365,4 +365,5 @@ FodyWeavers.xsd
|
||||
/src/*Pro*/
|
||||
/src/*Pro*
|
||||
/src/*pro*
|
||||
/src/*pro*/
|
||||
/src/*pro*/
|
||||
/src/ThingsGateway.Server/Configuration/GiteeOAuthSettings.json
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using Microsoft.AspNetCore.Authentication;
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
@@ -29,9 +30,23 @@ public class AuthController : ControllerBase
|
||||
[AllowAnonymous]
|
||||
public Task<LoginOutput> LoginAsync([FromBody] LoginInput input)
|
||||
{
|
||||
|
||||
return _authService.LoginAsync(input);
|
||||
|
||||
}
|
||||
|
||||
[HttpGet("oauth-login")]
|
||||
[AllowAnonymous]
|
||||
public IActionResult OAuthLogin(string scheme = "Gitee", string returnUrl = "/")
|
||||
{
|
||||
var props = new AuthenticationProperties
|
||||
{
|
||||
RedirectUri = returnUrl
|
||||
};
|
||||
return Challenge(props, scheme);
|
||||
}
|
||||
|
||||
|
||||
[HttpPost("logout")]
|
||||
[Authorize]
|
||||
[IgnoreRolePermission]
|
||||
|
||||
@@ -0,0 +1,212 @@
|
||||
using Microsoft.AspNetCore.Authentication;
|
||||
using Microsoft.AspNetCore.Authentication.OAuth;
|
||||
using Microsoft.AspNetCore.WebUtilities;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
using System.Net.Http.Headers;
|
||||
using System.Security.Claims;
|
||||
using System.Text;
|
||||
using System.Text.Encodings.Web;
|
||||
using System.Text.Json;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
/// <summary>
|
||||
/// 只适合 Demo 登录,会直接授权超管的权限
|
||||
/// </summary>
|
||||
public class AdminOAuthHandler<TOptions>(
|
||||
IVerificatInfoService verificatInfoService,
|
||||
IAppService appService,
|
||||
ISysUserService sysUserService,
|
||||
ISysDictService configService,
|
||||
IOptionsMonitor<TOptions> options,
|
||||
ILoggerFactory logger,
|
||||
UrlEncoder encoder
|
||||
) : OAuthHandler<TOptions>(options, logger, encoder)
|
||||
where TOptions : AdminOAuthOptions, new()
|
||||
{
|
||||
private async Task<LoginEvent> GetLogin()
|
||||
{
|
||||
var sysUser = await sysUserService.GetUserByIdAsync(RoleConst.SuperAdminId).ConfigureAwait(false);//获取用户信息
|
||||
|
||||
var appConfig = await configService.GetAppConfigAsync().ConfigureAwait(false);
|
||||
|
||||
|
||||
var expire = appConfig.LoginPolicy.VerificatExpireTime;
|
||||
|
||||
var loginEvent = new LoginEvent
|
||||
{
|
||||
Ip = appService.RemoteIpAddress,
|
||||
Device = appService.UserAgent?.Platform,
|
||||
Expire = expire,
|
||||
SysUser = sysUser,
|
||||
VerificatId = CommonUtils.GetSingleId()
|
||||
};
|
||||
|
||||
//获取verificat列表
|
||||
var tokenTimeout = loginEvent.DateTime.AddMinutes(loginEvent.Expire);
|
||||
//生成verificat信息
|
||||
var verificatInfo = new VerificatInfo
|
||||
{
|
||||
Device = loginEvent.Device,
|
||||
Expire = loginEvent.Expire,
|
||||
VerificatTimeout = tokenTimeout,
|
||||
Id = loginEvent.VerificatId,
|
||||
UserId = loginEvent.SysUser.Id,
|
||||
LoginIp = loginEvent.Ip,
|
||||
LoginTime = loginEvent.DateTime
|
||||
};
|
||||
|
||||
|
||||
//添加到verificat列表
|
||||
verificatInfoService.Add(verificatInfo);
|
||||
|
||||
return loginEvent;
|
||||
}
|
||||
/// <summary>
|
||||
/// 登录事件
|
||||
/// </summary>
|
||||
/// <param name="loginEvent"></param>
|
||||
/// <returns></returns>
|
||||
private async Task UpdateUser(LoginEvent loginEvent)
|
||||
{
|
||||
var sysUser = loginEvent.SysUser;
|
||||
|
||||
#region 登录/密码策略
|
||||
|
||||
var key = CacheConst.Cache_LoginErrorCount + sysUser.Account;//获取登录错误次数Key值
|
||||
App.CacheService.Remove(key);//移除登录错误次数
|
||||
|
||||
//获取用户verificat列表
|
||||
var userToken = verificatInfoService.GetOne(loginEvent.VerificatId);
|
||||
|
||||
#endregion 登录/密码策略
|
||||
|
||||
#region 重新赋值属性,设置本次登录信息为最新的信息
|
||||
|
||||
sysUser.LastLoginIp = sysUser.LatestLoginIp;
|
||||
sysUser.LastLoginTime = sysUser.LatestLoginTime;
|
||||
sysUser.LatestLoginIp = loginEvent.Ip;
|
||||
sysUser.LatestLoginTime = loginEvent.DateTime;
|
||||
|
||||
#endregion 重新赋值属性,设置本次登录信息为最新的信息
|
||||
|
||||
using var db = DbContext.Db.GetConnectionScopeWithAttr<SysUser>().CopyNew();
|
||||
//更新用户登录信息
|
||||
if (await db.Updateable(sysUser).UpdateColumns(it => new
|
||||
{
|
||||
it.LastLoginIp,
|
||||
it.LastLoginTime,
|
||||
it.LatestLoginIp,
|
||||
it.LatestLoginTime,
|
||||
}).ExecuteCommandAsync().ConfigureAwait(false) > 0)
|
||||
App.CacheService.HashAdd(CacheConst.Cache_SysUser, sysUser.Id.ToString(), sysUser);//更新Cache信息
|
||||
}
|
||||
|
||||
protected override async Task<AuthenticationTicket> CreateTicketAsync(
|
||||
ClaimsIdentity identity,
|
||||
AuthenticationProperties properties,
|
||||
OAuthTokenResponse tokens)
|
||||
{
|
||||
properties.RedirectUri = Options.HomePath;
|
||||
properties.IsPersistent = true;
|
||||
|
||||
if (!string.IsNullOrEmpty(tokens.ExpiresIn) && int.TryParse(tokens.ExpiresIn, out var result))
|
||||
{
|
||||
properties.ExpiresUtc = TimeProvider.System.GetUtcNow().AddSeconds(result);
|
||||
}
|
||||
var user = await HandleUserInfoAsync(tokens).ConfigureAwait(false);
|
||||
|
||||
var sysUser = await GetLogin().ConfigureAwait(false);
|
||||
await UpdateUser(sysUser).ConfigureAwait(false);
|
||||
identity.AddClaim(new Claim(ClaimConst.VerificatId, sysUser.VerificatId.ToString()));
|
||||
identity.AddClaim(new Claim(ClaimConst.UserId, RoleConst.SuperAdminId.ToString()));
|
||||
|
||||
identity.AddClaim(new Claim(ClaimConst.SuperAdmin, "true"));
|
||||
identity.AddClaim(new Claim(ClaimConst.OrgId, RoleConst.DefaultTenantId.ToString()));
|
||||
identity.AddClaim(new Claim(ClaimConst.TenantId, RoleConst.DefaultTenantId.ToString()));
|
||||
|
||||
|
||||
var context = new OAuthCreatingTicketContext(
|
||||
new ClaimsPrincipal(identity),
|
||||
properties,
|
||||
Context,
|
||||
Scheme,
|
||||
Options,
|
||||
Backchannel,
|
||||
tokens,
|
||||
user
|
||||
);
|
||||
|
||||
context.RunClaimActions();
|
||||
await Events.CreatingTicket(context).ConfigureAwait(false);
|
||||
|
||||
return new AuthenticationTicket(context.Principal, context.Properties, Scheme.Name);
|
||||
}
|
||||
|
||||
/// <summary>刷新 Token 方法</summary>
|
||||
protected virtual async Task<OAuthTokenResponse> RefreshTokenAsync(OAuthTokenResponse oAuthToken)
|
||||
{
|
||||
var query = new Dictionary<string, string>
|
||||
{
|
||||
{ "refresh_token", oAuthToken.RefreshToken },
|
||||
{ "grant_type", "refresh_token" }
|
||||
};
|
||||
|
||||
var request = new HttpRequestMessage(HttpMethod.Post, QueryHelpers.AddQueryString(Options.TokenEndpoint, query));
|
||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||
|
||||
var response = await Backchannel.SendAsync(request, Context.RequestAborted).ConfigureAwait(false);
|
||||
|
||||
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||
|
||||
if (response.IsSuccessStatusCode)
|
||||
{
|
||||
return OAuthTokenResponse.Success(JsonDocument.Parse(content));
|
||||
}
|
||||
|
||||
return OAuthTokenResponse.Failed(new OAuthTokenException($"OAuth token endpoint failure: {await Display(response).ConfigureAwait(false)}"));
|
||||
}
|
||||
|
||||
/// <summary>处理用户信息方法</summary>
|
||||
protected virtual async Task<JsonElement> HandleUserInfoAsync(OAuthTokenResponse tokens)
|
||||
{
|
||||
var request = new HttpRequestMessage(HttpMethod.Get, BuildUserInfoUrl(tokens));
|
||||
request.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||
|
||||
var response = await Backchannel.SendAsync(request, Context.RequestAborted).ConfigureAwait(false);
|
||||
|
||||
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||
|
||||
if (response.IsSuccessStatusCode)
|
||||
{
|
||||
return JsonDocument.Parse(content).RootElement;
|
||||
}
|
||||
|
||||
throw new OAuthTokenException($"OAuth user info endpoint failure: {await Display(response).ConfigureAwait(false)}");
|
||||
}
|
||||
|
||||
/// <summary>生成用户信息请求地址方法</summary>
|
||||
protected virtual string BuildUserInfoUrl(OAuthTokenResponse tokens)
|
||||
{
|
||||
return QueryHelpers.AddQueryString(Options.UserInformationEndpoint, new Dictionary<string, string>
|
||||
{
|
||||
{ "access_token", tokens.AccessToken }
|
||||
});
|
||||
}
|
||||
|
||||
/// <summary>生成错误信息方法</summary>
|
||||
protected static async Task<string> Display(HttpResponseMessage response)
|
||||
{
|
||||
var output = new StringBuilder();
|
||||
output.Append($"Status: {response.StatusCode}; ");
|
||||
output.Append($"Headers: {response.Headers}; ");
|
||||
output.Append($"Body: {await response.Content.ReadAsStringAsync().ConfigureAwait(false)};");
|
||||
|
||||
return output.ToString();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>自定义 Token 异常</summary>
|
||||
public class OAuthTokenException(string message) : Exception(message);
|
||||
@@ -0,0 +1,33 @@
|
||||
using Microsoft.AspNetCore.Authentication.OAuth;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
/// <summary>OAuthOptions 配置类</summary>
|
||||
public abstract class AdminOAuthOptions : OAuthOptions
|
||||
{
|
||||
/// <summary>默认构造函数</summary>
|
||||
protected AdminOAuthOptions()
|
||||
{
|
||||
ConfigureClaims();
|
||||
|
||||
this.Events.OnRemoteFailure = context =>
|
||||
{
|
||||
var redirectUri = string.IsNullOrEmpty(HomePath) ? "/" : HomePath;
|
||||
context.Response.Redirect(redirectUri);
|
||||
context.HandleResponse();
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
|
||||
|
||||
}
|
||||
|
||||
/// <summary>配置 Claims 映射</summary>
|
||||
protected virtual void ConfigureClaims()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
/// <summary>获得/设置 登陆后首页</summary>
|
||||
public string HomePath { get; set; } = "/";
|
||||
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
using Microsoft.AspNetCore.Authentication;
|
||||
using Microsoft.AspNetCore.Authentication.OAuth;
|
||||
using Microsoft.AspNetCore.WebUtilities;
|
||||
|
||||
using System.Net.Http.Headers;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class GiteeOAuthOptions : AdminOAuthOptions
|
||||
{
|
||||
public GiteeOAuthOptions() : base()
|
||||
{
|
||||
this.SignInScheme = ClaimConst.Scheme;
|
||||
this.AuthorizationEndpoint = "https://gitee.com/oauth/authorize";
|
||||
this.TokenEndpoint = "https://gitee.com/oauth/token";
|
||||
this.UserInformationEndpoint = "https://gitee.com/api/v5/user";
|
||||
this.HomePath = "/";
|
||||
this.CallbackPath = "/signin-gitee";
|
||||
|
||||
Events.OnCreatingTicket = async context =>
|
||||
{
|
||||
await HandlerGiteeStarredUrl(context).ConfigureAwait(false);
|
||||
};
|
||||
|
||||
Events.OnRedirectToAuthorizationEndpoint = context =>
|
||||
{
|
||||
//context.RedirectUri = context.RedirectUri.Replace("http%3A%2F%2F", "https%3A%2F%2F"); // 强制替换
|
||||
context.Response.Redirect(context.RedirectUri);
|
||||
return Task.CompletedTask;
|
||||
};
|
||||
}
|
||||
private static async Task HandlerGiteeStarredUrl(OAuthCreatingTicketContext context, string repoFullName = "ThingsGateway/ThingsGateway")
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(context.AccessToken))
|
||||
throw new InvalidOperationException("Access token is missing.");
|
||||
|
||||
var uri = $"https://gitee.com/api/v5/user/starred/{repoFullName}";
|
||||
|
||||
var queryString = new Dictionary<string, string>
|
||||
{
|
||||
{ "access_token", context.AccessToken }
|
||||
};
|
||||
|
||||
var request = new HttpRequestMessage(HttpMethod.Put, QueryHelpers.AddQueryString(uri, queryString))
|
||||
{
|
||||
Headers = { Accept = { new MediaTypeWithQualityHeaderValue("application/json") } }
|
||||
};
|
||||
|
||||
var response = await context.Backchannel.SendAsync(request, context.HttpContext.RequestAborted).ConfigureAwait(false);
|
||||
|
||||
if (!response.IsSuccessStatusCode)
|
||||
{
|
||||
var content = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||
throw new Exception($"Failed to star repository: {response.StatusCode}, {content}");
|
||||
}
|
||||
}
|
||||
protected override void ConfigureClaims()
|
||||
{
|
||||
ClaimActions.MapJsonKey(ClaimConst.AvatarUrl, "avatar_url");
|
||||
ClaimActions.MapJsonKey(ClaimConst.Account, "name");
|
||||
|
||||
base.ConfigureClaims();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class GiteeOAuthSettings
|
||||
{
|
||||
public string ClientId { get; set; }
|
||||
public string ClientSecret { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class GiteeOAuthUser
|
||||
{
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Login { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public string Avatar_Url { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using System.Text.Json;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public static class OAuthUserExtensions
|
||||
{
|
||||
public static GiteeOAuthUser ToAuthUser(this JsonElement element)
|
||||
{
|
||||
GiteeOAuthUser authUser = new GiteeOAuthUser();
|
||||
JsonElement.ObjectEnumerator target = element.EnumerateObject();
|
||||
authUser.Id = target.TryGetValue("id");
|
||||
authUser.Login = target.TryGetValue("login");
|
||||
authUser.Name = target.TryGetValue("name");
|
||||
authUser.Avatar_Url = target.TryGetValue("avatar_url");
|
||||
return authUser;
|
||||
}
|
||||
|
||||
public static string TryGetValue(this JsonElement.ObjectEnumerator target, string propertyName)
|
||||
{
|
||||
return target.FirstOrDefault<JsonProperty>((Func<JsonProperty, bool>)(t => t.Name.Equals(propertyName, StringComparison.OrdinalIgnoreCase))).Value.ToString() ?? string.Empty;
|
||||
}
|
||||
}
|
||||
@@ -20,9 +20,11 @@ namespace ThingsGateway.Admin.Application;
|
||||
public class AppService : IAppService
|
||||
{
|
||||
private readonly IUserAgentService UserAgentService;
|
||||
public AppService(IUserAgentService userAgentService)
|
||||
private readonly IClaimsPrincipalService ClaimsPrincipalService;
|
||||
public AppService(IUserAgentService userAgentService, IClaimsPrincipalService claimsPrincipalService)
|
||||
{
|
||||
UserAgentService = userAgentService;
|
||||
ClaimsPrincipalService = claimsPrincipalService;
|
||||
}
|
||||
public string GetReturnUrl(string returnUrl)
|
||||
{
|
||||
@@ -70,7 +72,7 @@ public class AppService : IAppService
|
||||
ExpiresUtc = diffTime,
|
||||
}).ConfigureAwait(false);
|
||||
}
|
||||
public ClaimsPrincipal? User => App.User;
|
||||
public ClaimsPrincipal? User => ClaimsPrincipalService.User;
|
||||
|
||||
public string? RemoteIpAddress => App.HttpContext?.GetRemoteIpAddressToIPv4();
|
||||
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||||
// 此代码版权(除特别声明外的代码)归作者本人Diego所有
|
||||
// 源代码使用协议遵循本仓库的开源协议及附加协议
|
||||
// Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway
|
||||
// Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway
|
||||
// 使用文档:https://thingsgateway.cn/
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System.Security.Claims;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class HybridClaimsPrincipalService : IClaimsPrincipalService
|
||||
{
|
||||
HybridAppService _hybridAppService;
|
||||
public HybridClaimsPrincipalService(HybridAppService hybridAppService)
|
||||
{
|
||||
_hybridAppService = hybridAppService;
|
||||
}
|
||||
public ClaimsPrincipal? User => _hybridAppService.User;
|
||||
|
||||
}
|
||||
@@ -12,8 +12,6 @@ using Microsoft.AspNetCore.Authentication.Cookies;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.Extensions.Localization;
|
||||
|
||||
using SqlSugar;
|
||||
|
||||
using System.Security.Claims;
|
||||
|
||||
using ThingsGateway.DataEncryption;
|
||||
@@ -64,6 +62,10 @@ public class AuthService : IAuthService
|
||||
{
|
||||
throw Oops.Bah(appConfig.WebsitePolicy.CloseTip);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
string? password = input.Password;
|
||||
if (isCookie) //openApi登录不再需要解密
|
||||
{
|
||||
@@ -237,25 +239,20 @@ public class AuthService : IAuthService
|
||||
var logingEvent = new LoginEvent
|
||||
{
|
||||
Ip = _appService.RemoteIpAddress,
|
||||
Device = App.GetService<IAppService>().UserAgent?.Platform,
|
||||
Device = _appService.UserAgent?.Platform,
|
||||
Expire = expire,
|
||||
SysUser = sysUser,
|
||||
VerificatId = verificatId
|
||||
};
|
||||
await WriteTokenToCache(loginPolicy, logingEvent).ConfigureAwait(false);//写入verificat到cache
|
||||
await UpdateUser(logingEvent).ConfigureAwait(false);
|
||||
if (sysUser.Account == RoleConst.SuperAdmin)
|
||||
{
|
||||
var modules = (await _sysResourceService.GetAllAsync().ConfigureAwait(false)).Where(a => a.Category == ResourceCategoryEnum.Module).OrderBy(a => a.SortCode);//获取模块列表
|
||||
sysUser.ModuleList = modules.ToList();//模块列表赋值给用户
|
||||
}
|
||||
|
||||
//返回结果
|
||||
return new LoginOutput
|
||||
{
|
||||
VerificatId = verificatId,
|
||||
Account = sysUser.Account,
|
||||
Id = sysUser.Id,
|
||||
ModuleList = sysUser.ModuleList,
|
||||
AccessToken = accessToken,
|
||||
RefreshToken = refreshToken
|
||||
};
|
||||
|
||||
@@ -466,7 +466,7 @@ internal sealed class SysUserService : BaseService<SysUser>, ISysUserService
|
||||
var exist = await GetUserByIdAsync(input.Id).ConfigureAwait(false);//获取用户信息
|
||||
if (exist != null)
|
||||
{
|
||||
var isSuperAdmin = exist.Account == RoleConst.SuperAdmin;//判断是否有超管
|
||||
var isSuperAdmin = exist.Id == RoleConst.SuperAdminId;//判断是否有超管
|
||||
if (isSuperAdmin && !UserManager.SuperAdmin)
|
||||
throw Oops.Bah(Localizer["CanotEditAdminUser"]);
|
||||
|
||||
@@ -540,7 +540,7 @@ internal sealed class SysUserService : BaseService<SysUser>, ISysUserService
|
||||
await CheckApiDataScopeAsync(sysUser.OrgId, sysUser.CreateUserId).ConfigureAwait(false);
|
||||
if (sysUser != null)
|
||||
{
|
||||
var isSuperAdmin = (sysUser.Account == RoleConst.SuperAdmin || input.GrantInfoList.Any(a => a == RoleConst.SuperAdminRoleId)) && !UserManager.SuperAdmin;//判断是否有超管
|
||||
var isSuperAdmin = (sysUser.Id == RoleConst.SuperAdminId || input.GrantInfoList.Any(a => a == RoleConst.SuperAdminRoleId)) && !UserManager.SuperAdmin;//判断是否有超管
|
||||
if (isSuperAdmin)
|
||||
throw Oops.Bah(Localizer["CanotGrantAdmin"]);
|
||||
|
||||
@@ -660,7 +660,7 @@ internal sealed class SysUserService : BaseService<SysUser>, ISysUserService
|
||||
public async Task<bool> DeleteUserAsync(IEnumerable<long> ids)
|
||||
{
|
||||
using var db = GetDB();
|
||||
var containsSuperAdmin = await db.Queryable<SysUser>().Where(it => it.Account == RoleConst.SuperAdmin && ids.Contains(it.Id)).AnyAsync().ConfigureAwait(false);//判断是否有超管
|
||||
var containsSuperAdmin = await db.Queryable<SysUser>().Where(it => it.Id == RoleConst.SuperAdminId && ids.Contains(it.Id)).AnyAsync().ConfigureAwait(false);//判断是否有超管
|
||||
if (containsSuperAdmin)
|
||||
throw Oops.Bah(Localizer["CanotDeleteAdminUser"]);
|
||||
if (ids.Contains(UserManager.UserId))
|
||||
@@ -899,7 +899,7 @@ internal sealed class SysUserService : BaseService<SysUser>, ISysUserService
|
||||
var tenantId = await _sysOrgService.GetTenantIdByOrgIdAsync(sysUser.OrgId, sysOrgList).ConfigureAwait(false);
|
||||
sysUser.TenantId = tenantId;
|
||||
|
||||
if (sysUser.Account == RoleConst.SuperAdmin)
|
||||
if (sysUser.Id == RoleConst.SuperAdminId)
|
||||
{
|
||||
var modules = (await _sysResourceService.GetAllAsync().ConfigureAwait(false)).Where(a => a.Category == ResourceCategoryEnum.Module).OrderBy(a => a.SortCode);
|
||||
sysUser.ModuleList = modules.ToList();//模块列表赋值给用户
|
||||
|
||||
@@ -13,8 +13,6 @@ using BootstrapBlazor.Components;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
using SqlSugar;
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
using ThingsGateway.UnifyResult;
|
||||
@@ -28,19 +26,12 @@ public class Startup : AppStartup
|
||||
{
|
||||
Directory.CreateDirectory("DB");
|
||||
|
||||
services.AddConfigurableOptions<SqlSugarOptions>();
|
||||
services.AddConfigurableOptions<AdminLogOptions>();
|
||||
services.AddConfigurableOptions<TenantOptions>();
|
||||
|
||||
services.AddSingleton(typeof(IDataService<>), typeof(BaseService<>));
|
||||
services.AddSingleton<ISugarAopService, SugarAopService>();
|
||||
services.AddSingleton<ISugarConfigAopService, SugarConfigAopService>();
|
||||
|
||||
services.AddSingleton<IUserAgentService, UserAgentService>();
|
||||
services.AddSingleton<IAppService, AppService>();
|
||||
|
||||
StaticConfig.EnableAllWhereIF = true;
|
||||
|
||||
services.AddConfigurableOptions<EmailOptions>();
|
||||
services.AddConfigurableOptions<HardwareInfoOptions>();
|
||||
|
||||
@@ -57,7 +48,6 @@ public class Startup : AppStartup
|
||||
|
||||
services.AddSingleton<IVerificatInfoService, VerificatInfoService>();
|
||||
services.AddSingleton<IUserCenterService, UserCenterService>();
|
||||
services.AddSingleton<ISugarAopService, SugarAopService>();
|
||||
services.AddSingleton<ISysDictService, SysDictService>();
|
||||
services.AddSingleton<ISysOperateLogService, SysOperateLogService>();
|
||||
services.AddSingleton<IRelationService, RelationService>();
|
||||
|
||||
@@ -18,9 +18,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="BootstrapBlazor.TableExport" Version="9.2.5" />
|
||||
<PackageReference Include="Rougamo.Fody" Version="5.0.0" />
|
||||
<PackageReference Include="SqlSugarCore" Version="5.1.4.193" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net8.0' ">
|
||||
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.1" />
|
||||
@@ -49,6 +47,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ThingsGateway.Razor\ThingsGateway.Razor.csproj" />
|
||||
<ProjectReference Include="..\ThingsGateway.SqlSugar\ThingsGateway.SqlSugar.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
@@ -40,6 +40,8 @@ public class BlazorAppContext
|
||||
/// </summary>
|
||||
public SysUser CurrentUser { get; private set; }
|
||||
|
||||
public string? Avatar => UserManager.AvatarUrl.IsNullOrEmpty() ? CurrentUser.Avatar : UserManager.AvatarUrl;
|
||||
|
||||
/// <summary>
|
||||
/// 用户个人菜单
|
||||
/// </summary>
|
||||
|
||||
@@ -38,7 +38,7 @@ public partial class UserCenterPage
|
||||
protected override async Task OnParametersSetAsync()
|
||||
{
|
||||
SysUser = AppContext.CurrentUser.Adapt<SysUser>();
|
||||
SysUser.Avatar = AppContext.CurrentUser.Avatar;
|
||||
SysUser.Avatar = AppContext.Avatar;
|
||||
WorkbenchInfo = (await UserCenterService.GetLoginWorkbenchAsync(SysUser.Id)).Adapt<WorkbenchInfo>();
|
||||
|
||||
await base.OnParametersSetAsync();
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
// nuget动态加载的程序集
|
||||
"SupportPackageNamePrefixs": [
|
||||
"ThingsGateway.SqlSugar",
|
||||
"ThingsGateway.Admin.Application",
|
||||
"ThingsGateway.Admin.Razor",
|
||||
"ThingsGateway.Razor"
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
// nuget动态加载的程序集
|
||||
"SupportPackageNamePrefixs": [
|
||||
"ThingsGateway.SqlSugar",
|
||||
"ThingsGateway.Admin.Application",
|
||||
"ThingsGateway.Admin.Razor",
|
||||
"ThingsGateway.Razor"
|
||||
|
||||
@@ -12,15 +12,11 @@
|
||||
|
||||
#pragma warning disable CA2007 // 考虑对等待的任务调用 ConfigureAwait
|
||||
|
||||
using BootstrapBlazor.Components;
|
||||
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.Extensions.Localization;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.Admin.Razor;
|
||||
using ThingsGateway.Extension;
|
||||
|
||||
namespace ThingsGateway.AdminServer;
|
||||
|
||||
|
||||
@@ -13,8 +13,6 @@ using Microsoft.Extensions.Localization;
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
|
||||
namespace ThingsGateway.AdminServer;
|
||||
|
||||
public partial class AccessDenied
|
||||
|
||||
@@ -9,10 +9,6 @@
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#pragma warning disable CA2007 // 考虑对等待的任务调用 ConfigureAwait
|
||||
using BootstrapBlazor.Components;
|
||||
|
||||
using Mapster;
|
||||
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components.Forms;
|
||||
using Microsoft.Extensions.Localization;
|
||||
@@ -20,11 +16,6 @@ using Microsoft.Extensions.Options;
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.DataEncryption;
|
||||
using ThingsGateway.NewLife.Extension;
|
||||
using ThingsGateway.Razor;
|
||||
|
||||
namespace ThingsGateway.AdminServer;
|
||||
|
||||
public partial class Login
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
<CultureChooser />
|
||||
</div>
|
||||
|
||||
<Logout ImageUrl="@(AppContext.CurrentUser.Avatar??$"{WebsiteConst.DefaultResourceUrl}images/defaultUser.svg")" ShowUserName=false DisplayName="@UserManager.UserAccount" UserName="@UserManager.VerificatId.ToString()" PrefixUserNameText=@AdminLocalizer["CurrentVerificat"]>
|
||||
<Logout ImageUrl="@(AppContext.Avatar??$"{WebsiteConst.DefaultResourceUrl}images/defaultUser.svg")" ShowUserName=false DisplayName="@UserManager.UserAccount" UserName="@UserManager.VerificatId.ToString()" PrefixUserNameText=@AdminLocalizer["CurrentVerificat"]>
|
||||
<LinkTemplate>
|
||||
<a href=@("/") class="h6"><i class="fa-solid fa-suitcase me-2"></i>@Localizer["系统首页"]</a>
|
||||
|
||||
|
||||
@@ -9,17 +9,13 @@
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#pragma warning disable CA2007 // 考虑对等待的任务调用 ConfigureAwait
|
||||
using BootstrapBlazor.Components;
|
||||
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.Admin.Razor;
|
||||
using ThingsGateway.Razor;
|
||||
|
||||
namespace ThingsGateway.AdminServer;
|
||||
|
||||
@@ -27,38 +23,6 @@ public partial class MainLayout : IDisposable
|
||||
{
|
||||
[Inject]
|
||||
IStringLocalizer<ThingsGateway.Razor._Imports> RazorLocalizer { get; set; }
|
||||
private Task OnRefresh(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
_tab.Refresh(tabItem);
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private async Task OnClose(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
await _tab.RemoveTab(tabItem);
|
||||
}
|
||||
}
|
||||
|
||||
private Task OnCloseOther(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
_tab.ActiveTab(tabItem);
|
||||
}
|
||||
_tab.CloseOtherTabs();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private Task OnCloseAll(ContextMenuItem item, object? context)
|
||||
{
|
||||
_tab.CloseAllTabs();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
#region 全局通知
|
||||
|
||||
|
||||
@@ -13,8 +13,6 @@ using Microsoft.AspNetCore.ResponseCompression;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
using ThingsGateway.NewLife.Log;
|
||||
|
||||
namespace ThingsGateway.AdminServer;
|
||||
|
||||
public class Program
|
||||
|
||||
@@ -40,7 +40,8 @@ public class SingleFilePublish : ISingleFilePublish
|
||||
"ThingsGateway.NewLife.X",
|
||||
"ThingsGateway.Razor",
|
||||
"ThingsGateway.Admin.Razor" ,
|
||||
"ThingsGateway.Admin.Application"
|
||||
"ThingsGateway.Admin.Application",
|
||||
"ThingsGateway.SqlSugar",
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,17 +18,12 @@ using Microsoft.AspNetCore.StaticFiles;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using System.Text;
|
||||
using System.Text.Encodings.Web;
|
||||
using System.Text.Unicode;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.Admin.Razor;
|
||||
using ThingsGateway.Extension;
|
||||
using ThingsGateway.NewLife.Caching;
|
||||
|
||||
namespace ThingsGateway.AdminServer;
|
||||
|
||||
@@ -369,12 +364,6 @@ public class Startup : AppStartup
|
||||
app.UseStaticFiles(new StaticFileOptions { ContentTypeProvider = provider });
|
||||
app.UseStaticFiles();
|
||||
|
||||
app.Use(async (context, next) =>
|
||||
{
|
||||
context.Response.Headers.Append("ThingsGateway", "ThingsGateway");
|
||||
await next().ConfigureAwait(false);
|
||||
});
|
||||
|
||||
|
||||
// 特定文件类型(文件后缀)处理
|
||||
var contentTypeProvider = GetFileExtensionContentTypeProvider();
|
||||
|
||||
@@ -31,6 +31,11 @@ public class ClaimConst
|
||||
/// </summary>
|
||||
public const string UserId = "UserId";
|
||||
|
||||
/// <summary>
|
||||
/// AvatarUrl
|
||||
/// </summary>
|
||||
public const string AvatarUrl = "AvatarUrl";
|
||||
|
||||
/// <summary>
|
||||
/// 验证Id
|
||||
/// </summary>
|
||||
11
src/Admin/ThingsGateway.SqlSugar/GlobalUsings.cs
Normal file
11
src/Admin/ThingsGateway.SqlSugar/GlobalUsings.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||||
// 此代码版权(除特别声明外的代码)归作者本人Diego所有
|
||||
// 源代码使用协议遵循本仓库的开源协议及附加协议
|
||||
// Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway
|
||||
// Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway
|
||||
// 使用文档:https://thingsgateway.cn/
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
global using ThingsGateway.NewLife.Extension;
|
||||
@@ -0,0 +1,20 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||||
// 此代码版权(除特别声明外的代码)归作者本人Diego所有
|
||||
// 源代码使用协议遵循本仓库的开源协议及附加协议
|
||||
// Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway
|
||||
// Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway
|
||||
// 使用文档:https://thingsgateway.cn/
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System.Security.Claims;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class ClaimsPrincipalService : IClaimsPrincipalService
|
||||
{
|
||||
|
||||
public ClaimsPrincipal? User => App.User;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||||
// 此代码版权(除特别声明外的代码)归作者本人Diego所有
|
||||
// 源代码使用协议遵循本仓库的开源协议及附加协议
|
||||
// Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway
|
||||
// Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway
|
||||
// 使用文档:https://thingsgateway.cn/
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System.Security.Claims;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public interface IClaimsPrincipalService
|
||||
{
|
||||
public ClaimsPrincipal? User { get; }
|
||||
}
|
||||
@@ -17,10 +17,10 @@ namespace ThingsGateway.Admin.Application;
|
||||
|
||||
public class SugarAopService : ISugarAopService
|
||||
{
|
||||
private IAppService _appService;
|
||||
public SugarAopService(IAppService appService)
|
||||
private IClaimsPrincipalService _claimsPrincipalService;
|
||||
public SugarAopService(IClaimsPrincipalService appService)
|
||||
{
|
||||
_appService = appService;
|
||||
_claimsPrincipalService = appService;
|
||||
}
|
||||
/// <summary>
|
||||
/// Aop设置
|
||||
@@ -85,7 +85,7 @@ public class SugarAopService : ISugarAopService
|
||||
if (entityInfo.PropertyName == nameof(BaseEntity.CreateTime))
|
||||
entityInfo.SetValue(DateTime.Now);
|
||||
|
||||
if (_appService.User != null)
|
||||
if (_claimsPrincipalService.User != null)
|
||||
{
|
||||
//创建人
|
||||
if (entityInfo.PropertyName == nameof(BaseEntity.CreateUserId))
|
||||
@@ -103,7 +103,7 @@ public class SugarAopService : ISugarAopService
|
||||
if (entityInfo.PropertyName == nameof(BaseEntity.UpdateTime))
|
||||
entityInfo.SetValue(DateTime.Now);
|
||||
//更新人
|
||||
if (_appService.User != null)
|
||||
if (_claimsPrincipalService.User != null)
|
||||
{
|
||||
if (entityInfo.PropertyName == nameof(BaseEntity.UpdateUserId))
|
||||
entityInfo.SetValue(UserManager.UserId);
|
||||
44
src/Admin/ThingsGateway.SqlSugar/Startup.cs
Normal file
44
src/Admin/ThingsGateway.SqlSugar/Startup.cs
Normal file
@@ -0,0 +1,44 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||||
// 此代码版权(除特别声明外的代码)归作者本人Diego所有
|
||||
// 源代码使用协议遵循本仓库的开源协议及附加协议
|
||||
// Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway
|
||||
// Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway
|
||||
// 使用文档:https://thingsgateway.cn/
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using BootstrapBlazor.Components;
|
||||
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
using SqlSugar;
|
||||
|
||||
namespace ThingsGateway.Admin.Application;
|
||||
|
||||
[AppStartup(1000000000)]
|
||||
public class Startup : AppStartup
|
||||
{
|
||||
public void Configure(IServiceCollection services)
|
||||
{
|
||||
services.AddConfigurableOptions<SqlSugarOptions>();
|
||||
|
||||
services.AddSingleton(typeof(IDataService<>), typeof(BaseService<>));
|
||||
services.AddSingleton<ISugarAopService, SugarAopService>();
|
||||
services.AddSingleton<ISugarConfigAopService, SugarConfigAopService>();
|
||||
|
||||
services.AddSingleton<IClaimsPrincipalService, ClaimsPrincipalService>();
|
||||
|
||||
StaticConfig.EnableAllWhereIF = true;
|
||||
|
||||
services.AddSingleton<ISugarAopService, SugarAopService>();
|
||||
|
||||
}
|
||||
|
||||
public void Use(IApplicationBuilder applicationBuilder)
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
@@ -17,33 +17,39 @@ namespace ThingsGateway.Admin.Application;
|
||||
/// </summary>
|
||||
public static class UserManager
|
||||
{
|
||||
private static readonly IAppService _appService;
|
||||
private static readonly IClaimsPrincipalService _claimsPrincipalService;
|
||||
static UserManager()
|
||||
{
|
||||
_appService = App.RootServices.GetService<IAppService>();
|
||||
_claimsPrincipalService = App.RootServices.GetService<IClaimsPrincipalService>();
|
||||
}
|
||||
/// <summary>
|
||||
/// 是否超级管理员
|
||||
/// </summary>
|
||||
public static bool SuperAdmin => (_appService.User?.FindFirst(ClaimConst.SuperAdmin)?.Value).ToBoolean(false);
|
||||
public static bool SuperAdmin => (_claimsPrincipalService.User?.FindFirst(ClaimConst.SuperAdmin)?.Value).ToBoolean(false);
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 当前用户账号
|
||||
/// </summary>
|
||||
public static string UserAccount => _appService.User?.FindFirst(ClaimConst.Account)?.Value;
|
||||
public static string UserAccount => _claimsPrincipalService.User?.FindFirst(ClaimConst.Account)?.Value;
|
||||
|
||||
/// <summary>
|
||||
/// AvatarUrl
|
||||
/// </summary>
|
||||
public static string AvatarUrl => (_claimsPrincipalService.User?.FindFirst(ClaimConst.AvatarUrl)?.Value);
|
||||
|
||||
/// <summary>
|
||||
/// 当前用户Id
|
||||
/// </summary>
|
||||
public static long UserId => (_appService.User?.FindFirst(ClaimConst.UserId)?.Value).ToLong();
|
||||
public static long UserId => (_claimsPrincipalService.User?.FindFirst(ClaimConst.UserId)?.Value).ToLong();
|
||||
|
||||
/// <summary>
|
||||
/// 当前验证Id
|
||||
/// </summary>
|
||||
public static long VerificatId => (_appService.User?.FindFirst(ClaimConst.VerificatId)?.Value).ToLong();
|
||||
public static long VerificatId => (_claimsPrincipalService.User?.FindFirst(ClaimConst.VerificatId)?.Value).ToLong();
|
||||
|
||||
public static long OrgId => (_appService.User?.FindFirst(ClaimConst.OrgId)?.Value).ToLong();
|
||||
public static long OrgId => (_claimsPrincipalService.User?.FindFirst(ClaimConst.OrgId)?.Value).ToLong();
|
||||
|
||||
public static long TenantId => (_appService.User?.FindFirst(ClaimConst.TenantId)?.Value)?.ToLong() ?? 0;
|
||||
public static long TenantId => (_claimsPrincipalService.User?.FindFirst(ClaimConst.TenantId)?.Value)?.ToLong() ?? 0;
|
||||
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<Import Project="$(SolutionDir)Version.props" />
|
||||
<Import Project="$(SolutionDir)PackNuget.props" />
|
||||
|
||||
<PropertyGroup>
|
||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>net8.0;net9.0;</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="SqlSugarCore" Version="5.1.4.193" />
|
||||
<PackageReference Include="BootstrapBlazor.TableExport" Version="9.2.5" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="..\README.md" Pack="true" PackagePath="\" />
|
||||
<None Include="..\README.zh-CN.md" Pack="true" PackagePath="\" />
|
||||
<None Remove="$(SolutionDir)..\README.md" Pack="false" PackagePath="\" />
|
||||
<None Remove="$(SolutionDir)..\README.zh-CN.md" Pack="false" PackagePath="\" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\ThingsGateway.Razor\ThingsGateway.Razor.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -1,9 +1,9 @@
|
||||
<Project>
|
||||
|
||||
<PropertyGroup>
|
||||
<PluginVersion>10.6.32</PluginVersion>
|
||||
<ProPluginVersion>10.6.32</ProPluginVersion>
|
||||
<AuthenticationVersion>2.1.8</AuthenticationVersion>
|
||||
<PluginVersion>10.7.14</PluginVersion>
|
||||
<ProPluginVersion>10.7.14</ProPluginVersion>
|
||||
<AuthenticationVersion>2.2.0</AuthenticationVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
||||
@@ -6,8 +6,9 @@
|
||||
@using BootstrapBlazor.Components
|
||||
@namespace ThingsGateway.Debug
|
||||
|
||||
<div class="w-100" style=@($"height:{HeightString}")>
|
||||
|
||||
<Card HeaderText=@HeaderText class=@("w-100 h-100") style=@($"display: flex; flex: 1;{CardStyle}")>
|
||||
<Card HeaderText=@HeaderText class=@("w-100 h-100")>
|
||||
<HeaderTemplate>
|
||||
<div class="flex-fill">
|
||||
</div>
|
||||
@@ -37,7 +38,7 @@
|
||||
|
||||
</HeaderTemplate>
|
||||
<BodyTemplate>
|
||||
<div style=@($"height:{HeightString};overflow-y:scroll;flex-fill;")>
|
||||
<div style=@($"height:calc(100% - 50px);overflow-y:scroll;flex-fill;")>
|
||||
<Virtualize Items="CurrentMessages??new List<LogMessage>()" Context="itemMessage" ItemSize="60" OverscanCount=2>
|
||||
<ItemContent>
|
||||
@* <Tooltip Placement="Placement.Bottom" Title=@itemMessage.Message.Substring(0, Math.Min(itemMessage.Message.Length, 500))> *@
|
||||
@@ -57,3 +58,4 @@
|
||||
</Card>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
@@ -33,13 +33,11 @@ public partial class LogConsole : IDisposable
|
||||
[Parameter]
|
||||
public EventCallback<LogLevel> LogLevelChanged { get; set; }
|
||||
|
||||
[Parameter]
|
||||
public string CardStyle { get; set; } = "height: 100%;";
|
||||
[Parameter]
|
||||
public string HeaderText { get; set; } = "Log";
|
||||
|
||||
[Parameter]
|
||||
public string HeightString { get; set; } = "100%";
|
||||
public string HeightString { get; set; } = "calc(100% - 300px)";
|
||||
|
||||
[Parameter, EditorRequired]
|
||||
public string LogPath { get; set; }
|
||||
|
||||
@@ -28,11 +28,12 @@ public class DtuPlugin : PluginBase, ITcpReceivingPlugin
|
||||
set
|
||||
{
|
||||
_heartbeat = value;
|
||||
HeartbeatByte = new ArraySegment<byte>(Encoding.UTF8.GetBytes(value));
|
||||
if (!_heartbeat.IsNullOrEmpty())
|
||||
HeartbeatByte = new ArraySegment<byte>(Encoding.UTF8.GetBytes(value));
|
||||
}
|
||||
}
|
||||
private string _heartbeat;
|
||||
private ArraySegment<byte> HeartbeatByte;
|
||||
private ArraySegment<byte> HeartbeatByte = new();
|
||||
|
||||
/// <inheritdoc/>
|
||||
public async Task OnTcpReceiving(ITcpSession client, ByteBlockEventArgs e)
|
||||
|
||||
@@ -47,7 +47,7 @@ public static class PluginUtil
|
||||
Action<IPluginManager> action = a => { };
|
||||
|
||||
action += GetTcpServicePlugin(channelOptions);
|
||||
if (!channelOptions.Heartbeat.IsNullOrWhiteSpace())
|
||||
//if (!channelOptions.Heartbeat.IsNullOrWhiteSpace())
|
||||
{
|
||||
action += a =>
|
||||
{
|
||||
|
||||
@@ -8,17 +8,13 @@
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System.Buffers;
|
||||
using System.Text;
|
||||
|
||||
using ThingsGateway.NewLife.Caching;
|
||||
|
||||
namespace ThingsGateway.Foundation;
|
||||
|
||||
public class LogDataCache
|
||||
{
|
||||
public List<LogData> LogDatas { get; set; }
|
||||
public long Length { get; set; }
|
||||
}
|
||||
/// <summary>
|
||||
/// 日志数据
|
||||
/// </summary>
|
||||
@@ -47,8 +43,19 @@ public class LogData
|
||||
|
||||
|
||||
/// <summary>日志文本文件倒序读取</summary>
|
||||
|
||||
public class LogDataCache
|
||||
{
|
||||
public List<LogData> LogDatas { get; set; }
|
||||
public long Length { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>高性能日志文件读取器(支持倒序读取)</summary>
|
||||
public class TextFileReader
|
||||
{
|
||||
private static readonly MemoryCache _cache = new() { Expire = 30 };
|
||||
private static readonly MemoryCache _fileLocks = new();
|
||||
private static readonly ArrayPool<byte> _bytePool = ArrayPool<byte>.Shared;
|
||||
/// <summary>
|
||||
/// 获取指定目录下所有文件信息
|
||||
/// </summary>
|
||||
@@ -86,159 +93,167 @@ public class TextFileReader
|
||||
return result;
|
||||
}
|
||||
|
||||
static MemoryCache _cache = new() { Expire = 30 };
|
||||
|
||||
public static OperResult<List<LogData>> LastLog(string file, int lineCount = 200)
|
||||
{
|
||||
lock (_cache)
|
||||
{
|
||||
if (!File.Exists(file))
|
||||
return new OperResult<List<LogData>>("The file path is invalid");
|
||||
|
||||
OperResult<List<LogData>> result = new(); // 初始化结果对象
|
||||
_fileLocks.SetExpire(file, TimeSpan.FromSeconds(30));
|
||||
var fileLock = _fileLocks.GetOrAdd(file, _ => new object());
|
||||
lock (fileLock)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (!File.Exists(file)) // 检查文件是否存在
|
||||
var fileInfo = new FileInfo(file);
|
||||
var length = fileInfo.Length;
|
||||
var cacheKey = $"{nameof(TextFileReader)}_{nameof(LastLog)}_{file})";
|
||||
if (_cache.TryGetValue<LogDataCache>(cacheKey, out var cachedData))
|
||||
{
|
||||
result.OperCode = 999;
|
||||
result.ErrorMessage = "The file path is invalid";
|
||||
return result;
|
||||
}
|
||||
|
||||
List<string> txt = new(); // 存储读取的文本内容
|
||||
long ps = 0; // 保存起始位置
|
||||
var key = $"{nameof(TextFileReader)}_{nameof(LastLog)}_{file})";
|
||||
long length = 0;
|
||||
using (var fs = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.ReadWrite))
|
||||
{
|
||||
length = fs.Length;
|
||||
var dataCache = _cache.Get<LogDataCache>(key);
|
||||
if (dataCache != null && dataCache.Length == length)
|
||||
if (cachedData != null && cachedData.Length == length)
|
||||
{
|
||||
result.Content = dataCache.LogDatas;
|
||||
result.OperCode = 0; // 操作状态设为成功
|
||||
return result; // 返回解析结果
|
||||
return new OperResult<List<LogData>>() { Content = cachedData.LogDatas };
|
||||
}
|
||||
|
||||
if (ps <= 0) // 如果起始位置小于等于0,将起始位置设置为文件长度
|
||||
ps = length - 1;
|
||||
|
||||
// 循环读取指定行数的文本内容
|
||||
for (int i = 0; i < lineCount; i++)
|
||||
else
|
||||
{
|
||||
ps = InverseReadRow(fs, ps, out var value); // 使用逆序读取
|
||||
txt.Add(value);
|
||||
if (ps <= 0) // 如果已经读取到文件开头则跳出循环
|
||||
break;
|
||||
_cache.Remove(cacheKey);
|
||||
}
|
||||
}
|
||||
|
||||
// 使用单次 LINQ 操作进行过滤和解析
|
||||
result.Content = txt
|
||||
.Select(a => ParseCSV(a))
|
||||
.Where(data => data.Count >= 3)
|
||||
.Select(data =>
|
||||
{
|
||||
var log = new LogData
|
||||
{
|
||||
LogTime = data[0].Trim(),
|
||||
LogLevel = Enum.TryParse(data[1].Trim(), out LogLevel level) ? level : LogLevel.Info,
|
||||
Message = data[2].Trim(),
|
||||
ExceptionString = data.Count > 3 ? data[3].Trim() : null
|
||||
};
|
||||
return log;
|
||||
})
|
||||
.ToList();
|
||||
using var fs = new FileStream(file, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, 4096, FileOptions.SequentialScan);
|
||||
var result = ReadLogsInverse(fs, lineCount, fileInfo.Length);
|
||||
|
||||
result.OperCode = 0; // 操作状态设为成功
|
||||
var data = _cache.Set<LogDataCache>(key, new LogDataCache() { Length = length, LogDatas = result.Content });
|
||||
_cache.Set(cacheKey, new LogDataCache
|
||||
{
|
||||
LogDatas = result,
|
||||
Length = fileInfo.Length,
|
||||
});
|
||||
|
||||
return result; // 返回解析结果
|
||||
return new OperResult<List<LogData>>() { Content = result };
|
||||
}
|
||||
catch (Exception ex) // 捕获异常
|
||||
catch (Exception ex)
|
||||
{
|
||||
result = new(ex); // 创建包含异常信息的结果对象
|
||||
return result; // 返回异常结果
|
||||
return new OperResult<List<LogData>>(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private static List<LogData> ReadLogsInverse(FileStream fs, int lineCount, long length)
|
||||
{
|
||||
length = fs.Length;
|
||||
long ps = 0; // 保存起始位置
|
||||
List<string> txt = new(); // 存储读取的文本内容
|
||||
|
||||
if (ps <= 0) // 如果起始位置小于等于0,将起始位置设置为文件长度
|
||||
ps = length - 1;
|
||||
|
||||
// 循环读取指定行数的文本内容
|
||||
for (int i = 0; i < lineCount; i++)
|
||||
{
|
||||
ps = InverseReadRow(fs, ps, out var value); // 使用逆序读取
|
||||
txt.Add(value);
|
||||
if (ps <= 0) // 如果已经读取到文件开头则跳出循环
|
||||
break;
|
||||
}
|
||||
|
||||
// 使用单次 LINQ 操作进行过滤和解析
|
||||
var result = txt
|
||||
.Select(a => ParseCSV(a))
|
||||
.Where(data => data.Count >= 3)
|
||||
.Select(data =>
|
||||
{
|
||||
var log = new LogData
|
||||
{
|
||||
LogTime = data[0].Trim(),
|
||||
LogLevel = Enum.TryParse(data[1].Trim(), out LogLevel level) ? level : LogLevel.Info,
|
||||
Message = data[2].Trim(),
|
||||
ExceptionString = data.Count > 3 ? data[3].Trim() : null
|
||||
};
|
||||
return log;
|
||||
})
|
||||
.ToList();
|
||||
|
||||
|
||||
return result; // 返回解析结果
|
||||
}
|
||||
|
||||
private static long InverseReadRow(FileStream fs, long position, out string value, int maxRead = 102400)
|
||||
{
|
||||
byte n = 0xD; // 换行符
|
||||
byte a = 0xA; // 回车符
|
||||
byte n = 0xD;
|
||||
byte a = 0xA;
|
||||
value = string.Empty;
|
||||
if (fs.Length == 0) return 0; // 若文件长度为0,则直接返回0作为新的位置
|
||||
|
||||
if (fs.Length == 0) return 0;
|
||||
|
||||
var newPos = position;
|
||||
List<byte> buffer = new List<byte>(maxRead); // 缓存读取的数据
|
||||
byte[] buffer = _bytePool.Rent(maxRead); // 从池中租借字节数组
|
||||
int index = 0;
|
||||
|
||||
try
|
||||
{
|
||||
var readLength = 0;
|
||||
|
||||
while (true) // 循环读取一行数据,TextFileLogger.Separator行判定
|
||||
while (true)
|
||||
{
|
||||
readLength++;
|
||||
if (newPos <= 0)
|
||||
newPos = 0;
|
||||
|
||||
fs.Position = newPos;
|
||||
int byteRead = fs.ReadByte();
|
||||
|
||||
if (byteRead == -1) break; // 到达文件开头时跳出循环
|
||||
if (byteRead == -1) break;
|
||||
|
||||
buffer.Add((byte)byteRead);
|
||||
|
||||
if (byteRead == n || byteRead == a)//判断当前字符是换行符 // TextFileLogger.Separator
|
||||
{
|
||||
if (MatchSeparator(buffer))
|
||||
{
|
||||
// 去掉匹配的指定字符串
|
||||
buffer.RemoveRange(buffer.Count - TextFileLogger.SeparatorBytes.Length, TextFileLogger.SeparatorBytes.Length);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (buffer.Count > maxRead) // 超过最大字节数限制时丢弃数据
|
||||
if (index >= maxRead)
|
||||
{
|
||||
newPos = -1;
|
||||
return newPos;
|
||||
}
|
||||
|
||||
buffer[index++] = (byte)byteRead;
|
||||
|
||||
if (byteRead == n || byteRead == a)
|
||||
{
|
||||
if (MatchSeparator(buffer, index))
|
||||
{
|
||||
index -= TextFileLogger.SeparatorBytes.Length;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
newPos--;
|
||||
if (newPos <= -1)
|
||||
break;
|
||||
}
|
||||
|
||||
if (buffer.Count >= 10)
|
||||
if (index >= 10)
|
||||
{
|
||||
buffer.Reverse();
|
||||
value = Encoding.UTF8.GetString(buffer.ToArray()); // 转换为字符串
|
||||
Array.Reverse(buffer, 0, index); // 倒序
|
||||
value = Encoding.UTF8.GetString(buffer, 0, index);
|
||||
}
|
||||
|
||||
return newPos; // 返回新的读取位置
|
||||
return newPos;
|
||||
}
|
||||
finally
|
||||
{
|
||||
_bytePool.Return(buffer); // 归还数组
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private static bool MatchSeparator(List<byte> arr)
|
||||
private static bool MatchSeparator(byte[] arr, int length)
|
||||
{
|
||||
if (arr.Count < TextFileLogger.SeparatorBytes.Length)
|
||||
{
|
||||
if (length < TextFileLogger.SeparatorBytes.Length)
|
||||
return false;
|
||||
}
|
||||
var pos = arr.Count - 1;
|
||||
|
||||
int pos = length - 1;
|
||||
for (int i = 0; i < TextFileLogger.SeparatorBytes.Length; i++)
|
||||
{
|
||||
if (arr[pos] != TextFileLogger.SeparatorBytes[i])
|
||||
{
|
||||
return false;
|
||||
}
|
||||
pos--;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
private static List<string> ParseCSV(string data)
|
||||
{
|
||||
List<string> items = new List<string>();
|
||||
|
||||
@@ -75,7 +75,6 @@ public class SmartTriggerScheduler
|
||||
return;
|
||||
}
|
||||
|
||||
// 有新的触发,继续下一轮循环(再执行一次)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -352,7 +352,12 @@ public abstract class DriverBase : DisposableObject, IDriver
|
||||
|
||||
public string GetAuthString()
|
||||
{
|
||||
return PluginServiceUtil.IsEducation(GetType()) ? ThingsGateway.Authentication.ProAuthentication.TryGetAuthorizeInfo(out _) ? Localizer["Authorized"] : Localizer["Unauthorized"] : string.Empty;
|
||||
if (PluginServiceUtil.IsEducation(GetType()))
|
||||
{
|
||||
ThingsGateway.Authentication.ProAuthentication.TryGetAuthorizeInfo(out var authorizeInfo);
|
||||
return authorizeInfo.Auth ? Localizer["Authorized"] : Localizer["Unauthorized"];
|
||||
}
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
using ThingsGateway.Authentication;
|
||||
|
||||
namespace ThingsGateway.Gateway.Razor;
|
||||
|
||||
/// <inheritdoc/>
|
||||
@@ -27,39 +25,5 @@ public partial class GatewayAbout
|
||||
[NotNull]
|
||||
private IOptions<WebsiteOptions>? WebsiteOption { get; set; }
|
||||
|
||||
private string Password { get; set; }
|
||||
private AuthorizeInfo AuthorizeInfo { get; set; }
|
||||
[Inject]
|
||||
ToastService ToastService { get; set; }
|
||||
|
||||
protected override void OnParametersSet()
|
||||
{
|
||||
ProAuthentication.TryGetAuthorizeInfo(out var authorizeInfo);
|
||||
AuthorizeInfo = authorizeInfo;
|
||||
base.OnParametersSet();
|
||||
}
|
||||
|
||||
private async Task Register()
|
||||
{
|
||||
var result = ProAuthentication.TryAuthorize(Password, out var authorizeInfo);
|
||||
if (result)
|
||||
{
|
||||
AuthorizeInfo = authorizeInfo;
|
||||
await ToastService.Default();
|
||||
}
|
||||
else
|
||||
await ToastService.Default(false);
|
||||
|
||||
Password = string.Empty;
|
||||
await InvokeAsync(StateHasChanged);
|
||||
}
|
||||
private async Task Unregister()
|
||||
{
|
||||
ProAuthentication.UnAuthorize();
|
||||
var result = ProAuthentication.TryGetAuthorizeInfo(out var authorizeInfo);
|
||||
AuthorizeInfo = authorizeInfo;
|
||||
|
||||
await InvokeAsync(StateHasChanged);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
<ChannelRuntimeInfo1 ChannelRuntime="ChannelRuntime" />
|
||||
|
||||
<LogConsole CardStyle="height: calc(100% - 330px);" LogLevel=@((ChannelRuntime?.DeviceThreadManage?.LogMessage)?.LogLevel??TouchSocket.Core.LogLevel.Trace)
|
||||
<LogConsole HeightString="calc(100% - 270px)" LogLevel=@((ChannelRuntime?.DeviceThreadManage?.LogMessage)?.LogLevel ?? TouchSocket.Core.LogLevel.Trace)
|
||||
LogLevelChanged="(logLevel)=>
|
||||
{
|
||||
ChannelRuntime.DeviceThreadManage?.SetLogAsync(logLevel);
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
<DeviceRuntimeInfo1 DeviceRuntime="DeviceRuntime" />
|
||||
|
||||
<LogConsole CardStyle="height: calc(100% - 330px);" LogLevel=@((DeviceRuntime?.Driver?.LogMessage)?.LogLevel??TouchSocket.Core.LogLevel.Trace)
|
||||
<LogConsole HeightString="calc(100% - 270px)" LogLevel=@((DeviceRuntime?.Driver?.LogMessage)?.LogLevel ?? TouchSocket.Core.LogLevel.Trace)
|
||||
LogLevelChanged="(logLevel)=>
|
||||
{
|
||||
DeviceRuntime.Driver?.SetLogAsync(logLevel);
|
||||
|
||||
@@ -24,9 +24,7 @@
|
||||
</FirstPaneTemplate>
|
||||
<SecondPaneTemplate>
|
||||
|
||||
<div class="h-100 ms-1" style="display: flex; flex-direction: column;">
|
||||
<GatewayInfo AutoRestartThread=AutoRestartThread SelectModel=SelectModel ShowChannelRuntime=ShowChannelRuntime ShowDeviceRuntime=ShowDeviceRuntime ShowType=ShowType VariableRuntimes=VariableRuntimes ChannelRuntimes="ChannelRuntimes" DeviceRuntimes="DeviceRuntimes" />
|
||||
</div>
|
||||
<GatewayInfo AutoRestartThread=AutoRestartThread SelectModel=SelectModel ShowChannelRuntime=ShowChannelRuntime ShowDeviceRuntime=ShowDeviceRuntime ShowType=ShowType VariableRuntimes=VariableRuntimes ChannelRuntimes="ChannelRuntimes" DeviceRuntimes="DeviceRuntimes" />
|
||||
|
||||
</SecondPaneTemplate>
|
||||
</Split>
|
||||
|
||||
@@ -35,6 +35,15 @@ public partial class VariableRuntimeInfo : IDisposable
|
||||
|
||||
[Parameter]
|
||||
public IEnumerable<VariableRuntime>? Items { get; set; } = Enumerable.Empty<VariableRuntime>();
|
||||
private IEnumerable<VariableRuntime>? _previousItemsRef;
|
||||
protected override async Task OnParametersSetAsync()
|
||||
{
|
||||
if (!ReferenceEquals(_previousItemsRef, Items))
|
||||
{
|
||||
_previousItemsRef = Items;
|
||||
await Refresh(null);
|
||||
}
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
@@ -47,7 +56,7 @@ public partial class VariableRuntimeInfo : IDisposable
|
||||
{
|
||||
VariableRuntimeDispatchService.Subscribe(Refresh);
|
||||
|
||||
scheduler = new SmartTriggerScheduler(Notify, TimeSpan.FromMilliseconds(3000));
|
||||
scheduler = new SmartTriggerScheduler(Notify, TimeSpan.FromMilliseconds(1000));
|
||||
|
||||
_ = RunTimerAsync();
|
||||
base.OnInitialized();
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
</label>
|
||||
|
||||
<label class="form-control">
|
||||
@(AuthorizeInfo != null ? Localizer["Authorized"] : Localizer["Unauthorized"])
|
||||
@(AuthorizeInfo?.Auth==true ? Localizer["Authorized"] : Localizer["Unauthorized"])
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
@@ -50,6 +50,7 @@
|
||||
@if (AuthorizeInfo != null)
|
||||
{
|
||||
<div class="row g-3 form-inline">
|
||||
|
||||
<div class="col-12 col-sm-12">
|
||||
|
||||
<label class="form-label">
|
||||
@@ -70,7 +71,7 @@
|
||||
</label>
|
||||
|
||||
<label class="form-control">
|
||||
@AuthorizeInfo?.ExpireTime
|
||||
@AuthorizeInfo?.RealExpireTime
|
||||
</label>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -55,7 +55,7 @@ public partial class Authentication
|
||||
private async Task Unregister()
|
||||
{
|
||||
ProAuthentication.UnAuthorize();
|
||||
var result = ProAuthentication.TryGetAuthorizeInfo(out var authorizeInfo);
|
||||
_ = ProAuthentication.TryGetAuthorizeInfo(out var authorizeInfo);
|
||||
AuthorizeInfo = authorizeInfo;
|
||||
|
||||
await InvokeAsync(StateHasChanged);
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
@if (Logger != null)
|
||||
{
|
||||
<LogConsole LogLevel=@(Logger.LogLevel) LogLevelChanged="(a)=>{
|
||||
<LogConsole HeightString="calc(100% - 100px)" LogLevel=@(Logger.LogLevel) LogLevelChanged="(a)=>{
|
||||
Logger.LogLevel=a;
|
||||
}" LogPath=@LogPath HeaderText=@HeaderText></LogConsole>
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
|
||||
@if (_rules != null)
|
||||
{
|
||||
<LogConsole LogLevel=@(_rules.Log.LogLevel) LogLevelChanged="(a)=>{
|
||||
<LogConsole HeightString="100%" LogLevel=@(_rules.Log.LogLevel) LogLevelChanged="(a)=>{
|
||||
_rules.Log.LogLevel=a;
|
||||
}" LogPath=@_rules.Log.LogPath HeaderText="@_rules.Rules.Name"></LogConsole>
|
||||
}
|
||||
|
||||
@@ -25,39 +25,6 @@ public partial class MainLayout
|
||||
{
|
||||
[Inject]
|
||||
IStringLocalizer<ThingsGateway.Razor._Imports> RazorLocalizer { get; set; }
|
||||
private Task OnRefresh(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
_tab.Refresh(tabItem);
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private async Task OnClose(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
await _tab.RemoveTab(tabItem);
|
||||
}
|
||||
}
|
||||
|
||||
private Task OnCloseOther(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
_tab.ActiveTab(tabItem);
|
||||
}
|
||||
_tab.CloseOtherTabs();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private Task OnCloseAll(ContextMenuItem item, object? context)
|
||||
{
|
||||
_tab.CloseAllTabs();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
|
||||
private Tab _tab { get; set; }
|
||||
|
||||
|
||||
@@ -15,7 +15,6 @@ using Microsoft.AspNetCore.DataProtection;
|
||||
using Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption;
|
||||
using Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.HttpOverrides;
|
||||
using Microsoft.AspNetCore.StaticFiles;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
@@ -52,6 +51,7 @@ public class Startup : AppStartup
|
||||
services.AddSingleton<IAuthRazorService, HybridAuthRazorService>();
|
||||
services.AddSingleton<HybridAppService>();
|
||||
services.AddSingleton<IAppService, HybridAppService>(a => a.GetService<HybridAppService>());
|
||||
services.AddSingleton<IClaimsPrincipalService, HybridClaimsPrincipalService>();
|
||||
|
||||
services.AddScoped<IPlatformService, HybridPlatformService>();
|
||||
services.AddScoped<IGatewayExportService, HybridGatewayExportService>();
|
||||
@@ -351,12 +351,6 @@ public class Startup : AppStartup
|
||||
app.UseStaticFiles(new StaticFileOptions { ContentTypeProvider = provider });
|
||||
app.UseStaticFiles();
|
||||
|
||||
app.Use(async (context, next) =>
|
||||
{
|
||||
context.Response.Headers.Append("ThingsGateway", "ThingsGateway");
|
||||
await next().ConfigureAwait(false);
|
||||
});
|
||||
|
||||
|
||||
// 特定文件类型(文件后缀)处理
|
||||
var contentTypeProvider = GetFileExtensionContentTypeProvider();
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
// nuget动态加载的程序集
|
||||
"SupportPackageNamePrefixs": [
|
||||
"ThingsGateway.SqlSugar",
|
||||
"ThingsGateway.Admin.Application",
|
||||
"ThingsGateway.Admin.Razor",
|
||||
"ThingsGateway.Gateway.Application",
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
|
||||
// nuget动态加载的程序集
|
||||
"SupportPackageNamePrefixs": [
|
||||
"ThingsGateway.SqlSugar",
|
||||
"ThingsGateway.Admin.Application",
|
||||
"ThingsGateway.Admin.Razor",
|
||||
"ThingsGateway.Gateway.Application",
|
||||
|
||||
@@ -64,43 +64,51 @@ public partial class Login
|
||||
_versionString = $"v{VersionService.Version}";
|
||||
return base.OnInitializedAsync();
|
||||
}
|
||||
|
||||
[Inject]
|
||||
NavigationManager NavigationManager { get; set; }
|
||||
private async Task LoginAsync(EditContext context)
|
||||
{
|
||||
var model = loginModel.Adapt<LoginInput>();
|
||||
model.Password = DESEncryption.Encrypt(model.Password);
|
||||
|
||||
try
|
||||
var websiteOptions = App.GetOptions<WebsiteOptions>()!;
|
||||
if (websiteOptions.Demo)
|
||||
{
|
||||
NavigationManager.NavigateTo("/api/auth/oauth-login", forceLoad: true);
|
||||
}
|
||||
else
|
||||
{
|
||||
var model = loginModel.Adapt<LoginInput>();
|
||||
model.Password = DESEncryption.Encrypt(model.Password);
|
||||
|
||||
var ret = await AuthRazorService.LoginAsync(model);
|
||||
|
||||
if (ret.Code != 200)
|
||||
try
|
||||
{
|
||||
await ToastService.Error(Localizer["LoginErrorh1"], $"{ret.Msg}");
|
||||
}
|
||||
else
|
||||
{
|
||||
await ToastService.Information(Localizer["LoginSuccessh1"], Localizer["LoginSuccessc1"]);
|
||||
await Task.Delay(1000);
|
||||
|
||||
if (ReturnUrl.IsNullOrWhiteSpace() || ReturnUrl == @"/")
|
||||
var ret = await AuthRazorService.LoginAsync(model);
|
||||
|
||||
if (ret.Code != 200)
|
||||
{
|
||||
await AjaxService.Goto(ReturnUrl ?? "/");
|
||||
await ToastService.Error(Localizer["LoginErrorh1"], $"{ret.Msg}");
|
||||
}
|
||||
else
|
||||
{
|
||||
await AjaxService.Goto(ReturnUrl);
|
||||
await ToastService.Information(Localizer["LoginSuccessh1"], Localizer["LoginSuccessc1"]);
|
||||
await Task.Delay(1000);
|
||||
|
||||
if (ReturnUrl.IsNullOrWhiteSpace() || ReturnUrl == @"/")
|
||||
{
|
||||
await AjaxService.Goto(ReturnUrl ?? "/");
|
||||
}
|
||||
else
|
||||
{
|
||||
await AjaxService.Goto(ReturnUrl);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch
|
||||
{
|
||||
await ToastService.Error(Localizer["LoginErrorh2"], Localizer["LoginErrorc2"]);
|
||||
catch
|
||||
{
|
||||
await ToastService.Error(Localizer["LoginErrorh2"], Localizer["LoginErrorc2"]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
<CultureChooser />
|
||||
</div>
|
||||
|
||||
<Logout ImageUrl="@(AppContext.CurrentUser.Avatar??$"{WebsiteConst.DefaultResourceUrl}images/defaultUser.svg")" ShowUserName=false DisplayName="@UserManager.UserAccount" UserName="@UserManager.VerificatId.ToString()" PrefixUserNameText=@AdminLocalizer["CurrentVerificat"]>
|
||||
<Logout ImageUrl="@(AppContext.Avatar??$"{WebsiteConst.DefaultResourceUrl}images/defaultUser.svg")" ShowUserName=false DisplayName="@UserManager.UserAccount" UserName="@UserManager.VerificatId.ToString()" PrefixUserNameText=@AdminLocalizer["CurrentVerificat"]>
|
||||
<LinkTemplate>
|
||||
<a href=@("/") class="h6"><i class="fa-solid fa-suitcase me-2"></i>@Localizer["系统首页"]</a>
|
||||
|
||||
|
||||
@@ -28,39 +28,6 @@ public partial class MainLayout : IDisposable
|
||||
{
|
||||
[Inject]
|
||||
IStringLocalizer<ThingsGateway.Razor._Imports> RazorLocalizer { get; set; }
|
||||
private Task OnRefresh(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
_tab.Refresh(tabItem);
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private async Task OnClose(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
await _tab.RemoveTab(tabItem);
|
||||
}
|
||||
}
|
||||
|
||||
private Task OnCloseOther(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
_tab.ActiveTab(tabItem);
|
||||
}
|
||||
_tab.CloseOtherTabs();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private Task OnCloseAll(ContextMenuItem item, object? context)
|
||||
{
|
||||
_tab.CloseAllTabs();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
|
||||
#region 全局通知
|
||||
|
||||
|
||||
@@ -41,6 +41,7 @@ public class SingleFilePublish : ISingleFilePublish
|
||||
"ThingsGateway.Razor",
|
||||
"ThingsGateway.Admin.Razor" ,
|
||||
"ThingsGateway.Admin.Application",
|
||||
"ThingsGateway.SqlSugar",
|
||||
|
||||
"ThingsGateway.Management",
|
||||
"ThingsGateway.RulesEngine",
|
||||
|
||||
@@ -29,6 +29,7 @@ using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.Admin.Razor;
|
||||
using ThingsGateway.Extension;
|
||||
using ThingsGateway.NewLife.Caching;
|
||||
using ThingsGateway.Razor;
|
||||
|
||||
namespace ThingsGateway.Server;
|
||||
|
||||
@@ -287,6 +288,18 @@ public class Startup : AppStartup
|
||||
a.LoginPath = "/Account/Login/";
|
||||
});
|
||||
|
||||
var websiteOptions = App.GetOptions<WebsiteOptions>()!;
|
||||
if (websiteOptions.Demo)
|
||||
{
|
||||
authenticationBuilder.AddOAuth<GiteeOAuthOptions, AdminOAuthHandler<GiteeOAuthOptions>>("Gitee", "Gitee", options =>
|
||||
{
|
||||
var data = App.GetConfig<GiteeOAuthSettings>("GiteeOAuthSettings");
|
||||
options.ClientId = data.ClientId;
|
||||
options.ClientSecret = data.ClientSecret;
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
// 添加jwt授权
|
||||
authenticationBuilder.AddJwt();
|
||||
|
||||
@@ -371,13 +384,6 @@ public class Startup : AppStartup
|
||||
app.UseStaticFiles(new StaticFileOptions { ContentTypeProvider = provider });
|
||||
app.UseStaticFiles();
|
||||
|
||||
app.Use(async (context, next) =>
|
||||
{
|
||||
context.Response.Headers.Append("ThingsGateway", "ThingsGateway");
|
||||
await next().ConfigureAwait(false);
|
||||
});
|
||||
|
||||
|
||||
// 特定文件类型(文件后缀)处理
|
||||
var contentTypeProvider = GetFileExtensionContentTypeProvider();
|
||||
// contentTypeProvider.Mappings[".文件后缀"] = "MIME 类型";
|
||||
|
||||
@@ -101,6 +101,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThingsGateway.UpgradeServer
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThingsGateway.Plugin.Synchronization", "Plugin\ThingsGateway.Plugin.Synchronization\ThingsGateway.Plugin.Synchronization.csproj", "{438B86D4-0CAE-DCC3-E952-90CE77BB8661}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ThingsGateway.SqlSugar", "Admin\ThingsGateway.SqlSugar\ThingsGateway.SqlSugar.csproj", "{544EDA9F-978F-84F7-48BF-FA5888F52FFB}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@@ -267,6 +269,10 @@ Global
|
||||
{438B86D4-0CAE-DCC3-E952-90CE77BB8661}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{438B86D4-0CAE-DCC3-E952-90CE77BB8661}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{438B86D4-0CAE-DCC3-E952-90CE77BB8661}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{544EDA9F-978F-84F7-48BF-FA5888F52FFB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{544EDA9F-978F-84F7-48BF-FA5888F52FFB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{544EDA9F-978F-84F7-48BF-FA5888F52FFB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{544EDA9F-978F-84F7-48BF-FA5888F52FFB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
@@ -310,10 +316,11 @@ Global
|
||||
{7D5E01DE-D6D7-E45D-58FD-E01B38A312B2} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
|
||||
{29DCAC9C-2D0F-E251-E907-F07D804CA117} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
|
||||
{438B86D4-0CAE-DCC3-E952-90CE77BB8661} = {36510D70-161F-4241-B8D0-781E21032816}
|
||||
{544EDA9F-978F-84F7-48BF-FA5888F52FFB} = {72C65578-92A5-4E99-9779-27835B12B32F}
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
RESX_Rules = {"EnabledRules":[]}
|
||||
RESX_NeutralResourcesLanguage = zh-Hans
|
||||
SolutionGuid = {199B1B96-4F56-4828-9531-813BA02DB282}
|
||||
RESX_NeutralResourcesLanguage = zh-Hans
|
||||
RESX_Rules = {"EnabledRules":[]}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
||||
@@ -11,8 +11,6 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
|
||||
namespace ThingsGateway.Upgrade;
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -12,16 +12,10 @@
|
||||
|
||||
#pragma warning disable CA2007 // 考虑对等待的任务调用 ConfigureAwait
|
||||
|
||||
using BootstrapBlazor.Components;
|
||||
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.Extensions.Localization;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.Admin.Razor;
|
||||
using ThingsGateway.Extension;
|
||||
|
||||
namespace ThingsGateway.UpgradeServer;
|
||||
|
||||
|
||||
|
||||
@@ -13,8 +13,6 @@ using Microsoft.Extensions.Localization;
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
|
||||
namespace ThingsGateway.UpgradeServer;
|
||||
|
||||
public partial class AccessDenied
|
||||
|
||||
@@ -9,10 +9,6 @@
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#pragma warning disable CA2007 // 考虑对等待的任务调用 ConfigureAwait
|
||||
using BootstrapBlazor.Components;
|
||||
|
||||
using Mapster;
|
||||
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.AspNetCore.Components.Forms;
|
||||
using Microsoft.Extensions.Localization;
|
||||
@@ -20,11 +16,6 @@ using Microsoft.Extensions.Options;
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.DataEncryption;
|
||||
using ThingsGateway.NewLife.Extension;
|
||||
using ThingsGateway.Razor;
|
||||
|
||||
namespace ThingsGateway.UpgradeServer;
|
||||
|
||||
public partial class Login
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
<CultureChooser />
|
||||
</div>
|
||||
|
||||
<Logout ImageUrl="@(AppContext.CurrentUser.Avatar??$"{WebsiteConst.DefaultResourceUrl}images/defaultUser.svg")" ShowUserName=false DisplayName="@UserManager.UserAccount" UserName="@UserManager.VerificatId.ToString()" PrefixUserNameText=@AdminLocalizer["CurrentVerificat"]>
|
||||
<Logout ImageUrl="@(AppContext.Avatar??$"{WebsiteConst.DefaultResourceUrl}images/defaultUser.svg")" ShowUserName=false DisplayName="@UserManager.UserAccount" UserName="@UserManager.VerificatId.ToString()" PrefixUserNameText=@AdminLocalizer["CurrentVerificat"]>
|
||||
<LinkTemplate>
|
||||
<a href=@("/") class="h6"><i class="fa-solid fa-suitcase me-2"></i>@Localizer["系统首页"]</a>
|
||||
|
||||
|
||||
@@ -9,57 +9,18 @@
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
#pragma warning disable CA2007 // 考虑对等待的任务调用 ConfigureAwait
|
||||
using BootstrapBlazor.Components;
|
||||
|
||||
using Microsoft.AspNetCore.Components;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
using System.Diagnostics.CodeAnalysis;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.Admin.Razor;
|
||||
using ThingsGateway.Razor;
|
||||
|
||||
namespace ThingsGateway.UpgradeServer;
|
||||
|
||||
public partial class MainLayout : IDisposable
|
||||
{
|
||||
[Inject]
|
||||
IStringLocalizer<ThingsGateway.Razor._Imports> RazorLocalizer { get; set; }
|
||||
private Task OnRefresh(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
_tab.Refresh(tabItem);
|
||||
}
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private async Task OnClose(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
await _tab.RemoveTab(tabItem);
|
||||
}
|
||||
}
|
||||
|
||||
private Task OnCloseOther(ContextMenuItem item, object? context)
|
||||
{
|
||||
if (context is TabItem tabItem)
|
||||
{
|
||||
_tab.ActiveTab(tabItem);
|
||||
}
|
||||
_tab.CloseOtherTabs();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
private Task OnCloseAll(ContextMenuItem item, object? context)
|
||||
{
|
||||
_tab.CloseAllTabs();
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#region 全局通知
|
||||
|
||||
@@ -13,8 +13,6 @@ using Microsoft.AspNetCore.ResponseCompression;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Text;
|
||||
|
||||
using ThingsGateway.NewLife.Log;
|
||||
|
||||
|
||||
namespace ThingsGateway.UpgradeServer;
|
||||
|
||||
|
||||
@@ -41,6 +41,7 @@ public class SingleFilePublish : ISingleFilePublish
|
||||
"ThingsGateway.Razor",
|
||||
"ThingsGateway.Admin.Razor" ,
|
||||
"ThingsGateway.Admin.Application",
|
||||
"ThingsGateway.SqlSugar",
|
||||
|
||||
"ThingsGateway.Foundation.Razor" ,
|
||||
"ThingsGateway.UpgradeServer" ,
|
||||
|
||||
@@ -18,17 +18,11 @@ using Microsoft.AspNetCore.StaticFiles;
|
||||
using Microsoft.Extensions.Localization;
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
using Newtonsoft.Json;
|
||||
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using System.Text;
|
||||
using System.Text.Encodings.Web;
|
||||
using System.Text.Unicode;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
using ThingsGateway.Admin.Razor;
|
||||
using ThingsGateway.Extension;
|
||||
|
||||
namespace ThingsGateway.UpgradeServer;
|
||||
|
||||
[AppStartup(-99999)]
|
||||
@@ -366,12 +360,6 @@ public class Startup : AppStartup
|
||||
app.UseStaticFiles(new StaticFileOptions { ContentTypeProvider = provider });
|
||||
app.UseStaticFiles();
|
||||
|
||||
app.Use(async (context, next) =>
|
||||
{
|
||||
context.Response.Headers.Append("ThingsGateway", "ThingsGateway");
|
||||
await next().ConfigureAwait(false);
|
||||
});
|
||||
|
||||
|
||||
// 特定文件类型(文件后缀)处理
|
||||
var contentTypeProvider = GetFileExtensionContentTypeProvider();
|
||||
|
||||
@@ -10,8 +10,6 @@
|
||||
|
||||
using System.Reflection;
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
|
||||
namespace ThingsGateway.Upgrade;
|
||||
|
||||
[AppStartup(100000000)]
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
namespace ThingsGateway.Upgrade;
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -8,8 +8,6 @@
|
||||
// QQ群:605534569
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using ThingsGateway.Admin.Application;
|
||||
|
||||
namespace ThingsGateway.Upgrade;
|
||||
|
||||
/// <summary>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<Version>10.6.32</Version>
|
||||
<Version>10.7.14</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user