You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

203 lines
6.8 KiB

2 years ago
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;
using GDZZ.Core.Service;
using System.Collections.Generic;
2 years ago
namespace GDZZ.Application
{
/// <summary>
/// 基础用户服务
/// </summary>
[ApiDescriptionSettings("Application",Name = "BaseUser", Order = 1)]
public class BaseUserService : IBaseUserService, IDynamicApiController, ITransient
{
private readonly SqlSugarRepository<BaseUser> _rep;
2 years ago
private readonly SqlSugarRepository<SeIF> Self; //职业仓储
private readonly SqlSugarRepository<SysPos> SysPosRep;//职位查询
private readonly SqlSugarRepository<SysUser> _sysUserRep; // 用户表仓储
2 years ago
private readonly SqlSugarRepository<OnlineUser> _sysOnlineUerRep; // 在线用户表仓储
//服务
private readonly ISysEmpService _sysEmpService;
2 years ago
2 years ago
public BaseUserService(SqlSugarRepository<BaseUser> rep,
SqlSugarRepository<SeIF> Self,
SqlSugarRepository<SysPos> SysPosRep,ISysEmpService _sysEmpService,
2 years ago
SqlSugarRepository<OnlineUser> _sysOnlineUerRep,
SqlSugarRepository<SysUser> _sysUserRep)
2 years ago
{
_rep = rep;
2 years ago
this.Self= Self;
this._sysEmpService = _sysEmpService;
this.SysPosRep = SysPosRep;
2 years ago
this._sysUserRep = _sysUserRep;
this._sysOnlineUerRep= _sysOnlineUerRep;
2 years ago
}
/// <summary>
/// 更新基础用户
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[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);
2 years ago
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;
2 years ago
user.Describe = input.Describe;
sysuser.Avatar = input.AvatarUrl;
2 years ago
sysuser.Sex = input.Sex;
await this._sysUserRep.AsUpdateable(sysuser).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
await this._rep.AsUpdateable(user).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
}
2 years ago
/// <summary>
/// 获取教师列表
/// </summary>
/// <returns></returns>
[HttpGet("/Mini/BaseUser/GetTeacherList")]
public async Task<dynamic> GetTeacherList()
2 years ago
{
List<UserOutput> userls = new List<UserOutput>();
var users = await this._sysUserRep.AsQueryable().Filter("TenantId", true)
.LeftJoin<OnlineUser>((u, o) => u.Id == o.UserId)
.Where((u, o) => u.AdminType == AdminType.None)
.Select((u, o) => new UserOutput
{
Account = u.Account,
Avatar = u.Avatar,
Birthday = u.Birthday,
Email = u.Email,
Id = u.Id.ToString(),
Name = u.Name,
NickName = u.NickName,
Phone = u.Phone,
Sex = (int)u.Sex,
Status = (int)u.Status,
Tel = u.Tel,
TenantId = u.TenantId,
ConnectionId = o.ConnectionId,
Profile = u.Profile
})
.ToListAsync();
foreach (var user in users)
{
var userDto = user.Adapt<UserOutput>();
userDto.SysEmpInfo = await _sysEmpService.GetEmpTSInfo(long.Parse(user.Id));
if(!userDto.SysEmpInfo.Positions.Count.IsNullOrZero())
userls.Add(userDto);
}
return userls;
2 years ago
}
2 years ago
/// <summary>
/// 分页查询基础用户
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpGet("/BaseUser/page")]
public async Task<dynamic> 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();
}
/// <summary>
/// 增加基础用户
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpPost("/BaseUser/add")]
public async Task Add(AddBaseUserInput input)
{
var entity = input.Adapt<BaseUser>();
await _rep.InsertAsync(entity);
}
/// <summary>
/// 删除基础用户
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpPost("/BaseUser/delete")]
public async Task Delete(DeleteBaseUserInput input)
{
var entity = await _rep.FirstOrDefaultAsync(u => u.Id == input.Id);
await _rep.DeleteAsync(entity);
}
/// <summary>
/// 获取基础用户
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpGet("/BaseUser/detail")]
public async Task<BaseUser> Get([FromQuery] QueryeBaseUserInput input)
{
return await _rep.FirstOrDefaultAsync(u => u.Id == input.Id);
}
/// <summary>
/// 获取基础用户列表
/// </summary>
/// <param name="input"></param>
/// <returns></returns>
[HttpGet("/BaseUser/list")]
public async Task<dynamic> List([FromQuery] BaseUserInput input)
{
return await _rep.ToListAsync();
}
2 years ago
2 years ago
}
}