|
@@ -40,12 +40,56 @@ namespace Filters
|
|
|
content = Decrypt(content);
|
|
|
if(!string.IsNullOrEmpty(content))
|
|
|
{
|
|
|
- Dictionary<string, string> dic = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, string>>(content);
|
|
|
+ Dictionary<string, object> dic = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, object>>(content);
|
|
|
+
|
|
|
string queryString = "";
|
|
|
- foreach(string key in dic.Keys)
|
|
|
+ var parameters = context.ActionDescriptor.Parameters;
|
|
|
+ foreach(var parameter in parameters)
|
|
|
{
|
|
|
- queryString += key + "=" + dic[key] + "&";
|
|
|
+ string parameterName = parameter.Name;
|
|
|
+ Type objectType = parameter.ParameterType;
|
|
|
+ if(objectType.FullName != "System.String")
|
|
|
+ {
|
|
|
+ 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++)
|
|
|
+ {
|
|
|
+ foreach (string key in dic.Keys)
|
|
|
+ {
|
|
|
+ if (propertyInfos[i].Name == key)
|
|
|
+ {
|
|
|
+ object value = dic[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 = "";
|
|
|
+ queryString += key + "=" + value.ToString() + "&";
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
+
|
|
|
request.QueryString = new QueryString("?" + queryString.TrimEnd('&'));
|
|
|
}
|
|
|
}
|