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 Self; //职业仓储 private readonly SqlSugarRepository _sysUserRep; // 用户表仓储 private readonly SqlSugarRepository _sysOnlineUerRep; // 在线用户表仓储 public BaseUserService(SqlSugarRepository rep, SqlSugarRepository Self, SqlSugarRepository _sysOnlineUerRep, SqlSugarRepository _sysUserRep) { _rep = rep; this.Self= Self; this._sysUserRep = _sysUserRep; this._sysOnlineUerRep= _sysOnlineUerRep; } /// /// 更新基础用户 /// /// /// [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); var Self = await this.Self.FirstOrDefaultAsync(x => x.CreatedUserId == sysuser.Id); if(Self.IsEmpty()) { await this.Self.InsertAsync(new SeIF { Name = input.Self, }); } else { Self.Name = input.Self; await this.Self.AsUpdateable(Self).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync(); } user.AvatarUrl = input.AvatarUrl; user.Describe = input.Describe; sysuser.Avatar = input.AvatarUrl; sysuser.Sex = input.Sex; await this._sysUserRep.AsUpdateable(sysuser).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync(); await this._rep.AsUpdateable(user).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync(); } /// /// 获取教师列表 /// /// [HttpGet("/Mini/BaseUser/list")] public async Task TeacherList() { var thls = await this._sysUserRep.AsQueryable() .InnerJoin((u, r) => u.Id == r.UserId) .Where(u => u.AdminType == AdminType.None) .ToListAsync(); //var user = await _sysOnlineUerRep.AsQueryable() // .Filter("TenantId", true) // .Where(m => m.UserId == entity.OtherUserID).OrderByDescending(x => x.LastTime).FirstAsync(); return null; } /// /// 分页查询基础用户 /// /// /// [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(); } } }