Blame view

web/WebMvc/Controllers/HomeController.cs 2.88 KB
赖素文 authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using Hh.Mes.Common.config;
using Hh.Mes.Common.Json;
using Hh.Mes.Common.log;
using Hh.Mes.Service;
using Hh.Mes.Service.Configure;
using Hh.Mes.Service.SystemAuth;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Linq;

namespace WebMvc
{
    public class HomeController : BaseController
    {
        private readonly SysCompanyService SysCompanyService;
        private readonly BaseInfoCacheService baseInfo;

        public HomeController(IAuth authUtil, SysCompanyService sysCompanyService, BaseInfoCacheService baseInfo) : base(authUtil)
        {
            this.baseInfo = baseInfo;
            SysCompanyService = sysCompanyService;
        }

        [ResponseCache(Duration = 60)]
        public ActionResult Index()
        {
            ViewBag.copyright = "Copyright © " + DateTime.Now.ToString("yyyy ") + AppSettings.GetAppSeting("copyright");
            ResponseEnumJosn();

            ViewBag.IsDevelopment = string.Format("let IsDevelopment={0}", ConfigRead.GetInstance.GetAppsetConnection().IsDevelopment.ToString().ToLower());
            return View();
        }

        public ActionResult Main()
        {
            return View();
        }
HuXiYu authored
39
        public ActionResult ProjectMap()
赖素文 authored
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
        {
            return View();
        }


        /// <summary>
        /// 统计错误信息
        /// </summary>
        /// <returns></returns>
        public string LogTips()
        {
            var result = SysCompanyService.LogTips();
            return Serialize(result);
        }

        /// <summary>
        /// 更新清空日志提示
        /// </summary>
        [HttpGet]
        public string UpdateLogTips(string flag)
        {
            return Serialize(SysCompanyService.UpdateLogTips(flag));
        }
    }

    public class HomeRedisController : Controller
    {
        private readonly BaseInfoCacheService baseInfo;

        public HomeRedisController(BaseInfoCacheService baseInfo)
        {
            this.baseInfo = baseInfo;
        }

        /// <summary>
        /// 读取数据,存在key 取缓存,没有数据 读取数据,并写入缓存
        /// </summary>
        /// <param name="key"></param>
        /// <param name="falg">1:重新取数据,写入缓存,其他默认读取缓存</param>
        /// <returns></returns>
        [HttpPost]
        public string GetBaseInfoByKey([FromQuery] string key, [FromQuery] string falg)
        {
            return ExceptionsHelp.Instance.ExecuteT(() =>
            {
                var isRemore = falg == "1";
                var result = baseInfo.GetOneBaseInfo(key, isRemore);
                if (string.IsNullOrEmpty(result))
                {
                    return "{\"Code\":500,\"Status\":false,\"Message\":\"ok\",\"Result\":null}";
                }
                return "{\"Code\":200,\"Status\":true,\"Message\":\"ok\",\"Result\":" + result + "}";
            });
        }

    }

}