43 changed files with 2235 additions and 1795 deletions
			
			
		@ -0,0 +1,16 @@ | 
				
			|||
namespace EC.Util.CameraSDK; | 
				
			|||
 | 
				
			|||
public class CameraFactory | 
				
			|||
{ | 
				
			|||
    public static ICameraSDK BuildCameraSdk(CameraInfo info) | 
				
			|||
    { | 
				
			|||
        ICameraSDK sdk = (info.Manufactor) switch | 
				
			|||
        { | 
				
			|||
            CameraManufactor.HiK => new HiKSDK(info), | 
				
			|||
            CameraManufactor.DaHua => new DaHuaSDK(info), | 
				
			|||
            CameraManufactor.YuShi => new YuShiSDK(info), | 
				
			|||
            _ => throw new NotSupportedException(), | 
				
			|||
        }; | 
				
			|||
        return sdk; | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
@ -1,439 +1,419 @@ | 
				
			|||
using System; | 
				
			|||
using System.Collections.Generic; | 
				
			|||
using System.Linq; | 
				
			|||
using System.Text; | 
				
			|||
 | 
				
			|||
/*******************************************************/ | 
				
			|||
/*******************************************************/ | 
				
			|||
/*Project:基础类库 | 
				
			|||
Module   :时间函数库 | 
				
			|||
Description :    | 
				
			|||
Description : | 
				
			|||
Date    : 2008-6-3 15:09:12 | 
				
			|||
Create  : Lxc | 
				
			|||
Update  : 2015-12-31   | 
				
			|||
Update  : 2015-12-31 | 
				
			|||
TODO    : */ | 
				
			|||
/*******************************************************/ | 
				
			|||
 | 
				
			|||
namespace EC.Util.Common; | 
				
			|||
 | 
				
			|||
namespace System | 
				
			|||
/// <summary>
 | 
				
			|||
/// 日期时间操作单元
 | 
				
			|||
/// </summary>
 | 
				
			|||
public partial class DateUnit | 
				
			|||
{ | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 日期时间操作单元
 | 
				
			|||
    /// 1970-1-1
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public partial class DateUnit | 
				
			|||
    public static DateTime InitDate() | 
				
			|||
    { | 
				
			|||
        return new DateTime(1970, 1, 1); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 1970-1-1
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public static DateTime InitDate() | 
				
			|||
        { | 
				
			|||
              return new DateTime(1970, 1, 1);  | 
				
			|||
        } | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 默认当前日期
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public static DateTime DefDate() | 
				
			|||
    { | 
				
			|||
        return DateTime.Now; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 格式化后的当前日期
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public static string DefFormatDate() | 
				
			|||
    { | 
				
			|||
        return FormatDate(DefDate()); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 默认当前日期
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public static DateTime DefDate() | 
				
			|||
    /// <summary>
 | 
				
			|||
    ///格式化当前时间
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public static string DefFormatDateTime() | 
				
			|||
    { | 
				
			|||
        return FormatDateTime(DefDate()); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 格式化后的 当前月1号  日期格式yyyy-MM-01
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public static string DefMonthBegFormat() | 
				
			|||
    { | 
				
			|||
        return DefDate().ToString("yyyy-MM-01"); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 字符串格式->格式化为当前日期
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="Indate"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string FormatDate(string Indate) | 
				
			|||
    { | 
				
			|||
        DateTime nowDate = DefDate(); | 
				
			|||
 | 
				
			|||
        if (Indate != null && Indate != "") | 
				
			|||
        { | 
				
			|||
             return DateTime.Now;  | 
				
			|||
            nowDate = ToDate(Indate); | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 格式化后的当前日期
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public static string DefFormatDate() | 
				
			|||
 | 
				
			|||
        return FormatDate(nowDate); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 格式化为 日期格式yyyy-MM-dd
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="Indate"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string FormatDate(DateTime Indate) | 
				
			|||
    { | 
				
			|||
        if (!Indate.Equals(null)) | 
				
			|||
        { | 
				
			|||
              return FormatDate(DefDate());  | 
				
			|||
            return Indate.ToString("yyyy-MM-dd"); | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        ///格式化当前时间
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public static string DefFormatDateTime() | 
				
			|||
        else | 
				
			|||
        { | 
				
			|||
              return FormatDateTime(DefDate());  | 
				
			|||
            return DefFormatDate(); | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 格式化后的 当前月1号  日期格式yyyy-MM-01
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public static string DefMonthBegFormat() | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 格式化为 日期时间格式yyyy-MM-dd HH:mm:ss
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="Indate"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string FormatDateTime(DateTime Indate) | 
				
			|||
    { | 
				
			|||
        if (!Indate.Equals(null)) | 
				
			|||
        { | 
				
			|||
              return DefDate().ToString("yyyy-MM-01");  | 
				
			|||
            return Indate.ToString("yyyy-MM-dd HH:mm:ss"); | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 字符串格式->格式化为当前日期
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="Indate"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string FormatDate(string Indate) | 
				
			|||
        else | 
				
			|||
        { | 
				
			|||
            DateTime nowDate = DefDate(); | 
				
			|||
 | 
				
			|||
            if (Indate != null && Indate != "") | 
				
			|||
            { | 
				
			|||
                nowDate = ToDate(Indate); | 
				
			|||
            } | 
				
			|||
 | 
				
			|||
            return FormatDate(nowDate); | 
				
			|||
 | 
				
			|||
 | 
				
			|||
            return DefFormatDate(); | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 格式化为 日期格式yyyy-MM-dd
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="Indate"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string FormatDate(DateTime Indate) | 
				
			|||
        { | 
				
			|||
 | 
				
			|||
            if (!Indate.Equals(null)) | 
				
			|||
            { | 
				
			|||
                return Indate.ToString("yyyy-MM-dd"); | 
				
			|||
            } | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                return DefFormatDate(); | 
				
			|||
            } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 格式化时间 毫秒
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="Indate"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string FormatDateTimefff(DateTime Indate) | 
				
			|||
    { | 
				
			|||
        if (!Indate.Equals(null)) | 
				
			|||
        { | 
				
			|||
            return Indate.ToString("yyyy-MM-dd HH:mm:ss fff"); | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 格式化为 日期时间格式yyyy-MM-dd HH:mm:ss
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="Indate"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string FormatDateTime(DateTime Indate) | 
				
			|||
        else | 
				
			|||
        { | 
				
			|||
            return DefFormatDate(); | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
            if (!Indate.Equals(null)) | 
				
			|||
            { | 
				
			|||
                return Indate.ToString("yyyy-MM-dd HH:mm:ss"); | 
				
			|||
            } | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                return DefFormatDate(); | 
				
			|||
            } | 
				
			|||
    #region 时间函数
 | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 是不是时间格式
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="datetm"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool IsDate(string datetm) | 
				
			|||
    { | 
				
			|||
        bool result = false; | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            DateTime dateTime = Convert.ToDateTime(datetm); | 
				
			|||
            result = true; | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 格式化时间 毫秒
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="Indate"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string FormatDateTimefff(DateTime Indate) | 
				
			|||
        catch | 
				
			|||
        { | 
				
			|||
            result = false; | 
				
			|||
        } | 
				
			|||
        return result; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
            if (!Indate.Equals(null)) | 
				
			|||
            { | 
				
			|||
                return Indate.ToString("yyyy-MM-dd HH:mm:ss fff"); | 
				
			|||
            } | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 将字符串转化成日期,如果输入的字符串不是日期时,则返回1970-1-1
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="str"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static DateTime ToDate(string str) | 
				
			|||
    { | 
				
			|||
        if (str == null || str == "") | 
				
			|||
            return DefDate(); | 
				
			|||
        else | 
				
			|||
        { | 
				
			|||
            DateTime dt = DefDate(); | 
				
			|||
            if (DateTime.TryParse(str, out dt) == false) | 
				
			|||
                return DefDate(); | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                return DefFormatDate(); | 
				
			|||
            } | 
				
			|||
 | 
				
			|||
                return dt; | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        #region 时间函数
 | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 是不是时间格式
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="datetm"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static bool IsDate(string datetm) | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 将对象转化成日期,如果输入的对象不是日期时,则返回1970-1-1
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="obj"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static DateTime ToDate(object obj) | 
				
			|||
    { | 
				
			|||
        DateTime Result = DefDate(); | 
				
			|||
        if (!obj.Equals(null)) | 
				
			|||
        { | 
				
			|||
            bool result = false; | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                DateTime dateTime = Convert.ToDateTime(datetm); | 
				
			|||
                result = true; | 
				
			|||
                Result = (DateTime)obj; | 
				
			|||
            } | 
				
			|||
            catch | 
				
			|||
            catch (Exception ex) | 
				
			|||
            { | 
				
			|||
                result = false; | 
				
			|||
 | 
				
			|||
                return DefDate(); | 
				
			|||
            } | 
				
			|||
            return result; | 
				
			|||
            //if (DateTime.TryParse(obj.ToString(), out Result) == false)
 | 
				
			|||
            //    return DefDate;
 | 
				
			|||
        } | 
				
			|||
        return Result; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 将字符串转化成日期,如果输入的字符串不是日期时,则返回1970-1-1
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="str"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static DateTime ToDate(string str) | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 将对象转化成日期,如果输入的对象不是日期时,则返回1900-1-1
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="obj"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static DateTime ToDate(System.Nullable<System.DateTime> obj) | 
				
			|||
    { | 
				
			|||
        if (!obj.Equals(null)) | 
				
			|||
        { | 
				
			|||
            if (str == null || str == "") | 
				
			|||
                return DefDate(); | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                DateTime dt = DefDate(); | 
				
			|||
                if (DateTime.TryParse(str, out dt) == false) | 
				
			|||
                    return DefDate(); | 
				
			|||
                else | 
				
			|||
                    return dt; | 
				
			|||
            } | 
				
			|||
            return (DateTime)obj; | 
				
			|||
        } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 将对象转化成日期,如果输入的对象不是日期时,则返回1970-1-1
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="obj"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static DateTime ToDate(object obj) | 
				
			|||
        else | 
				
			|||
        { | 
				
			|||
            DateTime Result = DefDate(); | 
				
			|||
            if (!obj.Equals(null)) | 
				
			|||
            { | 
				
			|||
                try | 
				
			|||
                { | 
				
			|||
                    Result = (DateTime)obj; | 
				
			|||
                } | 
				
			|||
                catch (Exception ex) | 
				
			|||
                { | 
				
			|||
                    return DefDate(); | 
				
			|||
                } | 
				
			|||
                //if (DateTime.TryParse(obj.ToString(), out Result) == false)
 | 
				
			|||
                //    return DefDate;
 | 
				
			|||
            } | 
				
			|||
            return Result; | 
				
			|||
            return DefDate(); | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 将对象转化成日期,如果输入的对象不是日期时,则返回1900-1-1
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="obj"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static DateTime ToDate(System.Nullable<System.DateTime> obj) | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 20070101-->2007-01-01
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="Str"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string StrTodate(string Str) | 
				
			|||
    { | 
				
			|||
        string stryear, strmon, strday; | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            if (!obj.Equals(null)) | 
				
			|||
            { | 
				
			|||
 | 
				
			|||
                return (DateTime)obj; | 
				
			|||
            } | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                return DefDate(); | 
				
			|||
            } | 
				
			|||
 | 
				
			|||
            stryear = Str.Remove(4, 4); | 
				
			|||
            Str = Str.Remove(0, 4); | 
				
			|||
            strmon = Str.Remove(2, 2); | 
				
			|||
            strday = Str.Remove(0, 2); | 
				
			|||
            stryear = stryear + "-" + strmon + "-" + strday; | 
				
			|||
            return stryear; | 
				
			|||
        } | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 20070101-->2007-01-01
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="Str"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string StrTodate(string Str) | 
				
			|||
        catch | 
				
			|||
        { | 
				
			|||
            string stryear, strmon, strday; | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                stryear = Str.Remove(4, 4); | 
				
			|||
                Str = Str.Remove(0, 4); | 
				
			|||
                strmon = Str.Remove(2, 2); | 
				
			|||
                strday = Str.Remove(0, 2); | 
				
			|||
                stryear = stryear + "-" + strmon + "-" + strday; | 
				
			|||
                return stryear; | 
				
			|||
            } | 
				
			|||
            catch | 
				
			|||
            { | 
				
			|||
                return DefFormatDate(); | 
				
			|||
            } | 
				
			|||
 | 
				
			|||
            return DefFormatDate(); | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    #endregion 时间函数
 | 
				
			|||
 | 
				
			|||
    #region 周计算
 | 
				
			|||
 | 
				
			|||
        #endregion
 | 
				
			|||
 | 
				
			|||
        #region 周计算
 | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 周几
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="curDay"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string DayOfWeek(DateTime curDay) | 
				
			|||
        { | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 周几
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="curDay"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string DayOfWeek(DateTime curDay) | 
				
			|||
    { | 
				
			|||
        string[] weekdays = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" }; | 
				
			|||
        string week = weekdays[Convert.ToInt32(curDay.DayOfWeek)]; | 
				
			|||
 | 
				
			|||
        return week; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
            string[] weekdays = { "星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六" }; | 
				
			|||
            string week = weekdays[Convert.ToInt32(curDay.DayOfWeek)]; | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 第几周
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="curDay"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static int WeekOfYear(DateTime curDay) | 
				
			|||
    { | 
				
			|||
        int firstdayofweek = Convert.ToInt32(Convert.ToDateTime(curDay.Year.ToString() + "-" + "1-1").DayOfWeek); | 
				
			|||
 | 
				
			|||
            return week; | 
				
			|||
        int days = curDay.DayOfYear; | 
				
			|||
        int daysOutOneWeek = days - (7 - firstdayofweek); | 
				
			|||
 | 
				
			|||
        if (daysOutOneWeek <= 0) | 
				
			|||
        { | 
				
			|||
            return 1; | 
				
			|||
        } | 
				
			|||
       | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 第几周
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="curDay"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static int WeekOfYear(DateTime curDay) | 
				
			|||
        else | 
				
			|||
        { | 
				
			|||
            int weeks = daysOutOneWeek / 7; | 
				
			|||
            if (daysOutOneWeek % 7 != 0) | 
				
			|||
                weeks++; | 
				
			|||
 | 
				
			|||
            int firstdayofweek = Convert.ToInt32(Convert.ToDateTime(curDay.Year.ToString() + "-" + "1-1").DayOfWeek); | 
				
			|||
 | 
				
			|||
            int days = curDay.DayOfYear; | 
				
			|||
            int daysOutOneWeek = days - (7 - firstdayofweek); | 
				
			|||
 | 
				
			|||
            if (daysOutOneWeek <= 0) | 
				
			|||
            { | 
				
			|||
                return 1; | 
				
			|||
            } | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                int weeks = daysOutOneWeek / 7; | 
				
			|||
                if (daysOutOneWeek % 7 != 0) | 
				
			|||
                    weeks++; | 
				
			|||
 | 
				
			|||
                return weeks + 1; | 
				
			|||
            } | 
				
			|||
            return weeks + 1; | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        #region 返回某年某月最后一天
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 返回某年某月最后一天
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="year">年份</param>
 | 
				
			|||
        /// <param name="month">月份</param>
 | 
				
			|||
        /// <returns>日</returns>
 | 
				
			|||
        public static int GetMonthLastDate(int year, int month) | 
				
			|||
        { | 
				
			|||
            DateTime lastDay = new DateTime(year, month, new System.Globalization.GregorianCalendar().GetDaysInMonth(year, month)); | 
				
			|||
            int Day = lastDay.Day; | 
				
			|||
            return Day; | 
				
			|||
        } | 
				
			|||
        #endregion
 | 
				
			|||
    #region 返回某年某月最后一天
 | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 返回某年某月最后一天
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="year">年份</param>
 | 
				
			|||
    /// <param name="month">月份</param>
 | 
				
			|||
    /// <returns>日</returns>
 | 
				
			|||
    public static int GetMonthLastDate(int year, int month) | 
				
			|||
    { | 
				
			|||
        DateTime lastDay = new DateTime(year, month, new System.Globalization.GregorianCalendar().GetDaysInMonth(year, month)); | 
				
			|||
        int Day = lastDay.Day; | 
				
			|||
        return Day; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        #endregion
 | 
				
			|||
    #endregion 返回某年某月最后一天
 | 
				
			|||
 | 
				
			|||
    #endregion 周计算
 | 
				
			|||
 | 
				
			|||
        #region 返回时间差
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 返回时间差 秒
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="begDateTime"></param>
 | 
				
			|||
        /// <param name="endDateTime"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static double DateDiffSeconds(DateTime begDateTime, DateTime endDateTime) | 
				
			|||
        { | 
				
			|||
    #region 返回时间差
 | 
				
			|||
 | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                TimeSpan ts = endDateTime - begDateTime; | 
				
			|||
                return ts.TotalSeconds; | 
				
			|||
            } | 
				
			|||
            catch (Exception) | 
				
			|||
            { | 
				
			|||
                return 0; | 
				
			|||
            } | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 返回时间差 分钟
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="begDateTime"></param>
 | 
				
			|||
        /// <param name="endDateTime"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static double DateDiffMinutes(DateTime begDateTime, DateTime endDateTime) | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 返回时间差 秒
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="begDateTime"></param>
 | 
				
			|||
    /// <param name="endDateTime"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static double DateDiffSeconds(DateTime begDateTime, DateTime endDateTime) | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
 | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                TimeSpan ts = endDateTime - begDateTime; | 
				
			|||
                return ts.TotalMinutes; | 
				
			|||
            } | 
				
			|||
            catch (Exception) | 
				
			|||
            { | 
				
			|||
                return 0; | 
				
			|||
            } | 
				
			|||
            TimeSpan ts = endDateTime - begDateTime; | 
				
			|||
            return ts.TotalSeconds; | 
				
			|||
        } | 
				
			|||
        public static double DateDiffHours(DateTime begDateTime, DateTime endDateTime) | 
				
			|||
        catch (Exception) | 
				
			|||
        { | 
				
			|||
 | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                TimeSpan ts = endDateTime - begDateTime; | 
				
			|||
                return ts.TotalHours; | 
				
			|||
            } | 
				
			|||
            catch (Exception) | 
				
			|||
            { | 
				
			|||
                return 0; | 
				
			|||
            } | 
				
			|||
            return 0; | 
				
			|||
        } | 
				
			|||
        public static double DateDifDays(DateTime begDateTime, DateTime endDateTime) | 
				
			|||
        { | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                TimeSpan ts = endDateTime - begDateTime; | 
				
			|||
                return ts.TotalDays; | 
				
			|||
            } | 
				
			|||
            catch (Exception) | 
				
			|||
            { | 
				
			|||
                return 0; | 
				
			|||
            } | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 返回时间差 分钟
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="begDateTime"></param>
 | 
				
			|||
    /// <param name="endDateTime"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static double DateDiffMinutes(DateTime begDateTime, DateTime endDateTime) | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            TimeSpan ts = endDateTime - begDateTime; | 
				
			|||
            return ts.TotalMinutes; | 
				
			|||
        } | 
				
			|||
        #endregion
 | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// Unix时间戳
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <returns>毫秒</returns>
 | 
				
			|||
        public static long UnixTime() | 
				
			|||
        catch (Exception) | 
				
			|||
        { | 
				
			|||
            System.DateTime time = DateTime.Now; | 
				
			|||
            System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); | 
				
			|||
            long t = (time.Ticks - startTime.Ticks) / 10000;   //除10000调整为13位      
 | 
				
			|||
            return t; | 
				
			|||
            return 0; | 
				
			|||
        } | 
				
			|||
        /// <summary>  
 | 
				
			|||
        /// 将c# DateTime时间格式转换为Unix时间戳格式  
 | 
				
			|||
        /// </summary>  
 | 
				
			|||
        /// <param name="time">时间</param>  
 | 
				
			|||
        /// <returns> 毫秒</returns>  
 | 
				
			|||
        public static long DateTimeToUnixTime(System.DateTime time) | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public static double DateDiffHours(DateTime begDateTime, DateTime endDateTime) | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); | 
				
			|||
            long t = (time.Ticks - startTime.Ticks) / 10000;   //除10000调整为13位      
 | 
				
			|||
            return t; | 
				
			|||
            TimeSpan ts = endDateTime - begDateTime; | 
				
			|||
            return ts.TotalHours; | 
				
			|||
        } | 
				
			|||
        /// <summary>        
 | 
				
			|||
        /// 时间戳转为C#格式时间        
 | 
				
			|||
        /// </summary>        
 | 
				
			|||
        /// <param name="timeStamp"></param>        
 | 
				
			|||
        /// <returns></returns>        
 | 
				
			|||
        public static DateTime UnixTimeToDateTime(long timeStamp) | 
				
			|||
        catch (Exception) | 
				
			|||
        { | 
				
			|||
            DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); | 
				
			|||
            long lTime = timeStamp * 10000; | 
				
			|||
            TimeSpan toNow = new TimeSpan(lTime); | 
				
			|||
            return dtStart.Add(toNow); | 
				
			|||
            return 0; | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// Unix时间戳 时间格式化 为日期
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="timeStamp"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string FormatDateUnixTime(long timeStamp) | 
				
			|||
    public static double DateDifDays(DateTime begDateTime, DateTime endDateTime) | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            DateTime dtStart = UnixTimeToDateTime(timeStamp); | 
				
			|||
            return FormatDate(dtStart); | 
				
			|||
            TimeSpan ts = endDateTime - begDateTime; | 
				
			|||
            return ts.TotalDays; | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// Unix时间戳 时间格式化 为时间
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="timeStamp"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string FormatDateTimeUnixTime(long timeStamp) | 
				
			|||
        catch (Exception) | 
				
			|||
        { | 
				
			|||
            DateTime dtStart = UnixTimeToDateTime(timeStamp); | 
				
			|||
            return FormatDateTime(dtStart); | 
				
			|||
            return 0; | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    #endregion 返回时间差
 | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// Unix时间戳
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <returns>毫秒</returns>
 | 
				
			|||
    public static long UnixTime() | 
				
			|||
    { | 
				
			|||
        System.DateTime time = DateTime.Now; | 
				
			|||
        System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); | 
				
			|||
        long t = (time.Ticks - startTime.Ticks) / 10000;   //除10000调整为13位
 | 
				
			|||
        return t; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 将c# DateTime时间格式转换为Unix时间戳格式
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="time">时间</param>
 | 
				
			|||
    /// <returns> 毫秒</returns>
 | 
				
			|||
    public static long DateTimeToUnixTime(System.DateTime time) | 
				
			|||
    { | 
				
			|||
        System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1, 0, 0, 0, 0)); | 
				
			|||
        long t = (time.Ticks - startTime.Ticks) / 10000;   //除10000调整为13位
 | 
				
			|||
        return t; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 时间戳转为C#格式时间
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="timeStamp"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static DateTime UnixTimeToDateTime(long timeStamp) | 
				
			|||
    { | 
				
			|||
        DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); | 
				
			|||
        long lTime = timeStamp * 10000; | 
				
			|||
        TimeSpan toNow = new TimeSpan(lTime); | 
				
			|||
        return dtStart.Add(toNow); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// Unix时间戳 时间格式化 为日期
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="timeStamp"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string FormatDateUnixTime(long timeStamp) | 
				
			|||
    { | 
				
			|||
        DateTime dtStart = UnixTimeToDateTime(timeStamp); | 
				
			|||
        return FormatDate(dtStart); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// Unix时间戳 时间格式化 为时间
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="timeStamp"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string FormatDateTimeUnixTime(long timeStamp) | 
				
			|||
    { | 
				
			|||
        DateTime dtStart = UnixTimeToDateTime(timeStamp); | 
				
			|||
        return FormatDateTime(dtStart); | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
} | 
				
			|||
@ -1,367 +1,359 @@ | 
				
			|||
using System; | 
				
			|||
using System.Collections.Generic; | 
				
			|||
using System.Linq; | 
				
			|||
using System.Text; | 
				
			|||
using System.IO; | 
				
			|||
using System.Web; | 
				
			|||
/*******************************************************/ | 
				
			|||
/*******************************************************/ | 
				
			|||
/*Project:基础类库 | 
				
			|||
Module   :文件操作库 | 
				
			|||
Description : 文本读写,日志 | 
				
			|||
Date    : 2008-6-3 15:09:12 | 
				
			|||
Create  : Lxc | 
				
			|||
Update  : 2014-12-31   | 
				
			|||
Update  : 2014-12-31 | 
				
			|||
TODO    : */ | 
				
			|||
/*******************************************************/ | 
				
			|||
namespace System | 
				
			|||
{    | 
				
			|||
 | 
				
			|||
namespace EC.Util.Common; | 
				
			|||
 | 
				
			|||
/// <summary>
 | 
				
			|||
/// 文件操作单元
 | 
				
			|||
/// </summary>
 | 
				
			|||
public partial class FileUnit | 
				
			|||
{ | 
				
			|||
    private static readonly string AppFilepatch = AppDomain.CurrentDomain.SetupInformation.ApplicationBase; | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 文件操作单元
 | 
				
			|||
    /// 创建目录
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public partial class FileUnit | 
				
			|||
    /// <param name="fullPath"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool CreateDir(string fullPath) | 
				
			|||
    { | 
				
			|||
        static readonly string AppFilepatch = System.AppDomain.CurrentDomain.SetupInformation.ApplicationBase; | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 创建目录
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="fullPath"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static bool CreateDir(string fullPath) | 
				
			|||
        if (!Directory.Exists(fullPath)) | 
				
			|||
        { | 
				
			|||
            if (!Directory.Exists(fullPath)) | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                try | 
				
			|||
                { | 
				
			|||
                    Directory.CreateDirectory(fullPath); | 
				
			|||
                    return true; | 
				
			|||
                } | 
				
			|||
                catch (Exception ex) | 
				
			|||
                { | 
				
			|||
                    return false; | 
				
			|||
                } | 
				
			|||
                Directory.CreateDirectory(fullPath); | 
				
			|||
                return true; | 
				
			|||
            } | 
				
			|||
            catch (Exception ex) | 
				
			|||
            { | 
				
			|||
                return false; | 
				
			|||
            } | 
				
			|||
            return true; | 
				
			|||
        } | 
				
			|||
        //删除文件名 获取路径
 | 
				
			|||
        public static string GetDirectory(string fullPath) | 
				
			|||
        { | 
				
			|||
            return Path.GetDirectoryName(fullPath); | 
				
			|||
            //return allFileName.Substring(0, allFileName.LastIndexOf('\\'));
 | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 得到文件名称
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="fullPath"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string GetFileName(string fullPath) | 
				
			|||
        { | 
				
			|||
            return Path.GetFileName(fullPath); | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 得到扩展名
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="fullPath"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string GetFileExt(string fullPath) | 
				
			|||
        { | 
				
			|||
            return Path.GetExtension(fullPath); | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 得到名称没有扩展名
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="fullPath"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string GetFileNameNoExt(string fullPath) | 
				
			|||
        { | 
				
			|||
            return Path.GetFileNameWithoutExtension(fullPath); | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 复制文件
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="sourceFileName"></param>
 | 
				
			|||
        /// <param name="destFileName"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string CopyFile(string sourceFileName, string destFileName) | 
				
			|||
        return true; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    //删除文件名 获取路径
 | 
				
			|||
    public static string GetDirectory(string fullPath) | 
				
			|||
    { | 
				
			|||
        return Path.GetDirectoryName(fullPath); | 
				
			|||
        //return allFileName.Substring(0, allFileName.LastIndexOf('\\'));
 | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 得到文件名称
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="fullPath"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string GetFileName(string fullPath) | 
				
			|||
    { | 
				
			|||
        return Path.GetFileName(fullPath); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 得到扩展名
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="fullPath"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string GetFileExt(string fullPath) | 
				
			|||
    { | 
				
			|||
        return Path.GetExtension(fullPath); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 得到名称没有扩展名
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="fullPath"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string GetFileNameNoExt(string fullPath) | 
				
			|||
    { | 
				
			|||
        return Path.GetFileNameWithoutExtension(fullPath); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 复制文件
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="sourceFileName"></param>
 | 
				
			|||
    /// <param name="destFileName"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string CopyFile(string sourceFileName, string destFileName) | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            try | 
				
			|||
            if (File.Exists(sourceFileName)) | 
				
			|||
            { | 
				
			|||
                if (File.Exists(sourceFileName)) | 
				
			|||
                string destDirectory = GetDirectory(destFileName);// destFileName.Substring(0, destFileName.LastIndexOf('\\'));//删除文件名 获取路径
 | 
				
			|||
                bool createDir = CreateDir(destDirectory); | 
				
			|||
                if (createDir) | 
				
			|||
                { | 
				
			|||
                    string destDirectory = GetDirectory(destFileName);// destFileName.Substring(0, destFileName.LastIndexOf('\\'));//删除文件名 获取路径
 | 
				
			|||
                    bool createDir = CreateDir(destDirectory); | 
				
			|||
                    if (createDir) | 
				
			|||
                    { | 
				
			|||
                        File.Copy(sourceFileName, destFileName); | 
				
			|||
                    } | 
				
			|||
                    else | 
				
			|||
                    { | 
				
			|||
                        return "文件路径" + destFileName + "不正确!"; | 
				
			|||
                    } | 
				
			|||
                    File.Copy(sourceFileName, destFileName); | 
				
			|||
                } | 
				
			|||
                else | 
				
			|||
                { | 
				
			|||
                    return "文件路径" + sourceFileName + "不存在!"; | 
				
			|||
                    return "文件路径" + destFileName + "不正确!"; | 
				
			|||
                } | 
				
			|||
                return ""; | 
				
			|||
            } | 
				
			|||
            catch (Exception ex) | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                return ex.Message; | 
				
			|||
                return "文件路径" + sourceFileName + "不存在!"; | 
				
			|||
            } | 
				
			|||
 | 
				
			|||
 | 
				
			|||
            return ""; | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 得到路径 没有扩展名
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="rptPath"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string GetPathNoExt(string rptPath) | 
				
			|||
        catch (Exception ex) | 
				
			|||
        { | 
				
			|||
            string rtpDir = GetDirectory(rptPath); | 
				
			|||
            string disFileName = GetFileNameNoExt(rptPath); | 
				
			|||
            string disPatch = rtpDir + "\\" + disFileName;// +".docx";
 | 
				
			|||
            return disPatch; | 
				
			|||
            return ex.Message; | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 读取文本
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="filename"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static string ReadtxtFile(string filename) | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 得到路径 没有扩展名
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="rptPath"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string GetPathNoExt(string rptPath) | 
				
			|||
    { | 
				
			|||
        string rtpDir = GetDirectory(rptPath); | 
				
			|||
        string disFileName = GetFileNameNoExt(rptPath); | 
				
			|||
        string disPatch = rtpDir + "\\" + disFileName;// +".docx";
 | 
				
			|||
        return disPatch; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 读取文本
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="filename"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static string ReadtxtFile(string filename) | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
             | 
				
			|||
            try | 
				
			|||
            if (File.Exists(filename)) | 
				
			|||
            { | 
				
			|||
                if (File.Exists(filename)) | 
				
			|||
                // Create an instance of StreamReader to read from a file.
 | 
				
			|||
                // The using statement also closes the StreamReader.
 | 
				
			|||
                using (StreamReader sr = new StreamReader(filename, System.Text.Encoding.UTF8)) | 
				
			|||
                { | 
				
			|||
                    // Create an instance of StreamReader to read from a file.
 | 
				
			|||
                    // The using statement also closes the StreamReader.
 | 
				
			|||
                    using (StreamReader sr = new StreamReader(filename, System.Text.Encoding.UTF8)) | 
				
			|||
                    { | 
				
			|||
                        return sr.ReadToEnd(); | 
				
			|||
                    } | 
				
			|||
                    return sr.ReadToEnd(); | 
				
			|||
                } | 
				
			|||
                else LogUnit.Error(typeof(FileUnit),"no exists " + filename); | 
				
			|||
                 | 
				
			|||
            } | 
				
			|||
            catch (Exception e) | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(typeof(FileUnit), e.ToString()); | 
				
			|||
            } | 
				
			|||
            return ""; | 
				
			|||
            | 
				
			|||
            else LogUnit.Error(typeof(FileUnit), "no exists " + filename); | 
				
			|||
        } | 
				
			|||
        catch (Exception e) | 
				
			|||
        { | 
				
			|||
            LogUnit.Error(typeof(FileUnit), e.ToString()); | 
				
			|||
        } | 
				
			|||
        return ""; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 读取多行文本
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="filename"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static List<string> ReadtxtLinesFile(string filename) | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 读取多行文本
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="filename"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static List<string> ReadtxtLinesFile(string filename) | 
				
			|||
    { | 
				
			|||
        List<string> filtxtLines = new List<string>(); | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            List<string> filtxtLines = new List<string>(); | 
				
			|||
            try | 
				
			|||
            if (File.Exists(filename)) | 
				
			|||
            { | 
				
			|||
                if (File.Exists(filename)) | 
				
			|||
                // Create an instance of StreamReader to read from a file.
 | 
				
			|||
                // The using statement also closes the StreamReader.
 | 
				
			|||
                using (StreamReader sr = new StreamReader(filename, System.Text.Encoding.UTF8)) | 
				
			|||
                { | 
				
			|||
                    // Create an instance of StreamReader to read from a file.
 | 
				
			|||
                    // The using statement also closes the StreamReader.
 | 
				
			|||
                    using (StreamReader sr = new StreamReader(filename, System.Text.Encoding.UTF8)) | 
				
			|||
                    String line; | 
				
			|||
                    // Read and display lines from the file until the end of
 | 
				
			|||
                    // the file is reached.
 | 
				
			|||
                    while ((line = sr.ReadLine()) != null) | 
				
			|||
                    { | 
				
			|||
                        String line; | 
				
			|||
                        // Read and display lines from the file until the end of 
 | 
				
			|||
                        // the file is reached.
 | 
				
			|||
                        while ((line = sr.ReadLine()) != null) | 
				
			|||
                        { | 
				
			|||
                            filtxtLines.Add(line); | 
				
			|||
                        } | 
				
			|||
                        filtxtLines.Add(line); | 
				
			|||
                    } | 
				
			|||
                } | 
				
			|||
            } | 
				
			|||
            catch (Exception e) | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(typeof(FileUnit), e.ToString()); | 
				
			|||
            } | 
				
			|||
            return filtxtLines; | 
				
			|||
        } | 
				
			|||
        catch (Exception e) | 
				
			|||
        { | 
				
			|||
            LogUnit.Error(typeof(FileUnit), e.ToString()); | 
				
			|||
        } | 
				
			|||
        return filtxtLines; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 读取多行文本
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="filepatch"></param>
 | 
				
			|||
        /// <param name="filename"></param>
 | 
				
			|||
        /// <param name="txtLines"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static bool WritetxtFileLine(string filepatch,string filename, List<string> txtLines) | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 读取多行文本
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="filepatch"></param>
 | 
				
			|||
    /// <param name="filename"></param>
 | 
				
			|||
    /// <param name="txtLines"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool WritetxtFileLine(string filepatch, string filename, List<string> txtLines) | 
				
			|||
    { | 
				
			|||
        List<string> filtxtLines = new List<string>(); | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
              | 
				
			|||
            List<string> filtxtLines = new List<string>(); | 
				
			|||
            try | 
				
			|||
            if (!Directory.Exists(filepatch)) | 
				
			|||
            { | 
				
			|||
 | 
				
			|||
 | 
				
			|||
                if (!Directory.Exists(filepatch)) | 
				
			|||
                { | 
				
			|||
                    Directory.CreateDirectory(filepatch); | 
				
			|||
                } | 
				
			|||
                using (StreamWriter sw = new StreamWriter(filepatch + filename, false, System.Text.Encoding.UTF8)) | 
				
			|||
                { | 
				
			|||
                    foreach (string str in txtLines) | 
				
			|||
                    { | 
				
			|||
                        sw.WriteLine(str); | 
				
			|||
                    } | 
				
			|||
                    sw.Close(); | 
				
			|||
                } | 
				
			|||
 | 
				
			|||
                Directory.CreateDirectory(filepatch); | 
				
			|||
            } | 
				
			|||
            catch (Exception e) | 
				
			|||
            using (StreamWriter sw = new StreamWriter(filepatch + filename, false, System.Text.Encoding.UTF8)) | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(typeof(FileUnit), e.ToString()); | 
				
			|||
                return false; | 
				
			|||
                foreach (string str in txtLines) | 
				
			|||
                { | 
				
			|||
                    sw.WriteLine(str); | 
				
			|||
                } | 
				
			|||
                sw.Close(); | 
				
			|||
            } | 
				
			|||
            return true; | 
				
			|||
        } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 写入文本
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        /// <param name="filepatch"></param>
 | 
				
			|||
        /// <param name="filename"></param>
 | 
				
			|||
        /// <param name="text"></param>
 | 
				
			|||
        /// <returns></returns>
 | 
				
			|||
        public static bool WritetxtFile(string filepatch, string filename, string text) | 
				
			|||
        catch (Exception e) | 
				
			|||
        { | 
				
			|||
            LogUnit.Error(typeof(FileUnit), e.ToString()); | 
				
			|||
            return false; | 
				
			|||
        } | 
				
			|||
        return true; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
            List<string> filtxtLines = new List<string>(); | 
				
			|||
            try | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 写入文本
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="filepatch"></param>
 | 
				
			|||
    /// <param name="filename"></param>
 | 
				
			|||
    /// <param name="text"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool WritetxtFile(string filepatch, string filename, string text) | 
				
			|||
    { | 
				
			|||
        List<string> filtxtLines = new List<string>(); | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            if (!Directory.Exists(filepatch)) | 
				
			|||
            { | 
				
			|||
 | 
				
			|||
                if (!Directory.Exists(filepatch)) | 
				
			|||
                { | 
				
			|||
                    Directory.CreateDirectory(filepatch); | 
				
			|||
                } | 
				
			|||
                | 
				
			|||
                using (StreamWriter sw = new StreamWriter(filepatch + filename, false, System.Text.Encoding.UTF8)) | 
				
			|||
                { | 
				
			|||
                      | 
				
			|||
                    sw.Write(text); | 
				
			|||
                     | 
				
			|||
                    sw.Close(); | 
				
			|||
                } | 
				
			|||
 | 
				
			|||
                Directory.CreateDirectory(filepatch); | 
				
			|||
            } | 
				
			|||
            catch (Exception e) | 
				
			|||
 | 
				
			|||
            using (StreamWriter sw = new StreamWriter(filepatch + filename, false, System.Text.Encoding.UTF8)) | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(typeof(FileUnit), e.ToString()); | 
				
			|||
                return false; | 
				
			|||
                sw.Write(text); | 
				
			|||
 | 
				
			|||
                sw.Close(); | 
				
			|||
            } | 
				
			|||
            return true; | 
				
			|||
        } | 
				
			|||
 | 
				
			|||
        private static bool Log(string subfilepatch,string logmessage) | 
				
			|||
        catch (Exception e) | 
				
			|||
        { | 
				
			|||
            LogUnit.Error(typeof(FileUnit), e.ToString()); | 
				
			|||
            return false; | 
				
			|||
        } | 
				
			|||
        return true; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
            try | 
				
			|||
    private static bool Log(string subfilepatch, string logmessage) | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            string logfilePath = AppFilepatch + "Log\\" + subfilepatch; | 
				
			|||
            if (!Directory.Exists(logfilePath)) | 
				
			|||
            { | 
				
			|||
                string logfilePath = AppFilepatch + "Log\\" + subfilepatch ; | 
				
			|||
                if (!Directory.Exists(logfilePath)) | 
				
			|||
                { | 
				
			|||
                    Directory.CreateDirectory(logfilePath); | 
				
			|||
                } | 
				
			|||
                using (StreamWriter sw = new StreamWriter(logfilePath + DateTime.Now.ToString("yyyyMMdd") + ".txt", true, System.Text.Encoding.UTF8)) | 
				
			|||
                { | 
				
			|||
                    sw.WriteLine(DateTime.Now.ToString() + " : " + logmessage); | 
				
			|||
                    sw.Close(); | 
				
			|||
                } | 
				
			|||
                Directory.CreateDirectory(logfilePath); | 
				
			|||
            } | 
				
			|||
            catch (Exception e) | 
				
			|||
            using (StreamWriter sw = new StreamWriter(logfilePath + DateTime.Now.ToString("yyyyMMdd") + ".txt", true, System.Text.Encoding.UTF8)) | 
				
			|||
            { | 
				
			|||
                return false; | 
				
			|||
                sw.WriteLine(DateTime.Now.ToString() + " : " + logmessage); | 
				
			|||
                sw.Close(); | 
				
			|||
            } | 
				
			|||
            return true; | 
				
			|||
        } | 
				
			|||
 | 
				
			|||
        //支付日志
 | 
				
			|||
        public static void PayLog(string log) | 
				
			|||
        catch (Exception e) | 
				
			|||
        { | 
				
			|||
            string path = "PayLog\\"; | 
				
			|||
            Log(path, log); | 
				
			|||
            return false; | 
				
			|||
        } | 
				
			|||
        return true; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        //订单日志
 | 
				
			|||
        public static void OrderLog(string log) | 
				
			|||
        { | 
				
			|||
            string path = "OrderLog\\"; | 
				
			|||
            Log(path, log); | 
				
			|||
        } | 
				
			|||
    //支付日志
 | 
				
			|||
    public static void PayLog(string log) | 
				
			|||
    { | 
				
			|||
        string path = "PayLog\\"; | 
				
			|||
        Log(path, log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        //写入日志
 | 
				
			|||
        public static void Log(string log) | 
				
			|||
        { | 
				
			|||
            string path = ""; | 
				
			|||
            Log(path, log); | 
				
			|||
        } | 
				
			|||
        public static void WebLog(string log) | 
				
			|||
        { | 
				
			|||
            Log(log); | 
				
			|||
        } | 
				
			|||
      | 
				
			|||
        //public static void WebLog(string log)
 | 
				
			|||
        //{
 | 
				
			|||
        //    string path = HttpContext.Current.Server.MapPath(".")+"Web\\";
 | 
				
			|||
        //    Log(path, log);
 | 
				
			|||
        //}
 | 
				
			|||
    //订单日志
 | 
				
			|||
    public static void OrderLog(string log) | 
				
			|||
    { | 
				
			|||
        string path = "OrderLog\\"; | 
				
			|||
        Log(path, log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        public static void ErrLog(string log) | 
				
			|||
        { | 
				
			|||
            string subpath = "ErrLog\\"; | 
				
			|||
            Log(subpath, log); | 
				
			|||
        } | 
				
			|||
        public static void HisLog(string log) | 
				
			|||
        { | 
				
			|||
            string subpath =  "HisLog\\"; | 
				
			|||
            Log(subpath, log); | 
				
			|||
        } | 
				
			|||
    //写入日志
 | 
				
			|||
    public static void Log(string log) | 
				
			|||
    { | 
				
			|||
        string path = ""; | 
				
			|||
        Log(path, log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
         | 
				
			|||
        public static void Package(string log) | 
				
			|||
        { | 
				
			|||
            string path = "Package\\"; | 
				
			|||
            Log(path, log); | 
				
			|||
        } | 
				
			|||
    public static void WebLog(string log) | 
				
			|||
    { | 
				
			|||
        Log(log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
          | 
				
			|||
        public static void EPS(string log) | 
				
			|||
        { | 
				
			|||
            string path = "EPS\\"; | 
				
			|||
            Log(path, log); | 
				
			|||
        } | 
				
			|||
        public static void AllLog(string log) | 
				
			|||
        { | 
				
			|||
            string path = "AllLog\\"; | 
				
			|||
            Log(path, log); | 
				
			|||
        } | 
				
			|||
        public static bool Exists(string path) | 
				
			|||
        { | 
				
			|||
          return File.Exists(path); | 
				
			|||
        } | 
				
			|||
        public static void DeleteFile(string path) | 
				
			|||
    //public static void WebLog(string log)
 | 
				
			|||
    //{
 | 
				
			|||
    //    string path = HttpContext.Current.Server.MapPath(".")+"Web\\";
 | 
				
			|||
    //    Log(path, log);
 | 
				
			|||
    //}
 | 
				
			|||
 | 
				
			|||
    public static void ErrLog(string log) | 
				
			|||
    { | 
				
			|||
        string subpath = "ErrLog\\"; | 
				
			|||
        Log(subpath, log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public static void HisLog(string log) | 
				
			|||
    { | 
				
			|||
        string subpath = "HisLog\\"; | 
				
			|||
        Log(subpath, log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public static void Package(string log) | 
				
			|||
    { | 
				
			|||
        string path = "Package\\"; | 
				
			|||
        Log(path, log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public static void EPS(string log) | 
				
			|||
    { | 
				
			|||
        string path = "EPS\\"; | 
				
			|||
        Log(path, log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public static void AllLog(string log) | 
				
			|||
    { | 
				
			|||
        string path = "AllLog\\"; | 
				
			|||
        Log(path, log); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public static bool Exists(string path) | 
				
			|||
    { | 
				
			|||
        return File.Exists(path); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public static void DeleteFile(string path) | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            try | 
				
			|||
            if (File.Exists(path)) | 
				
			|||
            { | 
				
			|||
                if (File.Exists(path)) | 
				
			|||
                { | 
				
			|||
                    File.Delete(path); | 
				
			|||
                } | 
				
			|||
                else | 
				
			|||
                { | 
				
			|||
                    LogUnit.Error(typeof(FileUnit), "路径不存在" + path); | 
				
			|||
                } | 
				
			|||
                File.Delete(path); | 
				
			|||
            } | 
				
			|||
            catch (Exception ex) | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(typeof(FileUnit), ex.ToString()); | 
				
			|||
                LogUnit.Error(typeof(FileUnit), "路径不存在" + path); | 
				
			|||
            } | 
				
			|||
        } | 
				
			|||
        catch (Exception ex) | 
				
			|||
        { | 
				
			|||
            LogUnit.Error(typeof(FileUnit), ex.ToString()); | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
} | 
				
			|||
@ -0,0 +1,176 @@ | 
				
			|||
using System.Text.RegularExpressions; | 
				
			|||
 | 
				
			|||
namespace EC.Util.Common; | 
				
			|||
 | 
				
			|||
/// <summary>
 | 
				
			|||
/// 验证工具类
 | 
				
			|||
/// </summary>
 | 
				
			|||
public class VerifyUtil | 
				
			|||
{ | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 验证是否为空
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="str"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool IsEmpty(string str) | 
				
			|||
    { | 
				
			|||
        return string.IsNullOrEmpty(str); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 验证是否为邮件
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="emailStr"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool IsEmail(string emailStr) | 
				
			|||
    { | 
				
			|||
        if (string.IsNullOrEmpty(emailStr)) return false; | 
				
			|||
        string match = @"^([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\-|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$"; | 
				
			|||
        Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); | 
				
			|||
        return r.IsMatch(emailStr.Trim()); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 验证是否为数字
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="numberStr"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool IsNumber(string numberStr) | 
				
			|||
    { | 
				
			|||
        if (string.IsNullOrEmpty(numberStr)) return false; | 
				
			|||
        string match = @"^(0|[1-9][0-9]*)$"; | 
				
			|||
        Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); | 
				
			|||
        return r.IsMatch(numberStr.Trim()); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 验证是否为浮点数
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="decimalStr"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool IsDecimal(string decimalStr) | 
				
			|||
    { | 
				
			|||
        if (string.IsNullOrEmpty(decimalStr)) return false; | 
				
			|||
        string match = @"^(-?\d+)(\.\d+)?$"; | 
				
			|||
        Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); | 
				
			|||
        return r.IsMatch(decimalStr.Trim()); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 验证是否为手机号码
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="mobileStr"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool IsMobile(string mobileStr) | 
				
			|||
    { | 
				
			|||
        if (string.IsNullOrEmpty(mobileStr)) return false; | 
				
			|||
        string match = @"^[1]+[3,5,7,8]+\d{9}"; | 
				
			|||
        Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); | 
				
			|||
        return r.IsMatch(mobileStr.Trim()); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 验证是否为电话号码
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="telStr"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool IsTel(string telStr) | 
				
			|||
    { | 
				
			|||
        if (string.IsNullOrEmpty(telStr)) return false; | 
				
			|||
        string match = @"^(\+86\s{1,1})?((\d{3,4}\-)\d{7,8})$"; | 
				
			|||
        Regex r = new(match, RegexOptions.Compiled | RegexOptions.IgnoreCase); | 
				
			|||
        return r.IsMatch(telStr.Trim()); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 验证是否为Ip地址
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="ipStr"></param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool IsIp(string ipStr) | 
				
			|||
    { | 
				
			|||
        if (string.IsNullOrEmpty(ipStr)) return false; | 
				
			|||
        string match = @"^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])$"; | 
				
			|||
        Regex r = new(match); | 
				
			|||
        return r.IsMatch(ipStr.Trim()); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 验证是否为身份证
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="idcardStr">身份证号</param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    public static bool CheckIDCard(string idcardStr) | 
				
			|||
    { | 
				
			|||
        if (string.IsNullOrEmpty(idcardStr)) return false; | 
				
			|||
        if (idcardStr.Length == 18) return CheckIDCard18(idcardStr); | 
				
			|||
        else if (idcardStr.Length == 15) return CheckIDCard15(idcardStr); | 
				
			|||
        return false; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 18位身份证验证
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="Id">身份证号</param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    private static bool CheckIDCard18(string Id) | 
				
			|||
    { | 
				
			|||
        long n = 0; | 
				
			|||
        if (long.TryParse(Id.Remove(17), out n) == false || n < Math.Pow(10, 16) || long.TryParse(Id.Replace('x', '0').Replace('X', '0'), out n) == false) | 
				
			|||
        { | 
				
			|||
            return false;//数字验证
 | 
				
			|||
        } | 
				
			|||
        string address = "11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91"; | 
				
			|||
        if (address.IndexOf(Id.Remove(2)) == -1) | 
				
			|||
        { | 
				
			|||
            return false;//省份验证
 | 
				
			|||
        } | 
				
			|||
        string birth = Id.Substring(6, 8).Insert(6, "-").Insert(4, "-"); | 
				
			|||
        DateTime time = new DateTime(); | 
				
			|||
        if (DateTime.TryParse(birth, out time) == false) | 
				
			|||
        { | 
				
			|||
            return false;//生日验证
 | 
				
			|||
        } | 
				
			|||
        string[] arrVarifyCode = ("1,0,x,9,8,7,6,5,4,3,2").Split(','); | 
				
			|||
        string[] Wi = ("7,9,10,5,8,4,2,1,6,3,7,9,10,5,8,4,2").Split(','); | 
				
			|||
        char[] Ai = Id.Remove(17).ToCharArray(); | 
				
			|||
        int sum = 0; | 
				
			|||
        for (int i = 0; i < 17; i++) | 
				
			|||
        { | 
				
			|||
            sum += int.Parse(Wi[i]) * int.Parse(Ai[i].ToString()); | 
				
			|||
        } | 
				
			|||
        int y = -1; | 
				
			|||
        Math.DivRem(sum, 11, out y); | 
				
			|||
        if (arrVarifyCode[y] != Id.Substring(17, 1).ToLower()) | 
				
			|||
        { | 
				
			|||
            return false;//校验码验证
 | 
				
			|||
        } | 
				
			|||
        return true;//符合GB11643-1999标准
 | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 15位身份证验证
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="Id">身份证号</param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    private static bool CheckIDCard15(string Id) | 
				
			|||
    { | 
				
			|||
        long n = 0; | 
				
			|||
        if (long.TryParse(Id, out n) == false || n < Math.Pow(10, 14)) | 
				
			|||
        { | 
				
			|||
            return false;//数字验证
 | 
				
			|||
        } | 
				
			|||
        string address = "11x22x35x44x53x12x23x36x45x54x13x31x37x46x61x14x32x41x50x62x15x33x42x51x63x21x34x43x52x64x65x71x81x82x91"; | 
				
			|||
        if (address.IndexOf(Id.Remove(2)) == -1) | 
				
			|||
        { | 
				
			|||
            return false;//省份验证
 | 
				
			|||
        } | 
				
			|||
        string birth = Id.Substring(6, 6).Insert(4, "-").Insert(2, "-"); | 
				
			|||
        DateTime time = new DateTime(); | 
				
			|||
        if (DateTime.TryParse(birth, out time) == false) | 
				
			|||
        { | 
				
			|||
            return false;//生日验证
 | 
				
			|||
        } | 
				
			|||
        return true;//符合15位身份证标准
 | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
@ -1,39 +1,39 @@ | 
				
			|||
using System; | 
				
			|||
using System.Collections.Generic; | 
				
			|||
using System.Linq; | 
				
			|||
using System.Text; | 
				
			|||
using System.Threading.Tasks; | 
				
			|||
namespace EC.Util.Net; | 
				
			|||
 | 
				
			|||
namespace EC.Util.Net | 
				
			|||
public class APICallBack | 
				
			|||
{ | 
				
			|||
    public class APICallBack | 
				
			|||
    { | 
				
			|||
        public string reqCode { get; set; } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 任务单号
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string taskCode { get; set; } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// AGV状态指令
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string method { get; set; } | 
				
			|||
        public string reqTime { get; set; } | 
				
			|||
        public string wbCode { get; set; } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// AGV编号
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string robotCode { get; set; } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 请求AGV接口后返回的成功失败或其他消息
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string message { get; set; } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 请求AGV接口后返回的任务单号
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string data { get; set; } | 
				
			|||
        /// <summary>
 | 
				
			|||
        /// 请求AGV接口后返回的任务状态
 | 
				
			|||
        /// </summary>
 | 
				
			|||
        public string code { get; set; } | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
    public string reqCode { get; set; } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 任务单号
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public string taskCode { get; set; } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// AGV状态指令
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public string method { get; set; } | 
				
			|||
 | 
				
			|||
    public string reqTime { get; set; } | 
				
			|||
    public string wbCode { get; set; } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// AGV编号
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public string robotCode { get; set; } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 请求AGV接口后返回的成功失败或其他消息
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public string message { get; set; } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 请求AGV接口后返回的任务单号
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public string data { get; set; } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 请求AGV接口后返回的任务状态
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public string code { get; set; } | 
				
			|||
} | 
				
			|||
@ -1,362 +1,358 @@ | 
				
			|||
  | 
				
			|||
using System; | 
				
			|||
using System.Collections.Generic; | 
				
			|||
using System.IO; | 
				
			|||
using System.Linq; | 
				
			|||
using EC.Util.Common; | 
				
			|||
using System.Net; | 
				
			|||
using System.Text; | 
				
			|||
using System.Threading; | 
				
			|||
using System.Threading.Tasks; | 
				
			|||
 | 
				
			|||
namespace EC.Util.Net | 
				
			|||
namespace EC.Util.Net; | 
				
			|||
 | 
				
			|||
public class HttpServer | 
				
			|||
{ | 
				
			|||
    public class HttpServer | 
				
			|||
    public event EventHandler<APICallBack> OnRecData; //定义一个委托类型的事件
 | 
				
			|||
 | 
				
			|||
    #region
 | 
				
			|||
 | 
				
			|||
    public string Host { get; set; } | 
				
			|||
    public string port { get; set; } | 
				
			|||
    private string _webHomeDir = ""; | 
				
			|||
    private HttpListener listener; | 
				
			|||
    private Thread listenThread; | 
				
			|||
    private string directorySeparatorChar = Path.DirectorySeparatorChar.ToString(); | 
				
			|||
    public string ImageUploadPath { get; set; } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 设置监听端口,重启服务生效
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    //public string Port
 | 
				
			|||
    //{
 | 
				
			|||
    //    get { return this.port; }
 | 
				
			|||
    //    set
 | 
				
			|||
    //    {
 | 
				
			|||
    //        int p;
 | 
				
			|||
    //        if (string.IsNullOrEmpty(value) || !int.TryParse(value, out p))
 | 
				
			|||
    //        {
 | 
				
			|||
    //            throw new Exception("给http监听器赋值的端口号无效!");
 | 
				
			|||
    //        }
 | 
				
			|||
    //        this.port = value;
 | 
				
			|||
    //    }
 | 
				
			|||
    //}
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// http服务根目录
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public string WebHomeDir | 
				
			|||
    { | 
				
			|||
        | 
				
			|||
        public event EventHandler<APICallBack> OnRecData; //定义一个委托类型的事件  
 | 
				
			|||
        #region 
 | 
				
			|||
 | 
				
			|||
        public string Host { get; set; } | 
				
			|||
        public string port { get; set; } | 
				
			|||
        private string _webHomeDir = ""; | 
				
			|||
        private HttpListener listener; | 
				
			|||
        private Thread listenThread; | 
				
			|||
        private string directorySeparatorChar = Path.DirectorySeparatorChar.ToString(); | 
				
			|||
        public string ImageUploadPath { get; set; } | 
				
			|||
 | 
				
			|||
 | 
				
			|||
        /// <summary>  
 | 
				
			|||
        /// 设置监听端口,重启服务生效  
 | 
				
			|||
        /// </summary>  
 | 
				
			|||
        //public string Port  
 | 
				
			|||
        //{  
 | 
				
			|||
        //    get { return this.port; }  
 | 
				
			|||
        //    set  
 | 
				
			|||
        //    {  
 | 
				
			|||
        //        int p;  
 | 
				
			|||
        //        if (string.IsNullOrEmpty(value) || !int.TryParse(value, out p))  
 | 
				
			|||
        //        {  
 | 
				
			|||
        //            throw new Exception("给http监听器赋值的端口号无效!");  
 | 
				
			|||
        //        }  
 | 
				
			|||
        //        this.port = value;  
 | 
				
			|||
        //    }  
 | 
				
			|||
        //}  
 | 
				
			|||
        /// <summary>  
 | 
				
			|||
        /// http服务根目录  
 | 
				
			|||
        /// </summary>  
 | 
				
			|||
        public string WebHomeDir | 
				
			|||
        { | 
				
			|||
            get { return this._webHomeDir; } | 
				
			|||
            set | 
				
			|||
            { | 
				
			|||
                if (!Directory.Exists(value)) | 
				
			|||
                    throw new Exception("http服务器设置的根目录不存在!"); | 
				
			|||
                this._webHomeDir = value; | 
				
			|||
            } | 
				
			|||
        } | 
				
			|||
        /// <summary>  
 | 
				
			|||
        /// 服务器是否在运行  
 | 
				
			|||
        /// </summary>  
 | 
				
			|||
        public bool IsRunning | 
				
			|||
        get { return this._webHomeDir; } | 
				
			|||
        set | 
				
			|||
        { | 
				
			|||
            get { return (listener == null) ? false : listener.IsListening; } | 
				
			|||
            if (!Directory.Exists(value)) | 
				
			|||
                throw new Exception("http服务器设置的根目录不存在!"); | 
				
			|||
            this._webHomeDir = value; | 
				
			|||
        } | 
				
			|||
        #endregion
 | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 服务器是否在运行
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public bool IsRunning | 
				
			|||
    { | 
				
			|||
        get { return (listener == null) ? false : listener.IsListening; } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    #endregion
 | 
				
			|||
 | 
				
			|||
    #region
 | 
				
			|||
 | 
				
			|||
        #region
 | 
				
			|||
        public HttpServer( string host, string port, string webHomeDir, string imageUploadPath) | 
				
			|||
    public HttpServer(string host, string port, string webHomeDir, string imageUploadPath) | 
				
			|||
    { | 
				
			|||
        this.Host = host; | 
				
			|||
        this.port = port; | 
				
			|||
        this._webHomeDir = webHomeDir; | 
				
			|||
        ImageUploadPath = imageUploadPath; | 
				
			|||
        listener = new HttpListener(); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public bool AddPrefixes(string uriPrefix) | 
				
			|||
    { | 
				
			|||
        string uri = "http://" + uriPrefix + ":" + this.port + "/"; | 
				
			|||
        if (listener.Prefixes.Contains(uri)) return false; | 
				
			|||
        listener.Prefixes.Add(uri); | 
				
			|||
        return true; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 启动服务
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public void Start() | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
             | 
				
			|||
            this.Host = host; | 
				
			|||
            this.port = port; | 
				
			|||
            this._webHomeDir = webHomeDir; | 
				
			|||
            ImageUploadPath = imageUploadPath; | 
				
			|||
            listener = new HttpListener(); | 
				
			|||
        } | 
				
			|||
            if (listener.IsListening) | 
				
			|||
                return; | 
				
			|||
            if (!string.IsNullOrEmpty(Host) && Host.Length > 0) | 
				
			|||
                listener.Prefixes.Add("http://" + Host + ":" + this.port + "/"); //AGV/AGVAPI/agvCallback/
 | 
				
			|||
            else if (listener.Prefixes == null || listener.Prefixes.Count == 0) | 
				
			|||
                listener.Prefixes.Add("http://localhost:" + this.port + "/"); | 
				
			|||
            listener.Start(); | 
				
			|||
 | 
				
			|||
        public bool AddPrefixes(string uriPrefix) | 
				
			|||
            listenThread = new Thread(AcceptClient); | 
				
			|||
            listenThread.Name = "signserver"; | 
				
			|||
            listenThread.Start(); | 
				
			|||
            Log("开启接口监听服务:" + this.port); | 
				
			|||
        } | 
				
			|||
        catch (Exception ex) | 
				
			|||
        { | 
				
			|||
            string uri = "http://" + uriPrefix + ":" + this.port + "/"; | 
				
			|||
            if (listener.Prefixes.Contains(uri)) return false; | 
				
			|||
            listener.Prefixes.Add(uri); | 
				
			|||
            return true; | 
				
			|||
            LogUnit.Error(ex.Message); | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>  
 | 
				
			|||
        /// 启动服务  
 | 
				
			|||
        /// </summary>  
 | 
				
			|||
        public void Start() | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 停止服务
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    public void Stop() | 
				
			|||
    { | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                if (listener.IsListening) | 
				
			|||
                    return; | 
				
			|||
                if (!string.IsNullOrEmpty(Host) && Host.Length > 0) | 
				
			|||
                    listener.Prefixes.Add("http://" + Host + ":" + this.port + "/"); //AGV/AGVAPI/agvCallback/
 | 
				
			|||
                else if (listener.Prefixes == null || listener.Prefixes.Count == 0) | 
				
			|||
                    listener.Prefixes.Add("http://localhost:" + this.port + "/"); | 
				
			|||
                listener.Start(); | 
				
			|||
                | 
				
			|||
                listenThread = new Thread(AcceptClient); | 
				
			|||
                listenThread.Name = "signserver"; | 
				
			|||
                listenThread.Start(); | 
				
			|||
                Log("开启接口监听服务:"+ this.port); | 
				
			|||
 | 
				
			|||
            } | 
				
			|||
            catch (Exception ex) | 
				
			|||
            if (listener != null) | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(ex.Message); | 
				
			|||
                //listener.Close();
 | 
				
			|||
                //listener.Abort();
 | 
				
			|||
                listener.Stop(); | 
				
			|||
            } | 
				
			|||
        } | 
				
			|||
        catch (Exception ex) | 
				
			|||
        { | 
				
			|||
            LogUnit.Error(ex.Message); | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// /接受客户端请求
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    private void AcceptClient() | 
				
			|||
    { | 
				
			|||
        //int maxThreadNum, portThreadNum;
 | 
				
			|||
        ////线程池
 | 
				
			|||
        //int minThreadNum;
 | 
				
			|||
        //ThreadPool.GetMaxThreads(out maxThreadNum, out portThreadNum);
 | 
				
			|||
        //ThreadPool.GetMinThreads(out minThreadNum, out portThreadNum);
 | 
				
			|||
        //Console.WriteLine("最大线程数:{0}", maxThreadNum);
 | 
				
			|||
        //Console.WriteLine("最小空闲线程数:{0}", minThreadNum);
 | 
				
			|||
 | 
				
			|||
        } | 
				
			|||
        /// <summary>  
 | 
				
			|||
        /// 停止服务  
 | 
				
			|||
        /// </summary>  
 | 
				
			|||
        public void Stop() | 
				
			|||
        while (listener.IsListening) | 
				
			|||
        { | 
				
			|||
            try | 
				
			|||
            { | 
				
			|||
                if (listener != null) | 
				
			|||
                { | 
				
			|||
                    //listener.Close();
 | 
				
			|||
                    //listener.Abort();
 | 
				
			|||
                    listener.Stop(); | 
				
			|||
 | 
				
			|||
                } | 
				
			|||
                HttpListenerContext context = listener.GetContext(); | 
				
			|||
                //new Thread(HandleRequest).Start(context);
 | 
				
			|||
                ThreadPool.QueueUserWorkItem(new WaitCallback(HandleRequest), context); | 
				
			|||
            } | 
				
			|||
            catch (Exception ex) | 
				
			|||
            catch | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(ex.Message); | 
				
			|||
            } | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
        /// <summary>  
 | 
				
			|||
        /// /接受客户端请求  
 | 
				
			|||
        /// </summary>  
 | 
				
			|||
        void AcceptClient() | 
				
			|||
        { | 
				
			|||
            //int maxThreadNum, portThreadNum;
 | 
				
			|||
            ////线程池
 | 
				
			|||
            //int minThreadNum;
 | 
				
			|||
            //ThreadPool.GetMaxThreads(out maxThreadNum, out portThreadNum);
 | 
				
			|||
            //ThreadPool.GetMinThreads(out minThreadNum, out portThreadNum);
 | 
				
			|||
            //Console.WriteLine("最大线程数:{0}", maxThreadNum);
 | 
				
			|||
            //Console.WriteLine("最小空闲线程数:{0}", minThreadNum);
 | 
				
			|||
 | 
				
			|||
            while (listener.IsListening) | 
				
			|||
            { | 
				
			|||
                try | 
				
			|||
                { | 
				
			|||
                    HttpListenerContext context = listener.GetContext(); | 
				
			|||
                    //new Thread(HandleRequest).Start(context);
 | 
				
			|||
                    ThreadPool.QueueUserWorkItem(new WaitCallback(HandleRequest), context); | 
				
			|||
                } | 
				
			|||
                catch | 
				
			|||
                { | 
				
			|||
    #endregion
 | 
				
			|||
 | 
				
			|||
                } | 
				
			|||
            } | 
				
			|||
    #region HandleRequest
 | 
				
			|||
 | 
				
			|||
        } | 
				
			|||
        #endregion
 | 
				
			|||
         | 
				
			|||
        #region HandleRequest
 | 
				
			|||
        //处理客户端请求  
 | 
				
			|||
        private void HandleRequest(object ctx) | 
				
			|||
    //处理客户端请求
 | 
				
			|||
    private void HandleRequest(object ctx) | 
				
			|||
    { | 
				
			|||
        HttpListenerContext context = ctx as HttpListenerContext; | 
				
			|||
        HttpListenerResponse response = context.Response; | 
				
			|||
        HttpListenerRequest request = context.Request; | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            HttpListenerContext context = ctx as HttpListenerContext; | 
				
			|||
            HttpListenerResponse response = context.Response; | 
				
			|||
            HttpListenerRequest request = context.Request; | 
				
			|||
            try | 
				
			|||
            context.Request.Headers.Add("Access-Control-Allow-Origin", "*"); | 
				
			|||
            context.Response.Headers.Add("Access-Control-Allow-Origin", "*"); | 
				
			|||
            string rawUrl = System.Web.HttpUtility.UrlDecode(request.RawUrl); | 
				
			|||
            int paramStartIndex = rawUrl.IndexOf('?'); | 
				
			|||
            if (paramStartIndex > 0) | 
				
			|||
                rawUrl = rawUrl.Substring(0, paramStartIndex); | 
				
			|||
            else if (paramStartIndex == 0) | 
				
			|||
                rawUrl = ""; | 
				
			|||
            if (rawUrl.EndsWith("agvCallback")) | 
				
			|||
            { | 
				
			|||
                context.Request.Headers.Add("Access-Control-Allow-Origin", "*"); | 
				
			|||
                context.Response.Headers.Add("Access-Control-Allow-Origin", "*"); | 
				
			|||
                string rawUrl = System.Web.HttpUtility.UrlDecode(request.RawUrl); | 
				
			|||
                int paramStartIndex = rawUrl.IndexOf('?'); | 
				
			|||
                if (paramStartIndex > 0) | 
				
			|||
                    rawUrl = rawUrl.Substring(0, paramStartIndex); | 
				
			|||
                else if (paramStartIndex == 0) | 
				
			|||
                    rawUrl = ""; | 
				
			|||
                if ( rawUrl.EndsWith("agvCallback") ) { | 
				
			|||
 | 
				
			|||
                    APICallBack apiCallBack = new APICallBack(); | 
				
			|||
 | 
				
			|||
                    apiCallBack.reqCode = context.Request.QueryString["reqCode"];  | 
				
			|||
                    apiCallBack.taskCode = context.Request.QueryString["taskCode"];  | 
				
			|||
                    apiCallBack.method = context.Request.QueryString["method"];  | 
				
			|||
                    apiCallBack.wbCode = context.Request.QueryString["wbCode"];  | 
				
			|||
                    apiCallBack.robotCode = context.Request.QueryString["robotCode"]; | 
				
			|||
 | 
				
			|||
                    //接收POST参数 2020-5-30 
 | 
				
			|||
                    Stream stream = context.Request.InputStream; | 
				
			|||
                    System.IO.StreamReader reader = new System.IO.StreamReader(stream, Encoding.UTF8); | 
				
			|||
                    //整理应该是接收到的值
 | 
				
			|||
                    string body = reader.ReadToEnd(); | 
				
			|||
                    //FileUnit.Log(body);
 | 
				
			|||
                    //if (JsonUtil.JSONToObject<APICallBack>(body)!=null)
 | 
				
			|||
                    //{
 | 
				
			|||
                    //    apiCallBack = JsonUnit.JSONToObject<APICallBack>(body);
 | 
				
			|||
                    //}
 | 
				
			|||
                     | 
				
			|||
                    response.ContentType = "text/html;charset=utf-8"; | 
				
			|||
                    using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) | 
				
			|||
                    { | 
				
			|||
                        OnRecData?.Invoke(this, apiCallBack); | 
				
			|||
                         | 
				
			|||
                        string str = Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data = "调用成功", Message = "成功", ReqCode = apiCallBack.reqCode }); | 
				
			|||
                        writer.Write(str); | 
				
			|||
                    } | 
				
			|||
                APICallBack apiCallBack = new APICallBack(); | 
				
			|||
 | 
				
			|||
                    ////Response
 | 
				
			|||
                    //context.Response.StatusCode = 200;
 | 
				
			|||
                    //context.Response.Headers.Add("Access-Control-Allow-Origin", "*");
 | 
				
			|||
                    //context.Response.ContentType = "application/json";
 | 
				
			|||
                    //context.Response.ContentEncoding = Encoding.UTF8;
 | 
				
			|||
                    //byte[] buffer = System.Text.Encoding.UTF8.GetBytes(Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data= "调用成功", Message = "成功" , ReqCode ="",}));
 | 
				
			|||
                    //context.Response.ContentLength64 = buffer.Length;
 | 
				
			|||
                    //var output = context.Response.OutputStream;
 | 
				
			|||
                    //output.Write(buffer, 0, buffer.Length);
 | 
				
			|||
                    //output.Close();
 | 
				
			|||
                     | 
				
			|||
                } | 
				
			|||
                else if (string.Compare(rawUrl, "/ImageUpload", true) == 0) | 
				
			|||
                { | 
				
			|||
                    #region 上传图片
 | 
				
			|||
                    string fileName = context.Request.QueryString["name"]; | 
				
			|||
                    string filePath = ImageUploadPath + "\\" + DateTime.Now.ToString("yyMMdd_HHmmss_ffff") | 
				
			|||
                        + Path.GetExtension(fileName).ToLower(); | 
				
			|||
                    using (var stream = request.InputStream) | 
				
			|||
                    { | 
				
			|||
                        using (var br = new BinaryReader(stream)) | 
				
			|||
                        { | 
				
			|||
                            WriteStreamToFile(br, filePath, request.ContentLength64); | 
				
			|||
                        } | 
				
			|||
                    } | 
				
			|||
                    response.ContentType = "text/html;charset=utf-8"; | 
				
			|||
                apiCallBack.reqCode = context.Request.QueryString["reqCode"]; | 
				
			|||
                apiCallBack.taskCode = context.Request.QueryString["taskCode"]; | 
				
			|||
                apiCallBack.method = context.Request.QueryString["method"]; | 
				
			|||
                apiCallBack.wbCode = context.Request.QueryString["wbCode"]; | 
				
			|||
                apiCallBack.robotCode = context.Request.QueryString["robotCode"]; | 
				
			|||
 | 
				
			|||
                    using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) | 
				
			|||
                    { | 
				
			|||
                        writer.WriteLine("接收完成!"); | 
				
			|||
                    } | 
				
			|||
                //接收POST参数 2020-5-30
 | 
				
			|||
                Stream stream = context.Request.InputStream; | 
				
			|||
                System.IO.StreamReader reader = new System.IO.StreamReader(stream, Encoding.UTF8); | 
				
			|||
                //整理应该是接收到的值
 | 
				
			|||
                string body = reader.ReadToEnd(); | 
				
			|||
                //FileUnit.Log(body);
 | 
				
			|||
                //if (JsonUtil.JSONToObject<APICallBack>(body)!=null)
 | 
				
			|||
                //{
 | 
				
			|||
                //    apiCallBack = JsonUnit.JSONToObject<APICallBack>(body);
 | 
				
			|||
                //}
 | 
				
			|||
 | 
				
			|||
                    #endregion
 | 
				
			|||
                response.ContentType = "text/html;charset=utf-8"; | 
				
			|||
                using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) | 
				
			|||
                { | 
				
			|||
                    OnRecData?.Invoke(this, apiCallBack); | 
				
			|||
 | 
				
			|||
                    string str = Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data = "调用成功", Message = "成功", ReqCode = apiCallBack.reqCode }); | 
				
			|||
                    writer.Write(str); | 
				
			|||
                } | 
				
			|||
                else | 
				
			|||
 | 
				
			|||
                ////Response
 | 
				
			|||
                //context.Response.StatusCode = 200;
 | 
				
			|||
                //context.Response.Headers.Add("Access-Control-Allow-Origin", "*");
 | 
				
			|||
                //context.Response.ContentType = "application/json";
 | 
				
			|||
                //context.Response.ContentEncoding = Encoding.UTF8;
 | 
				
			|||
                //byte[] buffer = System.Text.Encoding.UTF8.GetBytes(Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data= "调用成功", Message = "成功" , ReqCode ="",}));
 | 
				
			|||
                //context.Response.ContentLength64 = buffer.Length;
 | 
				
			|||
                //var output = context.Response.OutputStream;
 | 
				
			|||
                //output.Write(buffer, 0, buffer.Length);
 | 
				
			|||
                //output.Close();
 | 
				
			|||
            } | 
				
			|||
            else if (string.Compare(rawUrl, "/ImageUpload", true) == 0) | 
				
			|||
            { | 
				
			|||
                #region 上传图片
 | 
				
			|||
                string fileName = context.Request.QueryString["name"]; | 
				
			|||
                string filePath = ImageUploadPath + "\\" + DateTime.Now.ToString("yyMMdd_HHmmss_ffff") | 
				
			|||
                    + Path.GetExtension(fileName).ToLower(); | 
				
			|||
                using (var stream = request.InputStream) | 
				
			|||
                { | 
				
			|||
                    #region 网页请求
 | 
				
			|||
                    string InputStream = ""; | 
				
			|||
                    using (var streamReader = new StreamReader(request.InputStream)) | 
				
			|||
                    { | 
				
			|||
                        InputStream = streamReader.ReadToEnd(); | 
				
			|||
                    } | 
				
			|||
                    string filePath = ""; | 
				
			|||
                    if (string.IsNullOrEmpty(rawUrl) || rawUrl.Length == 0 || rawUrl == "/") | 
				
			|||
                        filePath = WebHomeDir + directorySeparatorChar + "Index.html"; | 
				
			|||
                    else | 
				
			|||
                        filePath = WebHomeDir + rawUrl.Replace("/", directorySeparatorChar); | 
				
			|||
                    if (!File.Exists(filePath)) | 
				
			|||
                    { | 
				
			|||
                        response.ContentLength64 = 0; | 
				
			|||
                        response.StatusCode = 404; | 
				
			|||
                        response.Abort(); | 
				
			|||
                    } | 
				
			|||
                    else | 
				
			|||
                    using (var br = new BinaryReader(stream)) | 
				
			|||
                    { | 
				
			|||
                        response.StatusCode = 200; | 
				
			|||
                        string exeName = Path.GetExtension(filePath); | 
				
			|||
                        response.ContentType = GetContentType(exeName); | 
				
			|||
                        FileStream fileStream = new System.IO.FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read, FileShare.ReadWrite); | 
				
			|||
                        int byteLength = (int)fileStream.Length; | 
				
			|||
                        byte[] fileBytes = new byte[byteLength]; | 
				
			|||
                        fileStream.Read(fileBytes, 0, byteLength); | 
				
			|||
                        fileStream.Close(); | 
				
			|||
                        fileStream.Dispose(); | 
				
			|||
                        response.ContentLength64 = byteLength; | 
				
			|||
                        response.OutputStream.Write(fileBytes, 0, byteLength); | 
				
			|||
                        response.OutputStream.Close(); | 
				
			|||
                        WriteStreamToFile(br, filePath, request.ContentLength64); | 
				
			|||
                    } | 
				
			|||
                    #endregion
 | 
				
			|||
                } | 
				
			|||
            } | 
				
			|||
            catch (Exception ex) | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(ex.Message); | 
				
			|||
                response.StatusCode = 200; | 
				
			|||
                response.ContentType = "text/plain"; | 
				
			|||
                response.ContentType = "text/html;charset=utf-8"; | 
				
			|||
 | 
				
			|||
                using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) | 
				
			|||
                { | 
				
			|||
                    writer.WriteLine("接收完成!"); | 
				
			|||
                } | 
				
			|||
 | 
				
			|||
                #endregion
 | 
				
			|||
            } | 
				
			|||
            try | 
				
			|||
            else | 
				
			|||
            { | 
				
			|||
                response.Close(); | 
				
			|||
                #region 网页请求
 | 
				
			|||
                string InputStream = ""; | 
				
			|||
                using (var streamReader = new StreamReader(request.InputStream)) | 
				
			|||
                { | 
				
			|||
                    InputStream = streamReader.ReadToEnd(); | 
				
			|||
                } | 
				
			|||
                string filePath = ""; | 
				
			|||
                if (string.IsNullOrEmpty(rawUrl) || rawUrl.Length == 0 || rawUrl == "/") | 
				
			|||
                    filePath = WebHomeDir + directorySeparatorChar + "Index.html"; | 
				
			|||
                else | 
				
			|||
                    filePath = WebHomeDir + rawUrl.Replace("/", directorySeparatorChar); | 
				
			|||
                if (!File.Exists(filePath)) | 
				
			|||
                { | 
				
			|||
                    response.ContentLength64 = 0; | 
				
			|||
                    response.StatusCode = 404; | 
				
			|||
                    response.Abort(); | 
				
			|||
                } | 
				
			|||
                else | 
				
			|||
                { | 
				
			|||
                    response.StatusCode = 200; | 
				
			|||
                    string exeName = Path.GetExtension(filePath); | 
				
			|||
                    response.ContentType = GetContentType(exeName); | 
				
			|||
                    FileStream fileStream = new System.IO.FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read, FileShare.ReadWrite); | 
				
			|||
                    int byteLength = (int)fileStream.Length; | 
				
			|||
                    byte[] fileBytes = new byte[byteLength]; | 
				
			|||
                    fileStream.Read(fileBytes, 0, byteLength); | 
				
			|||
                    fileStream.Close(); | 
				
			|||
                    fileStream.Dispose(); | 
				
			|||
                    response.ContentLength64 = byteLength; | 
				
			|||
                    response.OutputStream.Write(fileBytes, 0, byteLength); | 
				
			|||
                    response.OutputStream.Close(); | 
				
			|||
                } | 
				
			|||
                #endregion
 | 
				
			|||
            } | 
				
			|||
            catch (Exception ex) | 
				
			|||
        } | 
				
			|||
        catch (Exception ex) | 
				
			|||
        { | 
				
			|||
            LogUnit.Error(ex.Message); | 
				
			|||
            response.StatusCode = 200; | 
				
			|||
            response.ContentType = "text/plain"; | 
				
			|||
            using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) | 
				
			|||
            { | 
				
			|||
                LogUnit.Error(ex.Message); | 
				
			|||
                writer.WriteLine("接收完成!"); | 
				
			|||
            } | 
				
			|||
        } | 
				
			|||
        #endregion
 | 
				
			|||
 | 
				
			|||
        #region GetContentType
 | 
				
			|||
        /// <summary>  
 | 
				
			|||
        /// 获取文件对应MIME类型  
 | 
				
			|||
        /// </summary>  
 | 
				
			|||
        /// <param name="fileExtention">文件扩展名,如.jpg</param>  
 | 
				
			|||
        /// <returns></returns>  
 | 
				
			|||
        protected string GetContentType(string fileExtention) | 
				
			|||
        try | 
				
			|||
        { | 
				
			|||
            if (string.Compare(fileExtention, ".html", true) == 0 | 
				
			|||
                        || string.Compare(fileExtention, ".htm", true) == 0) | 
				
			|||
                return "text/html;charset=utf-8"; | 
				
			|||
            else if (string.Compare(fileExtention, ".js", true) == 0) | 
				
			|||
                return "application/javascript"; | 
				
			|||
            else if (string.Compare(fileExtention, ".css", true) == 0) | 
				
			|||
                return "text/css"; | 
				
			|||
            else if (string.Compare(fileExtention, ".png", true) == 0) | 
				
			|||
                return "image/png"; | 
				
			|||
            else if (string.Compare(fileExtention, ".jpg", true) == 0 || string.Compare(fileExtention, ".jpeg", true) == 0) | 
				
			|||
                return "image/jpeg"; | 
				
			|||
            else if (string.Compare(fileExtention, ".gif", true) == 0) | 
				
			|||
                return "image/gif"; | 
				
			|||
            else if (string.Compare(fileExtention, ".swf", true) == 0) | 
				
			|||
                return "application/x-shockwave-flash"; | 
				
			|||
            else if (string.Compare(fileExtention, ".pdf", true) == 0) | 
				
			|||
                return "application/pdf"; | 
				
			|||
            else | 
				
			|||
                return "";//application/octet-stream
 | 
				
			|||
            response.Close(); | 
				
			|||
        } | 
				
			|||
        #endregion
 | 
				
			|||
        catch (Exception ex) | 
				
			|||
        { | 
				
			|||
            LogUnit.Error(ex.Message); | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    #endregion
 | 
				
			|||
 | 
				
			|||
    #region GetContentType
 | 
				
			|||
 | 
				
			|||
    /// <summary>
 | 
				
			|||
    /// 获取文件对应MIME类型
 | 
				
			|||
    /// </summary>
 | 
				
			|||
    /// <param name="fileExtention">文件扩展名,如.jpg</param>
 | 
				
			|||
    /// <returns></returns>
 | 
				
			|||
    protected string GetContentType(string fileExtention) | 
				
			|||
    { | 
				
			|||
        if (string.Compare(fileExtention, ".html", true) == 0 | 
				
			|||
                    || string.Compare(fileExtention, ".htm", true) == 0) | 
				
			|||
            return "text/html;charset=utf-8"; | 
				
			|||
        else if (string.Compare(fileExtention, ".js", true) == 0) | 
				
			|||
            return "application/javascript"; | 
				
			|||
        else if (string.Compare(fileExtention, ".css", true) == 0) | 
				
			|||
            return "text/css"; | 
				
			|||
        else if (string.Compare(fileExtention, ".png", true) == 0) | 
				
			|||
            return "image/png"; | 
				
			|||
        else if (string.Compare(fileExtention, ".jpg", true) == 0 || string.Compare(fileExtention, ".jpeg", true) == 0) | 
				
			|||
            return "image/jpeg"; | 
				
			|||
        else if (string.Compare(fileExtention, ".gif", true) == 0) | 
				
			|||
            return "image/gif"; | 
				
			|||
        else if (string.Compare(fileExtention, ".swf", true) == 0) | 
				
			|||
            return "application/x-shockwave-flash"; | 
				
			|||
        else if (string.Compare(fileExtention, ".pdf", true) == 0) | 
				
			|||
            return "application/pdf"; | 
				
			|||
        else | 
				
			|||
            return "";//application/octet-stream
 | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    #endregion
 | 
				
			|||
 | 
				
			|||
    #region WriteStreamToFile
 | 
				
			|||
 | 
				
			|||
        #region WriteStreamToFile
 | 
				
			|||
        //const int ChunkSize = 1024 * 1024;
 | 
				
			|||
        private void WriteStreamToFile(BinaryReader br, string fileName, long length) | 
				
			|||
    //const int ChunkSize = 1024 * 1024;
 | 
				
			|||
    private void WriteStreamToFile(BinaryReader br, string fileName, long length) | 
				
			|||
    { | 
				
			|||
        byte[] fileContents = new byte[] { }; | 
				
			|||
        var bytes = new byte[length]; | 
				
			|||
        int i = 0; | 
				
			|||
        while ((i = br.Read(bytes, 0, (int)length)) != 0) | 
				
			|||
        { | 
				
			|||
            byte[] fileContents = new byte[] { }; | 
				
			|||
            var bytes = new byte[length]; | 
				
			|||
            int i = 0; | 
				
			|||
            while ((i = br.Read(bytes, 0, (int)length)) != 0) | 
				
			|||
            { | 
				
			|||
                byte[] arr = new byte[fileContents.LongLength + i]; | 
				
			|||
                fileContents.CopyTo(arr, 0); | 
				
			|||
                Array.Copy(bytes, 0, arr, fileContents.Length, i); | 
				
			|||
                fileContents = arr; | 
				
			|||
            } | 
				
			|||
            byte[] arr = new byte[fileContents.LongLength + i]; | 
				
			|||
            fileContents.CopyTo(arr, 0); | 
				
			|||
            Array.Copy(bytes, 0, arr, fileContents.Length, i); | 
				
			|||
            fileContents = arr; | 
				
			|||
        } | 
				
			|||
 | 
				
			|||
            using (var fs = new FileStream(fileName, FileMode.Create)) | 
				
			|||
        using (var fs = new FileStream(fileName, FileMode.Create)) | 
				
			|||
        { | 
				
			|||
            using (var bw = new BinaryWriter(fs)) | 
				
			|||
            { | 
				
			|||
                using (var bw = new BinaryWriter(fs)) | 
				
			|||
                { | 
				
			|||
                    bw.Write(fileContents); | 
				
			|||
                } | 
				
			|||
                bw.Write(fileContents); | 
				
			|||
            } | 
				
			|||
        } | 
				
			|||
        #endregion
 | 
				
			|||
        public void Log(string msg, bool isErr = false) | 
				
			|||
        { | 
				
			|||
          //(msg, isErr);
 | 
				
			|||
        } | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
 | 
				
			|||
    #endregion
 | 
				
			|||
 | 
				
			|||
    public void Log(string msg, bool isErr = false) | 
				
			|||
    { | 
				
			|||
        //(msg, isErr);
 | 
				
			|||
    } | 
				
			|||
} | 
				
			|||
								
									
										File diff suppressed because it is too large
									
								
							
						
					@ -0,0 +1,14 @@ | 
				
			|||
namespace JiLinApp.Docking.Military; | 
				
			|||
 | 
				
			|||
public class MilitaryConfig | 
				
			|||
{ | 
				
			|||
    public string Url { get; set; } | 
				
			|||
 | 
				
			|||
    public string UserName { get; set; } | 
				
			|||
 | 
				
			|||
    public string Password { get; set; } | 
				
			|||
 | 
				
			|||
    public int RequestRetryTime { get; set; } | 
				
			|||
 | 
				
			|||
    public int RequestRetryInterval { get; set; } | 
				
			|||
} | 
				
			|||
@ -0,0 +1,18 @@ | 
				
			|||
namespace JiLinApp.Docking.Military; | 
				
			|||
 | 
				
			|||
public class CameraLinkageInfo | 
				
			|||
{ | 
				
			|||
    #region Fields
 | 
				
			|||
 | 
				
			|||
    public string Id { get; set; } | 
				
			|||
 | 
				
			|||
    public string DeviceId { get; set; } | 
				
			|||
 | 
				
			|||
    public string SensorId { get; set; } | 
				
			|||
 | 
				
			|||
    public string CameraId { get; set; } | 
				
			|||
 | 
				
			|||
    public int[] PresetIds { get; set; } | 
				
			|||
 | 
				
			|||
    #endregion Fields
 | 
				
			|||
} | 
				
			|||
@ -0,0 +1,158 @@ | 
				
			|||
using EC.Util.CameraSDK; | 
				
			|||
using EC.Util.Common; | 
				
			|||
using Flurl.Http; | 
				
			|||
using Newtonsoft.Json.Linq; | 
				
			|||
 | 
				
			|||
namespace JiLinApp.Docking.Military; | 
				
			|||
 | 
				
			|||
public class MilitaryService | 
				
			|||
{ | 
				
			|||
    #region Fields
 | 
				
			|||
 | 
				
			|||
    private MilitaryConfig Config { get; } | 
				
			|||
 | 
				
			|||
    private string Token { get; set; } | 
				
			|||
 | 
				
			|||
    #endregion Fields
 | 
				
			|||
 | 
				
			|||
    public MilitaryService(MilitaryConfig config) | 
				
			|||
    { | 
				
			|||
        Config = config; | 
				
			|||
        Token = Login(); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    #region Base
 | 
				
			|||
 | 
				
			|||
    private string GetUrl() | 
				
			|||
    { | 
				
			|||
        return Config.Url; | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    #endregion Base
 | 
				
			|||
 | 
				
			|||
    #region Cmd
 | 
				
			|||
 | 
				
			|||
    public string Login() | 
				
			|||
    { | 
				
			|||
        string url = $"{GetUrl()}/sys/login"; | 
				
			|||
        object data = new | 
				
			|||
        { | 
				
			|||
            username = Config.UserName, | 
				
			|||
            password = Config.Password, | 
				
			|||
        }; | 
				
			|||
        JObject response = new(); | 
				
			|||
        for (int i = 0; i < Config.RequestRetryTime; i++) | 
				
			|||
        { | 
				
			|||
            response = url.PostJsonAsync(data).ReceiveJson<JObject>().Result; | 
				
			|||
            bool success = response["success"].ToBoolean(); | 
				
			|||
            if (!success) | 
				
			|||
            { | 
				
			|||
                Thread.Sleep(Config.RequestRetryInterval); | 
				
			|||
                continue; | 
				
			|||
            } | 
				
			|||
            string? token = response["result"]?["token"]?.ToString(); | 
				
			|||
            return token ?? string.Empty; | 
				
			|||
        } | 
				
			|||
        string? message = response["message"]?.ToString(); | 
				
			|||
        throw new Exception(message); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public List<CameraInfo> GetCameraList() | 
				
			|||
    { | 
				
			|||
        string url = $"{GetUrl()}/camera/setting/list"; | 
				
			|||
        JObject response = new(); | 
				
			|||
        for (int i = 0; i < Config.RequestRetryTime; i++) | 
				
			|||
        { | 
				
			|||
            response = url.GetAsync().ReceiveJson<JObject>().Result; | 
				
			|||
            bool success = response["success"].ToBoolean(); | 
				
			|||
            if (!success) | 
				
			|||
            { | 
				
			|||
                Thread.Sleep(Config.RequestRetryInterval); | 
				
			|||
                continue; | 
				
			|||
            } | 
				
			|||
            JToken records = response?["result"]?["records"] ?? new JObject(); | 
				
			|||
            List<CameraInfo> list = new(); | 
				
			|||
            foreach (var item in records) | 
				
			|||
            { | 
				
			|||
                CameraManufactor manufactor; | 
				
			|||
                string factory = item?["factory_dictText"]?.ToString() ?? string.Empty; | 
				
			|||
                if (factory.Contains("海康威视")) manufactor = CameraManufactor.HiK; | 
				
			|||
                else if (factory.Contains("大华")) manufactor = CameraManufactor.DaHua; | 
				
			|||
                else if (factory.Contains("宇视")) manufactor = CameraManufactor.YuShi; | 
				
			|||
                else continue; | 
				
			|||
                string id = item?["id"]?.ToString() ?? string.Empty; | 
				
			|||
                string ip = item?["ip"]?.ToString() ?? string.Empty; | 
				
			|||
                string username = item?["user"]?.ToString() ?? string.Empty; | 
				
			|||
                string password = item?["password"]?.ToString() ?? string.Empty; | 
				
			|||
                if (VerifyUtil.IsEmpty(id) || !VerifyUtil.IsIp(ip) || VerifyUtil.IsEmpty(username) || VerifyUtil.IsEmpty(password)) continue; | 
				
			|||
                CameraInfo info = CameraInfo.New(manufactor, ip, username, password); | 
				
			|||
                info.Id = id; | 
				
			|||
                list.Add(info); | 
				
			|||
            } | 
				
			|||
            return list; | 
				
			|||
        } | 
				
			|||
        string? message = response["message"]?.ToString(); | 
				
			|||
        throw new Exception(message); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public List<object> GetFencesInfoList() | 
				
			|||
    { | 
				
			|||
        string url = $"{GetUrl()}/msFencesInfo/list"; | 
				
			|||
        JObject response = new(); | 
				
			|||
        for (int i = 0; i < Config.RequestRetryTime; i++) | 
				
			|||
        { | 
				
			|||
            response = url.WithHeader("X-Access-Token", Token).GetAsync().ReceiveJson<JObject>().Result; | 
				
			|||
            bool success = response["success"].ToBoolean(); | 
				
			|||
            if (!success) | 
				
			|||
            { | 
				
			|||
                Thread.Sleep(Config.RequestRetryInterval); | 
				
			|||
                continue; | 
				
			|||
            } | 
				
			|||
            return new List<object>(); | 
				
			|||
        } | 
				
			|||
        string? message = response["message"]?.ToString(); | 
				
			|||
        throw new Exception(message); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    public List<CameraLinkageInfo> GetCameraLinkageList() | 
				
			|||
    { | 
				
			|||
        string url = $"{GetUrl()}/military/MsCameraLinkage/list"; | 
				
			|||
        JObject response = new(); | 
				
			|||
        for (int i = 0; i < Config.RequestRetryTime; i++) | 
				
			|||
        { | 
				
			|||
            response = url.GetAsync().ReceiveJson<JObject>().Result; | 
				
			|||
            bool success = response["success"].ToBoolean(); | 
				
			|||
            if (!success) | 
				
			|||
            { | 
				
			|||
                Thread.Sleep(Config.RequestRetryInterval); | 
				
			|||
                continue; | 
				
			|||
            } | 
				
			|||
            JToken records = response?["result"]?["records"] ?? new JObject(); | 
				
			|||
            List<CameraLinkageInfo> list = new(); | 
				
			|||
            foreach (var item in records) | 
				
			|||
            { | 
				
			|||
                string id = item?["id"]?.ToString() ?? string.Empty; | 
				
			|||
                //string deviceId = item?["deviceId"]?.ToString() ?? string.Empty;
 | 
				
			|||
                string deviceId = "0"; | 
				
			|||
                string sensorId = item?["objCode"]?.ToString() ?? string.Empty; | 
				
			|||
                string cameraId = item?["cameraId"]?.ToString() ?? string.Empty; | 
				
			|||
                string placements = item?["placements"]?.ToString() ?? string.Empty; | 
				
			|||
                int[] presetIds = Array.ConvertAll(placements.Split(","), int.Parse); | 
				
			|||
                if (VerifyUtil.IsEmpty(id) || VerifyUtil.IsEmpty(sensorId) || VerifyUtil.IsEmpty(cameraId)) continue; | 
				
			|||
                list.Add(new() | 
				
			|||
                { | 
				
			|||
                    Id = id, | 
				
			|||
                    DeviceId = deviceId, | 
				
			|||
                    SensorId = sensorId, | 
				
			|||
                    CameraId = cameraId, | 
				
			|||
                    PresetIds = presetIds | 
				
			|||
                }); | 
				
			|||
            } | 
				
			|||
            return list; | 
				
			|||
        } | 
				
			|||
        string? message = response["message"]?.ToString(); | 
				
			|||
        throw new Exception(message); | 
				
			|||
    } | 
				
			|||
 | 
				
			|||
    #endregion Cmd
 | 
				
			|||
} | 
				
			|||
					Loading…
					
					
				
		Reference in new issue