* Fixed NullReferenceException: Addressed a crash in JwtSecurityTokenHandler under .NET 9 caused by internal changes in cryptographic primitives and claim handling. * Migrated JWT Handling: Updated Jwt.CreateToken to use JsonWebTokenHandler with SecurityTokenDescriptor. The method now returns a string directly (formerly JwtSecurityToken). * Configured AddJwtBearer with UseSecurityTokenValidators = false to ensure end-to-end consistency using JsonWebTokenHandler. * Updated AutoMapper: Adjusted the instantiation signature to include a null logger following the upgrade from v13 to v15 (required to patch a CodeQL security vulnerability). Resolved high-severity DoS vulnerability GHSA-rvv3-g6hj-g44x (uncontrolled recursion) and fixed the new instantiation signature requiring a null logger.
171 lines
7.7 KiB
C#
171 lines
7.7 KiB
C#
/* Copyright (C) 2022-present Jube Holdings Limited.
|
|
*
|
|
* This file is part of Jube™ software.
|
|
*
|
|
* Jube™ is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License
|
|
* as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
|
|
* Jube™ is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU Affero General Public License along with Jube™. If not,
|
|
* see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
namespace Jube.Data.Repository
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using AutoMapper;
|
|
using Context;
|
|
using LinqToDB;
|
|
using Microsoft.Extensions.Logging.Abstractions;
|
|
using Poco;
|
|
|
|
public class EntityAnalysisModelSanctionRepository
|
|
{
|
|
private readonly DbContext dbContext;
|
|
private readonly int? tenantRegistryId;
|
|
private readonly string userName;
|
|
|
|
public EntityAnalysisModelSanctionRepository(DbContext dbContext, string userName)
|
|
{
|
|
this.dbContext = dbContext;
|
|
this.userName = userName;
|
|
tenantRegistryId = this.dbContext.UserInTenant.Where(w => w.User == this.userName)
|
|
.Select(s => s.TenantRegistryId).FirstOrDefault();
|
|
}
|
|
|
|
public EntityAnalysisModelSanctionRepository(DbContext dbContext, int tenantRegistryId)
|
|
{
|
|
this.dbContext = dbContext;
|
|
this.tenantRegistryId = tenantRegistryId;
|
|
}
|
|
|
|
public EntityAnalysisModelSanctionRepository(DbContext dbContext)
|
|
{
|
|
this.dbContext = dbContext;
|
|
}
|
|
|
|
public Task<EntityAnalysisModelSanction> GetByNameEntityAnalysisModelIdAsync(string name, int entityAnalysisModelId, CancellationToken token = default)
|
|
{
|
|
return dbContext.EntityAnalysisModelSanction
|
|
.FirstOrDefaultAsync(f =>
|
|
f.EntityAnalysisModel.TenantRegistryId == tenantRegistryId
|
|
&& f.EntityAnalysisModelId == entityAnalysisModelId
|
|
&& (f.Deleted == 0 || f.Deleted == null)
|
|
&& f.Name.ToLower() == name.ToLower(), token);
|
|
}
|
|
|
|
public async Task<IEnumerable<EntityAnalysisModelSanction>> GetAsync(CancellationToken token = default)
|
|
{
|
|
return await dbContext.EntityAnalysisModelSanction
|
|
.Where(w => w.EntityAnalysisModel.TenantRegistryId == tenantRegistryId || !tenantRegistryId.HasValue)
|
|
.ToListAsync(token);
|
|
}
|
|
|
|
public async Task<IEnumerable<EntityAnalysisModelSanction>> GetByEntityAnalysisModelIdOrderByIdAsync(int entityAnalysisModelId, CancellationToken token = default)
|
|
{
|
|
return await dbContext.EntityAnalysisModelSanction
|
|
.Where(w =>
|
|
(w.EntityAnalysisModel.TenantRegistryId == tenantRegistryId || !tenantRegistryId.HasValue)
|
|
&& w.EntityAnalysisModel.Id == entityAnalysisModelId
|
|
&& (w.Deleted == 0 || w.Deleted == null)
|
|
&& (w.EntityAnalysisModel.Deleted == 0 || w.EntityAnalysisModel.Deleted == null))
|
|
.OrderBy(o => o.Id).ToListAsync(token).ConfigureAwait(false);
|
|
}
|
|
|
|
public async Task<IEnumerable<EntityAnalysisModelSanction>> GetByEntityAnalysisModelIdOrderByNameAsync(int entityAnalysisModelId, CancellationToken token = default)
|
|
{
|
|
return await dbContext.EntityAnalysisModelSanction
|
|
.Where(w =>
|
|
(w.EntityAnalysisModel.TenantRegistryId == tenantRegistryId || !tenantRegistryId.HasValue)
|
|
&& w.EntityAnalysisModel.Id == entityAnalysisModelId
|
|
&& (w.Deleted == 0 || w.Deleted == null)
|
|
&& (w.EntityAnalysisModel.Deleted == 0 || w.EntityAnalysisModel.Deleted == null))
|
|
.OrderBy(o => o.Name).ToListAsync(token).ConfigureAwait(false);
|
|
}
|
|
|
|
public Task<EntityAnalysisModelSanction> GetByIdAsync(int id, CancellationToken token = default)
|
|
{
|
|
return dbContext.EntityAnalysisModelSanction.FirstOrDefaultAsync(w =>
|
|
(w.EntityAnalysisModel.TenantRegistryId == tenantRegistryId || !tenantRegistryId.HasValue)
|
|
&& w.Id == id && (w.Deleted == 0 || w.Deleted == null), token);
|
|
}
|
|
|
|
public async Task<EntityAnalysisModelSanction> InsertAsync(EntityAnalysisModelSanction model, CancellationToken token = default)
|
|
{
|
|
model.CreatedUser = userName ?? model.CreatedUser;
|
|
model.Guid = model.Guid == Guid.Empty ? Guid.NewGuid() : model.Guid;
|
|
model.CreatedDate = DateTime.Now;
|
|
model.Version = 1;
|
|
model.Id = await dbContext.InsertWithInt32IdentityAsync(model, token: token);
|
|
return model;
|
|
}
|
|
|
|
public async Task<EntityAnalysisModelSanction> UpdateAsync(EntityAnalysisModelSanction model, CancellationToken token = default)
|
|
{
|
|
var existing = await dbContext.EntityAnalysisModelSanction
|
|
.FirstOrDefaultAsync(w => w.Id
|
|
== model.Id
|
|
&& (w.Deleted == 0 || w.Deleted == null)
|
|
&& (w.Locked == 0 || w.Locked == null), token);
|
|
|
|
if (existing == null)
|
|
{
|
|
throw new KeyNotFoundException();
|
|
}
|
|
|
|
model.Version = existing.Version + 1;
|
|
model.Guid = existing.Guid;
|
|
model.CreatedUser = userName;
|
|
model.CreatedDate = DateTime.Now;
|
|
|
|
await dbContext.UpdateAsync(model, token: token);
|
|
|
|
var mapper = new Mapper(new MapperConfiguration(cfg =>
|
|
{
|
|
cfg.CreateMap<EntityAnalysisModelSanction, EntityAnalysisModelSanctionVersion>();
|
|
}, NullLoggerFactory.Instance));
|
|
|
|
var audit = mapper.Map<EntityAnalysisModelSanctionVersion>(existing);
|
|
audit.EntityAnalysisModelSanctionId = existing.Id;
|
|
|
|
await dbContext.InsertAsync(audit, token: token);
|
|
|
|
return model;
|
|
}
|
|
|
|
public async Task DeleteAsync(int id, CancellationToken token = default)
|
|
{
|
|
var records = await dbContext.EntityAnalysisModelSanction
|
|
.Where(d => (d.EntityAnalysisModel.TenantRegistryId == tenantRegistryId || !tenantRegistryId.HasValue)
|
|
&& d.Id == id
|
|
&& (d.Locked == 0 || d.Locked == null)
|
|
&& (d.Deleted == 0 || d.Deleted == null))
|
|
.Set(s => s.Deleted, Convert.ToByte(1))
|
|
.Set(s => s.DeletedDate, DateTime.Now)
|
|
.Set(s => s.DeletedUser, userName)
|
|
.UpdateAsync(token);
|
|
|
|
if (records == 0)
|
|
{
|
|
throw new KeyNotFoundException();
|
|
}
|
|
}
|
|
|
|
public Task DeleteByTenantRegistryIdOutsideOfInstanceAsync(int tenantRegistryIdOutsideOfInstance, int importId, CancellationToken token = default)
|
|
{
|
|
return dbContext.EntityAnalysisModelSanction
|
|
.Where(d => d.EntityAnalysisModel.TenantRegistryId == tenantRegistryIdOutsideOfInstance
|
|
&& (d.Deleted == 0 || d.Deleted == null))
|
|
.Set(s => s.ImportId, importId)
|
|
.Set(s => s.Deleted, Convert.ToByte(1))
|
|
.Set(s => s.DeletedDate, DateTime.Now)
|
|
.UpdateAsync(token);
|
|
}
|
|
}
|
|
}
|