Files
ThingsGateway/src/Gateway/ThingsGateway.Gateway.Application/Services/RulesEngine/Services/RulesService.cs
2248356998 qq.com 9ea9529a5f 10.11.19
2025-08-29 15:43:02 +08:00

131 lines
5.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------------------------
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
// 此代码版权除特别声明外的代码归作者本人Diego所有
// 源代码使用协议遵循本仓库的开源协议及附加协议
// Gitee源代码仓库https://gitee.com/diego2098/ThingsGateway
// Github源代码仓库https://github.com/kimdiego2098/ThingsGateway
// 使用文档https://thingsgateway.cn/
// QQ群605534569
//------------------------------------------------------------------------------
using BootstrapBlazor.Components;
using System.Data;
using ThingsGateway.Extension.Generic;
using TouchSocket.Core;
namespace ThingsGateway.Gateway.Application;
internal sealed class RulesService : BaseService<Rules>, IRulesService
{
private IRulesEngineHostedService _rulesEngineHostedService;
private IRulesEngineHostedService RulesEngineHostedService
{
get
{
if (_rulesEngineHostedService == null)
{
_rulesEngineHostedService = App.GetService<IRulesEngineHostedService>();
}
return _rulesEngineHostedService;
}
}
[OperDesc("ClearRules", localizerType: typeof(Rules))]
public async Task ClearRulesAsync()
{
var dataScope = await GlobalData.SysUserService.GetCurrentUserDataScopeAsync().ConfigureAwait(false);
using var db = GetDB();
var data = (await GetAllRulesAsync().ConfigureAwait(false))
.WhereIf(dataScope != null && dataScope?.Count > 0, u => dataScope.Contains(u.CreateOrgId))//在指定机构列表查询
.WhereIf(dataScope?.Count == 0, u => u.CreateUserId == UserManager.UserId)
.Select(a => a.Id).ToList();
await db.Deleteable<Rules>(a => data.Contains(a.Id)).ExecuteCommandAsync().ConfigureAwait(false);
DeleteRulesFromCache();
await RulesEngineHostedService.DeleteRuleRuntimesAsync(data).ConfigureAwait(false);
}
[OperDesc("DeleteRules", localizerType: typeof(Rules))]
public async Task<bool> DeleteRulesAsync(List<long> ids)
{
using var db = GetDB();
var dataScope = await GlobalData.SysUserService.GetCurrentUserDataScopeAsync().ConfigureAwait(false);
await db.Deleteable<Rules>().Where(a => ids.ToHashSet().Contains(a.Id))
.WhereIF(dataScope != null && dataScope?.Count > 0, u => dataScope.Contains(u.CreateOrgId))//在指定机构列表查询
.WhereIF(dataScope?.Count == 0, u => u.CreateUserId == UserManager.UserId)
.ExecuteCommandAsync().ConfigureAwait(false);
DeleteRulesFromCache();
await RulesEngineHostedService.DeleteRuleRuntimesAsync(ids).ConfigureAwait(false);
return true;
}
private const string cacheKey = "ThingsGateway:Cache_RulesEngines:List";
/// <inheritdoc />
public void DeleteRulesFromCache()
{
App.CacheService.Remove(cacheKey);//删除通道缓存
}
/// <summary>
/// 从缓存/数据库获取全部信息
/// </summary>
/// <returns>列表</returns>
public async Task<List<Rules>> GetAllRulesAsync()
{
var channels = App.CacheService.Get<List<Rules>>(cacheKey);
if (channels == null)
{
using var db = GetDB();
channels = await db.Queryable<Rules>().ToListAsync().ConfigureAwait(false);
App.CacheService.Set(cacheKey, channels);
}
return channels;
}
/// <summary>
/// 报表查询
/// </summary>
/// <param name="option">查询条件</param>
/// <param name="filterKeyValueAction">查询条件</param>
public async Task<QueryData<Rules>> RulesPageAsync(QueryPageOptions option, FilterKeyValueAction filterKeyValueAction = null)
{
var dataScope = await GlobalData.SysUserService.GetCurrentUserDataScopeAsync().ConfigureAwait(false);
return await QueryAsync(option, a => a
.WhereIF(!option.SearchText.IsNullOrWhiteSpace(), a => a.Name.Contains(option.SearchText!))
.WhereIF(dataScope != null && dataScope?.Count > 0, u => dataScope.Contains(u.CreateOrgId))//在指定机构列表查询
.WhereIF(dataScope?.Count == 0, u => u.CreateUserId == UserManager.UserId)
, filterKeyValueAction).ConfigureAwait(false);
}
/// <summary>
/// 保存通道
/// </summary>
/// <param name="input">通道</param>
/// <param name="type">保存类型</param>
[OperDesc("SaveRules", localizerType: typeof(Rules))]
public async Task<bool> SaveRulesAsync(Rules input, ItemChangedType type)
{
//验证
CheckInput(input);
if (type == ItemChangedType.Update)
await GlobalData.SysUserService.CheckApiDataScopeAsync(input.CreateOrgId, input.CreateUserId).ConfigureAwait(false);
if (await base.SaveAsync(input, type).ConfigureAwait(false))
{
DeleteRulesFromCache();
await RulesEngineHostedService.EditRuleRuntimesAsync(input).ConfigureAwait(false);
return true;
}
return false;
}
private static void CheckInput(Rules input)
{
}
}