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; |
|||
} |
|||
} |
@ -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; //定义一个委托类型的事件
|
|||
|
|||
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 |
|||
#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 |
|||
{ |
|||
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
|
|||
public HttpServer( string host, string port, string webHomeDir, string imageUploadPath) |
|||
#region
|
|||
|
|||
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 |
|||
{ |
|||
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(); |
|||
|
|||
this.Host = host; |
|||
this.port = port; |
|||
this._webHomeDir = webHomeDir; |
|||
ImageUploadPath = imageUploadPath; |
|||
listener = new HttpListener(); |
|||
listenThread = new Thread(AcceptClient); |
|||
listenThread.Name = "signserver"; |
|||
listenThread.Start(); |
|||
Log("开启接口监听服务:" + this.port); |
|||
} |
|||
|
|||
public bool AddPrefixes(string uriPrefix) |
|||
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
|
|||
|
|||
} |
|||
#endregion
|
|||
#region HandleRequest
|
|||
|
|||
#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); |
|||
APICallBack apiCallBack = new APICallBack(); |
|||
|
|||
string str = Newtonsoft.Json.JsonConvert.SerializeObject(new { Code = "0", Data = "调用成功", Message = "成功", ReqCode = apiCallBack.reqCode }); |
|||
writer.Write(str); |
|||
} |
|||
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"]; |
|||
|
|||
////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();
|
|||
//接收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);
|
|||
//}
|
|||
|
|||
} |
|||
else if (string.Compare(rawUrl, "/ImageUpload", true) == 0) |
|||
response.ContentType = "text/html;charset=utf-8"; |
|||
using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) |
|||
{ |
|||
#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"; |
|||
OnRecData?.Invoke(this, apiCallBack); |
|||
|
|||
using (StreamWriter writer = new StreamWriter(response.OutputStream, Encoding.UTF8)) |
|||
{ |
|||
writer.WriteLine("接收完成!"); |
|||
} |
|||
|
|||
#endregion
|
|||
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)) |
|||
using (var br = new BinaryReader(stream)) |
|||
{ |
|||
response.ContentLength64 = 0; |
|||
response.StatusCode = 404; |
|||
response.Abort(); |
|||
WriteStreamToFile(br, filePath, request.ContentLength64); |
|||
} |
|||
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) |
|||
{ |
|||
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