feat(api): TemplateHistoryController
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
using AutoMapper;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using PARR.API.Contracts.V1.Responses;
|
||||
using PARR.Common.Domain;
|
||||
using PARR.DAL.Services.Interfaces;
|
||||
|
||||
namespace PARR.API.MappingProfiles.Resolvers
|
||||
{
|
||||
public class HistoryInitiatorParrComponentResolver : IValueResolver<IHistoryInitiator, HistoryInitiatorResponse, ParrComponentResponse?>
|
||||
{
|
||||
private readonly IParrComponentService parrComponentService;
|
||||
|
||||
public HistoryInitiatorParrComponentResolver(IParrComponentService parrComponentService)
|
||||
{
|
||||
this.parrComponentService = parrComponentService;
|
||||
}
|
||||
|
||||
public ParrComponentResponse? Resolve(IHistoryInitiator source, HistoryInitiatorResponse destination, ParrComponentResponse? destMember, ResolutionContext context)
|
||||
{
|
||||
var component = parrComponentService.Get().FirstOrDefaultAsync(t => t.Id == source.InitiatorParrComponentId).GetAwaiter().GetResult();
|
||||
|
||||
if (component == null)
|
||||
return null;
|
||||
|
||||
return new ParrComponentResponse { Description = component.Description, Name = component.Name, Id = (int)component.Id };
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using AutoMapper;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using PARR.API.Contracts.V1.Responses;
|
||||
using PARR.Common.Domain;
|
||||
using PARR.DAL.Services.Interfaces;
|
||||
|
||||
namespace PARR.API.MappingProfiles.Resolvers
|
||||
{
|
||||
public class HistoryInitiatorUserResolver : IValueResolver<IHistoryInitiator, HistoryInitiatorResponse, UserBaseResponse?>
|
||||
{
|
||||
private readonly IUserService userService;
|
||||
|
||||
public HistoryInitiatorUserResolver(IUserService userService)
|
||||
{
|
||||
this.userService = userService;
|
||||
}
|
||||
|
||||
public UserBaseResponse? Resolve(IHistoryInitiator source, HistoryInitiatorResponse destination, UserBaseResponse? destMember, ResolutionContext context)
|
||||
{
|
||||
var user = userService.Get().FirstOrDefaultAsync(t => t.Ip == source.InitiatorIp).GetAwaiter().GetResult();
|
||||
|
||||
if (user == null)
|
||||
return null;
|
||||
|
||||
return new UserBaseResponse { Ip = user.Ip, Description = user.Description ?? string.Empty, Name = user.Name };
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user