Exemple #1
0
        public static void WriteServiceLog(string message, string logType, LogOpration logOpration = LogOpration.Default)
        {
            try
            {
                //logOpration设置优先级高于配置节logEnabled
                bool logEnabled = Convert.ToBoolean(System.Configuration.ConfigurationManager.AppSettings["LogEnabled"]);
                if (logOpration == LogOpration.Fobid || (logOpration == LogOpration.Default && !logEnabled))
                {
                    return;
                }
                else if (logOpration == LogOpration.Start || (logOpration == LogOpration.Default && logEnabled))
                {
                    //此处实现日志的记录

                    SysLog sysLog = new SysLog();
                    sysLog.Id         = Result.GetNewId();
                    sysLog.CreateTime = DateTime.Now;
                    sysLog.Ip         = GetIP();
                    sysLog.Message    = message;

                    sysLog.CreatePerson = AccountModel.GetCurrentPerson();
                    sysLog.MenuId       = logType;//哪个模块生成的日志

                    using (var sysLogRepository = new SysLogBLL())
                    {
                        ValidationErrors validationErrors = new ValidationErrors();
                        sysLogRepository.Create(ref validationErrors, sysLog);
                        return;
                    }
                }
            }
            catch (Exception ep)
            {
                try
                {
                    string path    = @"/up/mylog.txt";
                    string txtPath = System.Web.HttpContext.Current.Server.MapPath(path);//获取绝对路径
                    using (StreamWriter sw = new StreamWriter(txtPath, true, Encoding.Default))
                    {
                        sw.WriteLine((ep.Message + "|" + message + "|" + GetIP() + DateTime.Now.ToString()).ToString());
                        sw.Close();
                    }
                    return;
                }
                catch { return; }
            }
        }
        public void ProcessRequest(HttpContext context)
        {
            context.Response.ContentType = "text/plain";
            context.Response.Charset     = "utf-8";
            var            filde      = context.Request["queueId"];
            HttpPostedFile file       = context.Request.Files["Filedata"];
            string         uploadPath = HttpContext.Current.Server.MapPath(@context.Request["folder"]) + "\\";

            if (file != null)
            {
                if (!Directory.Exists(uploadPath))
                {
                    Directory.CreateDirectory(uploadPath);
                }

                FileUploader entity = new  FileUploader();
                entity.Id = Common.Result.GetNewId();
                //存储到服务器
                file.SaveAs(uploadPath + entity.Id + file.FileName);

                #region 记录到数据库

                entity.CreatePerson = AccountModel.GetCurrentPerson();
                entity.CreateTime   = DateTime.Now;
                entity.Id           = Common.Result.GetNewId();
                string                  returnValue      = string.Empty;
                IFileUploaderBLL        m_BLL            = new  FileUploaderBLL();
                Common.ValidationErrors validationErrors = new Common.ValidationErrors();
                entity.Size     = file.ContentLength;
                entity.Suffix   = file.FileName.Substring(file.FileName.IndexOf('.') + 1);
                entity.Path     = uploadPath;
                entity.FullPath = uploadPath + file.FileName;
                entity.Name     = file.FileName;

                if (m_BLL.Create(ref validationErrors, entity))
                {//下面这句代码缺少的话,上传成功后上传队列的显示不会自动消失
                    context.Response.Write(entity.Id);
                    LogClassModels.WriteServiceLog(Suggestion.InsertSucceed + ",附件的信息的Id为" + entity.Id, "附件"
                                                   );//写入日志
                }
                else
                {//下面这句代码缺少的话,上传成功后上传队列的显示不会自动消失
                    context.Response.Write("0");
                    if (validationErrors != null && validationErrors.Count > 0)
                    {
                        validationErrors.All(a =>
                        {
                            returnValue += a.ErrorMessage;
                            return(true);
                        });
                    }
                    LogClassModels.WriteServiceLog(Suggestion.InsertFail + ",附件的信息," + returnValue, "附件"
                                                   );//写入日志
                }
                #endregion
            }
            else
            {
                context.Response.Write("0");
            }
        }
Exemple #3
0
 /// <summary>
 /// 获取当前登陆人的用户名
 /// </summary>
 /// <returns></returns>
 public string GetCurrentPerson()
 {
     return(AccountModel.GetCurrentPerson());
 }
Exemple #4
0
 /// <summary>
 /// 获取当前登陆人的名称
 /// </summary>
 /// <returns></returns>
 public string GetCurrentPerson()
 {
     //在2.0版本中修改
     return(AccountModel.GetCurrentPerson());
 }