合并冲突
xiyunfei 编写于 2021-08-15 10:21:33
NewLife.Cube
using System.IO;
using System;
using NewLife.Xml;
using NewLife.Configuration;
using NewLife.Reflection;
#if __CORE__
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Filters;
#else
using System.Web.Mvc;
#endif

namespace NewLife.Cube
{
    /// <summary>设置控制器</summary>
    public class ConfigController<TConfig> : ObjectController<TConfig> where TConfig : Config<TConfig>, new()
    {
        /// <summary>要展现和修改的对象</summary>
        protected override TConfig Value
        {
            get
            {
                return Config<TConfig>.Current;
            }
            set
            {
                if (value != null)
                {
                    var cfg = Config<TConfig>.Current;
                    //value.ConfigFile = cfg.ConfigFile;
                    //value.Save();
                    cfg.Copy(value);
                    cfg.Save();
                }
                //Config<TConfig>.Current = value;
            }
        }

        /// <summary>已重载</summary>
        /// <param name="filterContext"></param>
#if __CORE__
        public override void OnActionExecuting(ActionExecutingContext filterContext)
#else
        protected override void OnActionExecuting(ActionExecutingContext filterContext)
#endif
        {
            //var fi = XmlConfig<TConfig>._.ConfigFile;
            //if (fi.IsNullOrEmpty() || !fi.AsFile().Exists) throw new Exception("无法找到配置文件 {0}".F(fi));

            var bs = this.Bootstrap();
            bs.MaxColumn = 1;
            bs.LabelWidth = 3;

            base.OnActionExecuting(filterContext);
        }
    }
}