using GDZZ.Core;
using Furion.DependencyInjection;
using Furion.DynamicApiController;
using Mapster;
using Microsoft.AspNetCore.Mvc;
using SqlSugar;
using System.Linq;
using System.Threading.Tasks;
using GDZZ.Application.Entity;
using Microsoft.Extensions.Options;
using GDZZ.Core.Entity;
using System.Threading;
using Furion.FriendlyException;
namespace GDZZ.Application
{
///
/// 基础用户服务
///
[ApiDescriptionSettings("Application",Name = "BaseUser", Order = 1)]
public class BaseUserService : IBaseUserService, IDynamicApiController, ITransient
{
private readonly SqlSugarRepository _rep;
private readonly SqlSugarRepository _sysUserRep; // 用户表仓储
///
/// 获取配置文件
///
private readonly ThirdParty _oauthConfig;
public BaseUserService(SqlSugarRepository rep, SqlSugarRepository _sysUserRep)
{
_rep = rep;
this._sysUserRep= _sysUserRep;
}
///
/// 更新基础用户
///
///
///
[HttpPost("/Mini/User/edit")]
public async Task Update(UpdateBaseUserInput input)
{
//后台系统用户
var sysuser = await this._sysUserRep.SingleAsync(x => x.Id == UserManager.UserId);
if (sysuser == null)
{
throw Oops.Oh("修改失败!", sysuser);
}
var user = this._rep.AsQueryable()
.Filter("TenantId", true)
.First(x => x.CreatedUserId == UserManager.UserId);
user.AvatarUrl = input.AvatarUrl;
sysuser.Avatar = input.AvatarUrl;
await this._sysUserRep.AsUpdateable(sysuser).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
await this._rep.AsUpdateable(user).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
}
///
/// 分页查询基础用户
///
///
///
[HttpGet("/BaseUser/page")]
public async Task Page([FromQuery] BaseUserInput input)
{
var entities = await _rep.AsQueryable()
.WhereIF(!string.IsNullOrWhiteSpace(input.UserName), u => u.UserName.Contains(input.UserName.Trim()))
.ToPagedListAsync(input.PageNo, input.PageSize);
return entities.XnPagedResult();
}
///
/// 增加基础用户
///
///
///
[HttpPost("/BaseUser/add")]
public async Task Add(AddBaseUserInput input)
{
var entity = input.Adapt();
await _rep.InsertAsync(entity);
}
///
/// 删除基础用户
///
///
///
[HttpPost("/BaseUser/delete")]
public async Task Delete(DeleteBaseUserInput input)
{
var entity = await _rep.FirstOrDefaultAsync(u => u.Id == input.Id);
await _rep.DeleteAsync(entity);
}
///
/// 获取基础用户
///
///
///
[HttpGet("/BaseUser/detail")]
public async Task Get([FromQuery] QueryeBaseUserInput input)
{
return await _rep.FirstOrDefaultAsync(u => u.Id == input.Id);
}
///
/// 获取基础用户列表
///
///
///
[HttpGet("/BaseUser/list")]
public async Task List([FromQuery] BaseUserInput input)
{
return await _rep.ToListAsync();
}
}
}