|
@@ -29,19 +29,40 @@ namespace MySystem
|
|
|
{
|
|
|
while (true)
|
|
|
{
|
|
|
- try
|
|
|
+ string data = RedisDbconn.Instance.RPop<string>("GetTencentAddressInfoQueue");
|
|
|
+ if (!string.IsNullOrEmpty(data))
|
|
|
{
|
|
|
- string data = RedisDbconn.Instance.RPop<string>("GetTencentAddressInfoQueue");
|
|
|
- JsonData jsonObj = JsonMapper.ToObject(data);
|
|
|
- int Address = int.Parse(jsonObj["Data"]["Address"].ToString());
|
|
|
- var Key = Library.ConfigurationManager.AppSettings["TencentKey"].ToString();
|
|
|
- var info = function.GetWebRequest("https://apis.map.qq.com/ws/geocoder/v1/?address=" + Address + "&key=" + Key);
|
|
|
+ try
|
|
|
+ {
|
|
|
+ JsonData jsonObj = JsonMapper.ToObject(data);
|
|
|
+ int Id = int.Parse(jsonObj["Data"]["MerchantId"].ToString());
|
|
|
+ string Address = jsonObj["Data"]["Address"].ToString();
|
|
|
+ string Key = Library.ConfigurationManager.AppSettings["TencentKey"].ToString();
|
|
|
+ var info = function.GetWebRequest("https://apis.map.qq.com/ws/geocoder/v1/?address=" + Address + "&key=" + Key);
|
|
|
+ JsonData result = JsonMapper.ToObject(info);
|
|
|
+ //创建成功
|
|
|
+ if (result["status"].ToString() == "0")
|
|
|
+ {
|
|
|
+ WebCMSEntities db = new WebCMSEntities();
|
|
|
+ var merInfo = db.MerchantInfo.FirstOrDefault(m => m.Id == Id) ?? new MerchantInfo();
|
|
|
+ if (merInfo.Id > 0)
|
|
|
+ {
|
|
|
+ merInfo.Longitude = decimal.Parse(result["result"]["location"]["lng"].ToString());
|
|
|
+ merInfo.Latitude = decimal.Parse(result["result"]["location"]["lat"].ToString());
|
|
|
+ db.SaveChanges();
|
|
|
+ db.Dispose();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ catch (Exception ex)
|
|
|
+ {
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "获取腾讯地图地址线程异常");
|
|
|
+ }
|
|
|
}
|
|
|
- catch (Exception ex)
|
|
|
+ else
|
|
|
{
|
|
|
- function.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "获取腾讯地图地址线程异常");
|
|
|
+ Thread.Sleep(60000);
|
|
|
}
|
|
|
- Thread.Sleep(100000);
|
|
|
}
|
|
|
}
|
|
|
}
|