lcl hai 9 meses
pai
achega
cdc0662367
Modificáronse 2 ficheiros con 48 adicións e 4 borrados
  1. 47 3
      Filters/AuthorizationFilter.cs
  2. 1 1
      Filters/GlobalActionMonitor.cs

+ 47 - 3
Filters/AuthorizationFilter.cs

@@ -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('&'));
                     }
                 }

+ 1 - 1
Filters/GlobalActionMonitor.cs

@@ -64,7 +64,7 @@ namespace Middleware
                 {                
                     if(content.Contains("{") && content.Contains("}") && content != "{}")
                     {
-                        Dictionary<string, object> dictionary = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, object>>(content);
+                        Dictionary<string, string> dictionary = Newtonsoft.Json.JsonConvert.DeserializeObject<Dictionary<string, string>>(content);
                         if(context.ActionDescriptor.Parameters.Count > 0)
                         {
                             var parameters = context.ActionDescriptor.Parameters;