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.
 
 

342 lines
16 KiB

using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using System;
using System.IO;
using System.Runtime.InteropServices;
using System.Threading.Tasks;
using Znyc.Cloudcar.Admin.AspNetCore.Controllers;
using Znyc.Cloudcar.Admin.AspNetCore.Entitys;
using Znyc.Cloudcar.Admin.AspNetCore.Mvc;
using Znyc.Cloudcar.Admin.AspNetCore.Mvc.Filter;
using Znyc.Cloudcar.Admin.Commons;
using Znyc.Cloudcar.Admin.Commons.Cache;
using Znyc.Cloudcar.Admin.Commons.Encrypt;
using Znyc.Cloudcar.Admin.Commons.Entitys;
using Znyc.Cloudcar.Admin.Commons.Extend;
using Znyc.Cloudcar.Admin.Commons.Helpers;
using Znyc.Cloudcar.Admin.Commons.Json;
using Znyc.Cloudcar.Admin.Commons.Log;
using Znyc.Cloudcar.Admin.Commons.Mapping;
using Znyc.Cloudcar.Admin.Security.Dtos;
using Znyc.Cloudcar.Admin.Security.Entitys;
using Znyc.Cloudcar.Admin.Security.IRepositories;
using Znyc.Cloudcar.Admin.Security.IServices;
using Znyc.Cloudcar.Admin.WebApi.Areas.Security.Entitys;
namespace Znyc.Cloudcar.Admin.WebApi.Areas.Security
{
/// <summary>
/// 系统基本信息
/// </summary>
[Route("api/Security/[controller]")]
[ApiController]
public class SysSettingController : ApiController
{
private readonly IAdminUserService _adminUserService;
private readonly IApplyJobService _applyJobService;
private readonly IAPPService _aPPService;
private readonly IWebHostEnvironment _hostingEnvironment;
private readonly ILoginLogsRepository _loginLogsRepository;
private readonly ILoginLogsService _loginLogsService;
private readonly IMenuService _menuService;
private readonly IOrderService _orderService;
private readonly ICloudcarService _CloudcarService;
private readonly IRoleService _roleService;
private readonly IStatisticalService _statisticalService;
private readonly IUserService _userService;
private readonly ICertificationRepository _certificationRepository;
private readonly IEquipmentService _equipmentService;
/// <summary>
/// </summary>
/// <param name="hostingEnvironment"></param>
/// <param name="adminUserService"></param>
/// <param name="menuService"></param>
/// <param name="roleService"></param>
/// <param name="userService"></param>
/// <param name="CloudcarService"></param>
/// <param name="applyJobService"></param>
/// <param name="loginLogsService"></param>
/// <param name="loginLogsRepository"></param>
/// <param name="statisticalService"></param>
/// <param name="orderService"></param>
/// <param name="aPPService"></param>
public SysSettingController(IWebHostEnvironment hostingEnvironment,
IAdminUserService adminUserService,
IMenuService menuService,
IRoleService roleService,
IUserService userService,
ICloudcarService CloudcarService,
IApplyJobService applyJobService,
ILoginLogsService loginLogsService,
ILoginLogsRepository loginLogsRepository,
IStatisticalService statisticalService,
IOrderService orderService,
ICertificationRepository certificationRepository,
IAPPService aPPService,
IEquipmentService equipmentService)
{
_hostingEnvironment = hostingEnvironment;
_adminUserService = adminUserService;
_menuService = menuService;
_roleService = roleService;
_aPPService = aPPService;
_userService = userService;
_CloudcarService = CloudcarService;
_applyJobService = applyJobService;
_loginLogsService = loginLogsService;
_loginLogsRepository = loginLogsRepository;
_statisticalService = statisticalService;
_orderService = orderService;
_certificationRepository = certificationRepository;
_equipmentService = equipmentService;
}
/// <summary>
/// 获取系统信息
/// </summary>
/// <returns></returns>
[HttpGet("GetSysInfo")]
[FunctionAuthorize("GetSysInfo")]
public async Task<IActionResult> GetSysInfo()
{
CommonResult result = new CommonResult();
try
{
SysSettingEntity sysSetting = XmlConverter.Deserialize<SysSettingEntity>("xmlconfig/sys.config");
CacheHelper cacheHelper = new CacheHelper();
cacheHelper.Add("SysSetting", sysSetting);
DashboardOutModel dashboardOutModel = new DashboardOutModel
{
CertificatedCompany = sysSetting.CompanyName,
WebUrl = sysSetting.WebUrl,
Title = sysSetting.SoftName,
MachineName = Environment.MachineName,
ProcessorCount = Environment.ProcessorCount,
SystemPageSize = Environment.SystemPageSize,
WorkingSet = Environment.WorkingSet,
TickCount = Environment.TickCount,
RunTimeLength = (Environment.TickCount / 1000).ToBrowseTime(),
FrameworkDescription = RuntimeInformation.FrameworkDescription,
OSName = RuntimeInformation.IsOSPlatform(OSPlatform.Linux) ? "Linux" :
RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? "OSX" : "Windows",
OSDescription =
RuntimeInformation.OSDescription + " " + RuntimeInformation.OSArchitecture,
OSArchitecture = RuntimeInformation.OSArchitecture.ToString(),
ProcessArchitecture = RuntimeInformation.ProcessArchitecture.ToString(),
Directory = AppContext.BaseDirectory
};
Version version = Environment.Version;
dashboardOutModel.SystemVersion = version.Major + "." + version.Minor + "." + version.Build;
dashboardOutModel.Version = AppVersionHelper.Version;
dashboardOutModel.Manufacturer = AppVersionHelper.Manufacturer;
dashboardOutModel.WebSite = AppVersionHelper.WebSite;
dashboardOutModel.UpdateUrl = AppVersionHelper.UpdateUrl;
dashboardOutModel.IPAdress = Request.HttpContext.Connection.LocalIpAddress.ToString();
dashboardOutModel.Port = Request.HttpContext.Connection.LocalPort.ToString();
dashboardOutModel.TotalUser = await _adminUserService.GetCountByWhereAsync("1=1");
dashboardOutModel.TotalModule = await _menuService.GetCountByWhereAsync("1=1");
dashboardOutModel.TotalRole = await _roleService.GetCountByWhereAsync("1=1");
result.ResData = dashboardOutModel;
result.ErrCode = ErrCode.successCode;
}
catch (Exception ex)
{
Log4NetHelper.Error("获取系统信息异常", ex);
result.ErrMsg = ErrCode.err60001;
result.ErrCode = "60001";
}
return ToJsonContent(result);
}
/// <summary>
/// 首页统计数据
/// </summary>
/// <returns></returns>
[HttpGet("GetStatisticalDataInfo")]
[FunctionAuthorize("")]
public async Task<IActionResult> GetStatisticalDataInfo()
{
CommonResult result = new CommonResult();
try
{
StatisticalEntity statistical = await _statisticalService.GetStatisticalAsync();
StatisticalOutputDto statisticalData = new StatisticalOutputDto
{
//用户
UserSumTotal = await _userService.GetCount(),
UserAddTotal =
await _userService.GetCountByWhereAsync("date_format(CreatedTime,'%Y-%m-%d') = date_format(NOW(),'%Y-%m-%d')"),
ActiveUserTotal = await _loginLogsRepository.GetActiveUserTotal()
};
//收入
dynamic todayIncome = await _orderService.GetSumValueByFieldAsync("PaymentMoney",
"OrderStatus >= 20 and date_format(CreatedTime,'%Y-%m-%d') = date_format(NOW(),'%Y-%m-%d')");
dynamic income = await _orderService.GetSumValueByFieldAsync("PaymentMoney", "OrderStatus >= 20");
statisticalData.Income = income.sumVaule;
statisticalData.TodayIncome = todayIncome.sumVaule;
if (statistical == null)
{
statisticalData.UserAddTotalPercent = 0;
statisticalData.DayAddPercent = 0;
statisticalData.TodayIncomePercent = 0;
statisticalData.IncomeIncremental = statisticalData.TodayIncome;
statisticalData.IncomePercent = 0;
}
else
{
statisticalData.UserAddTotalPercent = statistical.UserAddTotalPercent;
//statisticalData.DayAddPercent = statistical.UserAddTotal!=0 ?
// (statisticalData.UserAddTotal - statistical.UserAddTotal) / statistical.UserAddTotal*100 : 0;
statisticalData.DayAddPercent =
StringHelper.GetPercent(statisticalData.UserAddTotal - statistical.UserAddTotal,
statistical.UserAddTotal);
//statisticalData.TodayIncomePercent =statistical.TodayIncome!=0 ?
// (todayIncome.sumVaule - statistical.TodayIncome) / statistical.TodayIncome * 100 : 0;
//statisticalData.IncomePercent =statistical.Income!=0 ? statistical.TodayIncome / statistical.Income * 100 : 0;
statisticalData.TodayIncomePercent =
StringHelper.GetPercent(todayIncome.sumVaule - statistical.TodayIncome,
statistical.TodayIncome);
statisticalData.IncomeIncremental = statisticalData.TodayIncome - statistical.TodayIncome;
statisticalData.IncomePercent =
StringHelper.GetPercent(statistical.TodayIncome, statistical.Income);
}
statisticalData.EquipmentTotal = await _equipmentService.GetCountByWhereAsync(" State=10");
//待审核
//statisticalData.ReviewApplyJobsTotal = await _equipmentService.GetCountByWhereAsync("State=0");
//statisticalData.ReviewCloudcarTotal = await _CloudcarService.GetCountByWhereAsync("State=0");
//statisticalData.ReviewCertificationTotal = await _certificationRepository.GetCountByWhereAsync("State=0");
//tatisticalData.ApplyJobsAddTotal = await _applyJobService.GetCountByWhereAsync("date_format(CreatedTime,'%Y-%m-%d') = date_format(NOW(),'%Y-%m-%d')");
//statisticalData.CloudcarAddTotal = await _CloudcarService.GetCountByWhereAsync("date_format(CreatedTime,'%Y-%m-%d') = date_format(NOW(),'%Y-%m-%d')");
result.ResData = statisticalData;
result.ErrCode = ErrCode.successCode;
}
catch (Exception ex)
{
Log4NetHelper.Error("获取系统信息异常", ex);
result.ErrMsg = ErrCode.err60001;
result.ErrCode = "60001";
}
return ToJsonContent(result);
}
/// <summary>
/// 获取系统基本信息不完整信息
/// </summary>
/// <returns></returns>
[HttpGet("GetInfo")]
[NoPermissionRequired]
public IActionResult GetInfo()
{
CommonResult result = new CommonResult();
CacheHelper cacheHelper = new CacheHelper();
SysSettingEntity sysSetting = cacheHelper.Get("SysSetting").ToJson().ToObject<SysSettingEntity>();
SysSettingOutputDto sysSettingOutputDto = new SysSettingOutputDto();
if (sysSetting == null)
{
sysSetting = XmlConverter.Deserialize<SysSettingEntity>("xmlconfig/sys.config");
}
sysSetting.Email = "";
sysSettingOutputDto = sysSetting.MapTo<SysSettingOutputDto>();
if (sysSettingOutputDto != null)
{
sysSettingOutputDto.CopyRight = UIConstants.CopyRight;
result.ResData = sysSettingOutputDto;
result.Success = true;
result.ErrCode = ErrCode.successCode;
}
else
{
result.ErrMsg = ErrCode.err60001;
result.ErrCode = "60001";
}
System.Collections.Generic.IEnumerable<APPEntity> appList = _aPPService.GetAllByIsNotDeleteAndEnabledMark();
cacheHelper.Add("AllowAppId", appList);
return ToJsonContent(result);
}
/// <summary>
/// 获取系统基本信息
/// </summary>
/// <returns></returns>
[HttpGet("GetAllInfo")]
[FunctionAuthorize("GetSysInfo")]
public IActionResult GetAllInfo()
{
CommonResult result = new CommonResult();
CacheHelper cacheHelper = new CacheHelper();
SysSettingEntity sysSetting = cacheHelper.Get("SysSetting").ToJson().ToObject<SysSettingEntity>();
SysSettingOutputDto sysSettingOutputDto = new SysSettingOutputDto();
if (sysSetting == null)
{
sysSetting = XmlConverter.Deserialize<SysSettingEntity>("xmlconfig/sys.config");
}
//对关键信息解密
if (!string.IsNullOrEmpty(sysSetting.Email))
{
sysSetting.Email = DEncrypt.Decrypt(sysSetting.Email);
}
sysSettingOutputDto = sysSetting.MapTo<SysSettingOutputDto>();
if (sysSettingOutputDto != null)
{
sysSettingOutputDto.CopyRight = UIConstants.CopyRight;
result.ResData = sysSettingOutputDto;
result.Success = true;
result.ErrCode = ErrCode.successCode;
}
else
{
result.ErrMsg = ErrCode.err60001;
result.ErrCode = "60001";
}
return ToJsonContent(result);
}
/// <summary>
/// 保存系统设置信息
/// </summary>
/// <returns></returns>
[HttpPost("Save")]
[FunctionAuthorize("Edit")]
public IActionResult Save(SysSettingEntity info)
{
CommonResult result = new CommonResult();
info.LocalPath = _hostingEnvironment.WebRootPath;
SysSettingEntity sysSetting = XmlConverter.Deserialize<SysSettingEntity>("xmlconfig/sys.config");
sysSetting = info;
//对关键信息加密
string uploadPath = _hostingEnvironment.WebRootPath + "/" + sysSetting.Filepath;
if (!Directory.Exists(uploadPath))
{
Directory.CreateDirectory(uploadPath);
}
CacheHelper cacheHelper = new CacheHelper();
if (cacheHelper.Exists("SysSetting"))
{
cacheHelper.Replace("SysSetting", sysSetting);
}
else
{
//写入缓存
cacheHelper.Add("SysSetting", sysSetting);
}
XmlConverter.Serialize(sysSetting, "xmlconfig/sys.config");
result.ErrCode = ErrCode.successCode;
return ToJsonContent(result);
}
}
}