/* * 创客等级设定 */ using System; using System.Web; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; using MySystem.Models; using Library; using LitJson; using MySystemLib; namespace MySystem.Areas.Admin.Controllers { [Area("Admin")] [Route("Admin/[controller]/[action]")] public class UserLevelSetController : BaseController { public UserLevelSetController(IHttpContextAccessor accessor, ILogger logger, IOptions setting) : base(accessor, logger, setting) { OtherMySqlConn.connstr = ConfigurationManager.AppSettings["SqlConnStr"].ToString(); } #region 创客等级设定列表 /// /// 根据条件查询创客等级设定列表 /// /// public IActionResult Index(UserLevelSet data, string right) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; string Condition = ""; Condition += "Name:\"" + data.Name + "\","; if (!string.IsNullOrEmpty(Condition)) { Condition = Condition.TrimEnd(','); Condition = ", where: {" + Condition + "}"; } ViewBag.Condition = Condition; return View(); } #endregion #region 根据条件查询创客等级设定列表 /// /// 创客等级设定列表 /// /// public JsonResult IndexData(UserLevelSet data, int page = 1, int limit = 30) { Dictionary Fields = new Dictionary(); Fields.Add("Name", "2"); //等级名称 Dictionary obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("UserLevelSet", Fields, "Id desc", "False", page, limit); //List> diclist = obj["data"] as List>; //foreach (Dictionary dic in diclist) //{ //} return Json(obj); } #endregion #region 增加创客等级设定 /// /// 增加或修改创客等级设定信息 /// /// public IActionResult Add(string right) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; return View(); } #endregion #region 增加创客等级设定 /// /// 增加或修改创客等级设定信息 /// /// [HttpPost] public string Add(UserLevelSet data) { Dictionary Fields = new Dictionary(); Fields.Add("Name", data.Name); //等级名称 Fields.Add("Details", data.Details); //等级描述 Fields.Add("UpLevelDays", data.UpLevelDays); //升级天数 Fields.Add("UpLevelIntegral", data.UpLevelIntegral); //升级需要积分值 Fields.Add("UpLevelGrowth", data.UpLevelGrowth); //升级需要成长值 Fields.Add("SeoTitle", data.SeoTitle); Fields.Add("SeoKeyword", data.SeoKeyword); Fields.Add("SeoDescription", data.SeoDescription); int Id = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Add("UserLevelSet", Fields, 0); AddSysLog(Id.ToString(), "UserLevelSet", "add"); db.SaveChanges(); UserLevelSet level = db.UserLevelSet.FirstOrDefault(m => m.Id == Id); if (level != null) { RedisDbconn.Instance.Set("UserLevelSet:" + Id, level); } SetRedis(); return "success"; } #endregion #region 修改创客等级设定 /// /// 增加或修改创客等级设定信息 /// /// public IActionResult Edit(string right, int Id = 0) { ViewBag.RightInfo = RightInfo; ViewBag.right = right; UserLevelSet editData = db.UserLevelSet.FirstOrDefault(m => m.Id == Id) ?? new UserLevelSet(); ViewBag.data = editData; return View(); } #endregion #region 修改创客等级设定 /// /// 增加或修改创客等级设定信息 /// /// [HttpPost] public string Edit(UserLevelSet data) { Dictionary Fields = new Dictionary(); Fields.Add("Name", data.Name); //等级名称 Fields.Add("Details", data.Details); //等级描述 Fields.Add("UpLevelDays", data.UpLevelDays); //升级天数 Fields.Add("UpLevelIntegral", data.UpLevelIntegral); //升级需要积分值 Fields.Add("UpLevelGrowth", data.UpLevelGrowth); //升级需要成长值 Fields.Add("SeoTitle", data.SeoTitle); Fields.Add("SeoKeyword", data.SeoKeyword); Fields.Add("SeoDescription", data.SeoDescription); new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("UserLevelSet", Fields, data.Id); AddSysLog(data.Id.ToString(), "UserLevelSet", "update"); db.SaveChanges(); UserLevelSet level = db.UserLevelSet.FirstOrDefault(m => m.Id == data.Id); if (level != null) { RedisDbconn.Instance.Set("UserLevelSet:" + data.Id, level); } SetRedis(); return "success"; } #endregion #region 删除创客等级设定信息 /// /// 删除创客等级设定信息 /// /// public string Delete(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "UserLevelSet", "del"); foreach (string subid in idlist) { int id = int.Parse(subid); new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Delete("UserLevelSet", id); } db.SaveChanges(); SetRedis(); return "success"; } #endregion #region 开启 /// /// 开启 /// /// public string Open(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "UserLevelSet", "open"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", 1); new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("UserLevelSet", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 关闭 /// /// 关闭 /// /// public string Close(string Id) { string[] idlist = Id.Split(new char[] { ',' }); AddSysLog(Id, "UserLevelSet", "close"); foreach (string subid in idlist) { int id = int.Parse(subid); Dictionary Fields = new Dictionary(); Fields.Add("Status", 0); new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("UserLevelSet", Fields, id); } db.SaveChanges(); return "success"; } #endregion #region 排序 /// /// 排序 /// /// public string Sort(int Id, int Sort) { new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Sort("UserLevelSet", Sort, Id); AddSysLog(Id.ToString(), "UserLevelSet", "sort"); SetRedis(); return "success"; } #endregion #region 导入数据 /// /// 导入数据 /// /// public string Import(string ExcelData) { ExcelData = HttpUtility.UrlDecode(ExcelData); JsonData list = JsonMapper.ToObject(ExcelData); for (int i = 1; i < list.Count; i++) { JsonData dr = list[i]; int UpLevelGrowth = int.Parse(dr["升级需要成长值"].ToString()); db.UserLevelSet.Add(new UserLevelSet() { CreateDate = DateTime.Now, UpdateDate = DateTime.Now, UpLevelGrowth = UpLevelGrowth, //升级需要成长值 }); db.SaveChanges(); } AddSysLog("0", "UserLevelSet", "Import"); return "success"; } #endregion #region 导出Excel /// /// 导出Excel /// /// public JsonResult ExportExcel(UserLevelSet data) { Dictionary Fields = new Dictionary(); Fields.Add("Name", "2"); //等级名称 Dictionary obj = new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).IndexData("UserLevelSet", Fields, "Id desc", "False", 1, 20000, "", "UpLevelGrowth", false); List> diclist = obj["data"] as List>; Dictionary result = new Dictionary(); result.Add("Status", "1"); result.Add("Info", "Excel报表-" + DateTime.Now.ToString("yyyy-MM-ddTHH:mm:ss") + ".xlsx"); result.Add("Obj", diclist); Dictionary ReturnFields = new Dictionary(); ReturnFields.Add("UpLevelGrowth", "升级需要成长值"); result.Add("Fields", ReturnFields); AddSysLog("0", "UserLevelSet", "ExportExcel"); return Json(result); } #endregion #region 设置缓存 private void SetRedis() { RedisDbconn.Instance.Clear("UserLevelSet"); List list = db.UserLevelSet.Where(m => m.Status > -1).OrderByDescending(m => m.Sort).ThenByDescending(m => m.Id).ToList(); RedisDbconn.Instance.AddList("UserLevelSet", list.ToArray()); } #endregion } }