|
@@ -32,126 +32,129 @@ namespace Middleware
|
|
|
/// <returns></returns>
|
|
|
public override Task OnActionExecutionAsync(ActionExecutingContext context, ActionExecutionDelegate next)
|
|
|
{
|
|
|
- string content = "";
|
|
|
- if(context.HttpContext.Request.Method.ToLower() == "get")
|
|
|
+ if(!context.HttpContext.Request.Path.Value.ToLower().Contains("feign/"))
|
|
|
{
|
|
|
- content = context.HttpContext.GetQueryString();
|
|
|
- content = content.Substring(content.IndexOf("?") + 1);
|
|
|
- if(!string.IsNullOrEmpty(content))
|
|
|
+ string content = "";
|
|
|
+ if(context.HttpContext.Request.Method.ToLower() == "get")
|
|
|
{
|
|
|
- string jsonString = "";
|
|
|
- string[] dataList = content.Split('&');
|
|
|
- foreach(string sub in dataList)
|
|
|
+ content = context.HttpContext.GetQueryString();
|
|
|
+ content = content.Substring(content.IndexOf("?") + 1);
|
|
|
+ if(!string.IsNullOrEmpty(content))
|
|
|
{
|
|
|
- string[] item = sub.Split('=');
|
|
|
- jsonString += "\"" + item[0] + "\":\"" + item[1] + "\",";
|
|
|
+ string jsonString = "";
|
|
|
+ string[] dataList = content.Split('&');
|
|
|
+ foreach(string sub in dataList)
|
|
|
+ {
|
|
|
+ string[] item = sub.Split('=');
|
|
|
+ jsonString += "\"" + item[0] + "\":\"" + item[1] + "\",";
|
|
|
+ }
|
|
|
+ content = "{" + jsonString.TrimEnd(',') + "}";
|
|
|
}
|
|
|
- content = "{" + jsonString.TrimEnd(',') + "}";
|
|
|
}
|
|
|
- }
|
|
|
- else if(context.HttpContext.Request.Method.ToLower() == "delete")
|
|
|
- {
|
|
|
- string path = context.HttpContext.Request.Path.Value;
|
|
|
- content = path.Substring(path.LastIndexOf("/") + 1);
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- content = context.HttpContext.GetBody();
|
|
|
- }
|
|
|
- if(!string.IsNullOrEmpty(content))
|
|
|
- {
|
|
|
- if(content.Contains("{") && content.Contains("}") && content != "{}")
|
|
|
+ else if(context.HttpContext.Request.Method.ToLower() == "delete")
|
|
|
{
|
|
|
- Dictionary<string, object> dictionary = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, object>>(content);
|
|
|
- if(context.ActionDescriptor.Parameters.Count > 0)
|
|
|
+ string path = context.HttpContext.Request.Path.Value;
|
|
|
+ content = path.Substring(path.LastIndexOf("/") + 1);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ content = context.HttpContext.GetBody();
|
|
|
+ }
|
|
|
+ if(!string.IsNullOrEmpty(content))
|
|
|
+ {
|
|
|
+ if(content.Contains("{") && content.Contains("}") && content != "{}")
|
|
|
{
|
|
|
- var parameters = context.ActionDescriptor.Parameters;
|
|
|
- foreach(var parameter in parameters)
|
|
|
+ Dictionary<string, object> dictionary = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, object>>(content);
|
|
|
+ if(context.ActionDescriptor.Parameters.Count > 0)
|
|
|
{
|
|
|
- string parameterName = parameter.Name;
|
|
|
- Type objectType = parameter.ParameterType;
|
|
|
- if(objectType.FullName != "System.String")
|
|
|
+ var parameters = context.ActionDescriptor.Parameters;
|
|
|
+ foreach(var parameter in parameters)
|
|
|
{
|
|
|
- System.Reflection.Assembly assembly = System.Reflection.Assembly.GetAssembly(objectType);
|
|
|
- var entry = assembly.CreateInstance(objectType.FullName);
|
|
|
- Type type = entry.GetType();
|
|
|
- System.Reflection.PropertyInfo[] propertyInfos = type.GetProperties();
|
|
|
- for (int i = 0; i < propertyInfos.Length; i++)
|
|
|
+ string parameterName = parameter.Name;
|
|
|
+ Type objectType = parameter.ParameterType;
|
|
|
+ if(objectType.FullName != "System.String")
|
|
|
{
|
|
|
- foreach (string key in dictionary.Keys)
|
|
|
+ System.Reflection.Assembly assembly = System.Reflection.Assembly.GetAssembly(objectType);
|
|
|
+ var entry = assembly.CreateInstance(objectType.FullName);
|
|
|
+ Type type = entry.GetType();
|
|
|
+ System.Reflection.PropertyInfo[] propertyInfos = type.GetProperties();
|
|
|
+ for (int i = 0; i < propertyInfos.Length; i++)
|
|
|
{
|
|
|
- if (propertyInfos[i].Name == key)
|
|
|
+ foreach (string key in dictionary.Keys)
|
|
|
{
|
|
|
- object value = dictionary[key];
|
|
|
- string ParameterType = propertyInfos[i].GetMethod.ReturnParameter.ParameterType.Name;
|
|
|
- if (ParameterType == "Int32")
|
|
|
- {
|
|
|
- if(value == null || value == "") value = "0";
|
|
|
- value = Convert.ToInt32(value);
|
|
|
- }
|
|
|
- else if (ParameterType == "Int64[]")
|
|
|
- {
|
|
|
- value = Tools.SpitLongArrary(Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"'), ',');
|
|
|
- }
|
|
|
- else if (ParameterType == "Int32[]")
|
|
|
- {
|
|
|
- value = Tools.SpitIntArrary(Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"'), ',');
|
|
|
- }
|
|
|
- else if (ParameterType == "List`1")
|
|
|
+ if (propertyInfos[i].Name == key)
|
|
|
{
|
|
|
- string val = Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"');
|
|
|
- value = Tools.SpitLongArrary(val, ',').ToList();
|
|
|
+ object value = dictionary[key];
|
|
|
+ string ParameterType = propertyInfos[i].GetMethod.ReturnParameter.ParameterType.Name;
|
|
|
+ if (ParameterType == "Int32")
|
|
|
+ {
|
|
|
+ if(value == null || value == "") value = "0";
|
|
|
+ value = Convert.ToInt32(value);
|
|
|
+ }
|
|
|
+ else if (ParameterType == "Int64[]")
|
|
|
+ {
|
|
|
+ value = Tools.SpitLongArrary(Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"'), ',');
|
|
|
+ }
|
|
|
+ else if (ParameterType == "Int32[]")
|
|
|
+ {
|
|
|
+ value = Tools.SpitIntArrary(Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"'), ',');
|
|
|
+ }
|
|
|
+ else if (ParameterType == "List`1")
|
|
|
+ {
|
|
|
+ string val = Newtonsoft.Json.JsonConvert.SerializeObject(value).Replace("[", "").Replace("]", "").Trim('"');
|
|
|
+ value = Tools.SpitLongArrary(val, ',').ToList();
|
|
|
+ }
|
|
|
+ if(value.ToString() == "-1") value = -1;
|
|
|
+ if(value.ToString() == "[]") value = "";
|
|
|
+ propertyInfos[i].SetValue(entry, value, null);
|
|
|
+ break;
|
|
|
}
|
|
|
- if(value.ToString() == "-1") value = -1;
|
|
|
- if(value.ToString() == "[]") value = "";
|
|
|
- propertyInfos[i].SetValue(entry, value, null);
|
|
|
- break;
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
- if(context.ActionArguments.ContainsKey(parameterName))
|
|
|
- {
|
|
|
- context.ActionArguments[parameterName] = entry;
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- context.ActionArguments.Add(parameterName, entry);
|
|
|
+ if(context.ActionArguments.ContainsKey(parameterName))
|
|
|
+ {
|
|
|
+ context.ActionArguments[parameterName] = entry;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ context.ActionArguments.Add(parameterName, entry);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- string ParamName = context.ActionDescriptor.Parameters[0].Name;
|
|
|
- if(context.ActionArguments.ContainsKey(ParamName))
|
|
|
- {
|
|
|
- context.ActionArguments[ParamName] = Convert.ToInt32(content);
|
|
|
- }
|
|
|
else
|
|
|
{
|
|
|
- context.ActionArguments.Add(ParamName, Convert.ToInt32(content));
|
|
|
+ string ParamName = context.ActionDescriptor.Parameters[0].Name;
|
|
|
+ if(context.ActionArguments.ContainsKey(ParamName))
|
|
|
+ {
|
|
|
+ context.ActionArguments[ParamName] = Convert.ToInt32(content);
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ context.ActionArguments.Add(ParamName, Convert.ToInt32(content));
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- if(context.ActionDescriptor.Parameters.Count > 0)
|
|
|
+ else
|
|
|
{
|
|
|
- string ParamName = context.ActionArguments.Keys.First();
|
|
|
- object ParamValue = context.ActionArguments.Values.First();
|
|
|
- // ParamValue = DesDecrypt(ParamValue.ToString());
|
|
|
- if(ParamValue.GetType() == typeof(int))
|
|
|
- {
|
|
|
- ParamValue = (int)ParamValue;
|
|
|
- }
|
|
|
- if(context.ActionArguments.ContainsKey(ParamName))
|
|
|
- {
|
|
|
- context.ActionArguments[ParamName] = ParamValue;
|
|
|
- }
|
|
|
- else
|
|
|
+ if(context.ActionDescriptor.Parameters.Count > 0)
|
|
|
{
|
|
|
- context.ActionArguments.Add(ParamName, ParamValue);
|
|
|
+ string ParamName = context.ActionArguments.Keys.First();
|
|
|
+ object ParamValue = context.ActionArguments.Values.First();
|
|
|
+ // ParamValue = DesDecrypt(ParamValue.ToString());
|
|
|
+ if(ParamValue.GetType() == typeof(int))
|
|
|
+ {
|
|
|
+ ParamValue = (int)ParamValue;
|
|
|
+ }
|
|
|
+ if(context.ActionArguments.ContainsKey(ParamName))
|
|
|
+ {
|
|
|
+ context.ActionArguments[ParamName] = ParamValue;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ context.ActionArguments.Add(ParamName, ParamValue);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|