ErpGetuiApiSDK.cs 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. using com.igetui.api.openservice;
  2. using com.igetui.api.openservice.igetui;
  3. using com.igetui.api.openservice.igetui.template;
  4. using com.igetui.api.openservice.payload;
  5. using LYFZ.WanYuKeFuData.Model;
  6. using Newtonsoft.Json;
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Linq;
  10. using System.Web;
  11. namespace LYFZ.WanYuKeFu
  12. {
  13. public class ErpGetuiApiSDK
  14. {
  15. public ErpGetuiApiSDK()
  16. {
  17. }
  18. #region 生产环境配置
  19. static string _APPID = "";
  20. public static string APPID
  21. {
  22. get { return ErpGetuiApiSDK._APPID; }
  23. // set { ErpGetuiApiSDK._APPID = value; }
  24. }
  25. static string _APPKEY = "";
  26. public static string APPKEY
  27. {
  28. get { return ErpGetuiApiSDK._APPKEY; }
  29. //set { ErpGetuiApiSDK._APPKEY = value; }
  30. }
  31. static string _AppSecret = "";
  32. public static string AppSecret
  33. {
  34. get { return ErpGetuiApiSDK._AppSecret; }
  35. // set { ErpGetuiApiSDK._AppSecret = value; }
  36. }
  37. static string _MASTERSECRET = "";
  38. public static string MASTERSECRET
  39. {
  40. get { return ErpGetuiApiSDK._MASTERSECRET; }
  41. // set { ErpGetuiApiSDK._MASTERSECRET = value; }
  42. }
  43. static string _HOST = "";
  44. public static string HOST
  45. {
  46. get { return ErpGetuiApiSDK._HOST; }
  47. // set { ErpGetuiApiSDK._HOST = value; }
  48. }
  49. #endregion
  50. #region 开发环境配置
  51. static string _Dev_APPID = "";
  52. public static string Dev_APPID
  53. {
  54. get { return ErpGetuiApiSDK._Dev_APPID; }
  55. }
  56. static string _Dev_APPKEY = "";
  57. public static string Dev_APPKEY
  58. {
  59. get { return ErpGetuiApiSDK._Dev_APPKEY; }
  60. }
  61. static string _Dev_AppSecret = "";
  62. public static string Dev_AppSecret
  63. {
  64. get { return ErpGetuiApiSDK._Dev_AppSecret; }
  65. }
  66. static string _Dev_MASTERSECRET = "";
  67. public static string Dev_MASTERSECRET
  68. {
  69. get { return ErpGetuiApiSDK._Dev_MASTERSECRET; }
  70. }
  71. static string _Dev_HOST = "";
  72. public static string Dev_HOST
  73. {
  74. get { return ErpGetuiApiSDK._Dev_HOST; }
  75. }
  76. #endregion
  77. static string _WanYuKFUrl = "";
  78. public static string WanYuKFUrl
  79. {
  80. get { return ErpGetuiApiSDK._WanYuKFUrl; }
  81. }
  82. public static void LoadGetuiApiSDKConfig()
  83. {
  84. string configString = System.IO.File.ReadAllText(LYFZ.WinAPI.CustomPublicMethod.GetFullDirectoryPath(LYFZ.WinAPI.CustomPublicMethod.BasePath)+"admin\\json\\systemParameter.json",System.Text.Encoding.UTF8);
  85. dynamic configJson = JsonConvert.DeserializeObject(configString);
  86. string GetuiAPI = configJson["GetuiAPI"].Value;
  87. ErpGetuiApiSDK._WanYuKFUrl = configJson["WanYuKFUrl"].Value;
  88. ErpGetuiApiSDK._Dev_APPID = configJson["DevAPPID"].Value;
  89. ErpGetuiApiSDK._Dev_APPKEY = configJson["DevAPPKEY"].Value;
  90. ErpGetuiApiSDK._Dev_AppSecret = configJson["DevAppSecret"].Value;
  91. ErpGetuiApiSDK._Dev_MASTERSECRET = configJson["DevMASTERSECRET"].Value;
  92. ErpGetuiApiSDK._Dev_HOST = configJson["DevHOST"].Value;
  93. ErpGetuiApiSDK._APPID = configJson["APPID"].Value;
  94. ErpGetuiApiSDK._APPKEY = configJson["APPKEY"].Value;
  95. ErpGetuiApiSDK._AppSecret = configJson["AppSecret"].Value;
  96. ErpGetuiApiSDK._MASTERSECRET = configJson["MASTERSECRET"].Value;
  97. ErpGetuiApiSDK._HOST = configJson["HOST"].Value;
  98. /* ErpGetuiApiSDK._APPID = ErpGetuiApiSDK._Dev_APPID;
  99. ErpGetuiApiSDK._APPKEY = ErpGetuiApiSDK._Dev_APPKEY;
  100. ErpGetuiApiSDK._AppSecret = ErpGetuiApiSDK._Dev_AppSecret;
  101. ErpGetuiApiSDK._MASTERSECRET = ErpGetuiApiSDK._Dev_MASTERSECRET;
  102. ErpGetuiApiSDK._HOST = ErpGetuiApiSDK._Dev_HOST;
  103. */
  104. Global.WriteLog(String.Format("Pro ErpGetuiApiSDK._APPID:{0} ErpGetuiApiSDK._APPKEY:{1} ErpGetuiApiSDK._AppSecret:{2} ErpGetuiApiSDK._MASTERSECRET:{3} ErpGetuiApiSDK._HOST:{4}", ErpGetuiApiSDK._APPID, ErpGetuiApiSDK._APPKEY, ErpGetuiApiSDK._AppSecret, ErpGetuiApiSDK._MASTERSECRET, ErpGetuiApiSDK._HOST), "-1", Global.LogsDongleDomainList);
  105. Global.WriteLog(String.Format("Dev ErpGetuiApiSDK._APPID:{0} ErpGetuiApiSDK._APPKEY:{1} ErpGetuiApiSDK._AppSecret:{2} ErpGetuiApiSDK._MASTERSECRET:{3} ErpGetuiApiSDK._HOST:{4}", ErpGetuiApiSDK._Dev_APPID, ErpGetuiApiSDK._Dev_APPKEY, ErpGetuiApiSDK._Dev_AppSecret, ErpGetuiApiSDK._Dev_MASTERSECRET, ErpGetuiApiSDK._Dev_HOST), "-1", Global.LogsDongleDomainList);
  106. }
  107. /// <summary>
  108. /// 批量单推消息
  109. /// </summary>
  110. /// <param name="msgRecord"></param>
  111. /// <param name="msgPushUserDal"></param>
  112. /// <returns></returns>
  113. public static string pushMessageToSingleBatchApp(LYFZ.WanYuKeFuData.Model.GTMsgRecord msgRecord, LYFZ.WanYuKeFuData.DAL.GTMessagePushUser msgPushUserDal)
  114. {
  115. try
  116. {
  117. string retStr = "{\"result\":\"失败\",\"contentId\":\"\"}";
  118. if (msgRecord.TargetUser == 0)
  119. {
  120. retStr = pushMessageToApp(msgRecord,1);
  121. retStr = pushMessageToApp(msgRecord,0);
  122. }
  123. else
  124. {
  125. List<PushSingleUser> sUserList = msgPushUserDal.GetPushSingleUserList(msgRecord.TargetUser, msgRecord.TargetList);
  126. if (sUserList.Count > 0)
  127. {
  128. List<string> iosCidList = new List<string>();
  129. List<PushSingleUser> proUserList = new List<PushSingleUser>();
  130. List<PushSingleUser> devUserList = new List<PushSingleUser>();
  131. foreach (PushSingleUser suser in sUserList)
  132. {
  133. if (suser.GTType == 0)
  134. {
  135. iosCidList.Add(suser.GTClientID);
  136. }
  137. Global.WriteLog(String.Format("PushSingleUser suser.GTClientID:{0} suser.APPState:{1}", suser.GTClientID, suser.APPState), "-1", Global.LogsDongleDomainList);
  138. //如果要推送的用户少于等于2个时,使用单推,直接推送
  139. if (sUserList.Count <= 2)
  140. {
  141. if ((msgRecord.Platform.ToLower().Contains("ios") && suser.GTType == 0)
  142. || (msgRecord.Platform.ToLower().Contains("android") && suser.GTType == 1))
  143. {
  144. retStr = PushMessageToSingle(msgRecord, suser.GTClientID, suser.UserID, suser.Badge, suser.APPState,suser.LYFZAPPID);
  145. }
  146. // retStr = "{\"result\":\"ok\",\"contentId\":\"\"}";
  147. }
  148. if ((msgRecord.Platform.ToLower().Contains("ios") && suser.GTType == 0)
  149. || (msgRecord.Platform.ToLower().Contains("android") && suser.GTType == 1))
  150. {
  151. if (suser.APPState == 1)
  152. {
  153. proUserList.Add(suser);
  154. }
  155. else {
  156. devUserList.Add(suser);
  157. }
  158. }
  159. }
  160. //如果要推送的用户大于2个时,使用批量单推
  161. if (sUserList.Count > 2)
  162. {
  163. if (proUserList.Count > 0)
  164. {
  165. retStr = PushMessageToSingleBatch(msgRecord, proUserList, 1, proUserList[0].LYFZAPPID);
  166. }
  167. if (retStr.ToLower().Contains("result\":\"ok\","))
  168. {
  169. if (devUserList.Count > 0)
  170. {
  171. retStr = PushMessageToSingleBatch(msgRecord, devUserList, 0, proUserList[0].LYFZAPPID);
  172. }
  173. }
  174. // retStr = "{\"result\":\"ok\",\"contentId\":\"\"}";
  175. }
  176. try
  177. {
  178. if (retStr.ToLower().Contains("result\":\"ok\","))
  179. {
  180. msgPushUserDal.AddBadgeNumber(iosCidList.ToArray());
  181. }
  182. }
  183. catch { }
  184. iosCidList.Clear();
  185. }
  186. else
  187. {
  188. retStr = "{\"result\":\"-900000\",\"contentId\":\"\"}";
  189. }
  190. sUserList.Clear();
  191. sUserList = null;
  192. }
  193. return retStr;
  194. }
  195. catch (Exception ex)
  196. {
  197. return "{\"result\":\"" + ex.Message + "\",\"contentId\":\"\"}";
  198. }
  199. }
  200. /// <summary>
  201. /// 单推消息
  202. /// </summary>
  203. /// <param name="msgRecord"></param>
  204. /// <param name="_ClientID"></param>
  205. /// <param name="_Badge"></param>
  206. /// <returns></returns>
  207. private static string PushMessageToSingle(LYFZ.WanYuKeFuData.Model.GTMsgRecord msgRecord, string _ClientID,string _userid,int _Badge=0,int appState=1,string lyfzAppid="")
  208. {
  209. try
  210. {
  211. LYFZ.WanYuKeFuData.Model.APPConfig configModel = Global.GetAPPConfig(lyfzAppid,appState);
  212. if (configModel == null)
  213. {
  214. return "{\"result\":\"没有找到推送APP服务配置信息\",\"contentId\":\"\"}";
  215. }
  216. string currentAPPID = configModel.GTAppID;
  217. string currentAPPKEY = configModel.GTAppKey;
  218. IGtPush push = new IGtPush(configModel.HostUrl, currentAPPKEY, configModel.GTMasterSecret);
  219. Global.WriteLog(String.Format("Pro HOST:{0}, APPKEY:{1}, MASTERSECRET:{2} currentAPPID:{3}", configModel.HostUrl, currentAPPKEY, configModel.GTMasterSecret, currentAPPID), "-1", Global.LogsDongleDomainList);
  220. /*if (appState == 1)
  221. {
  222. currentAPPID = APPID;
  223. currentAPPKEY = APPKEY;
  224. push = new IGtPush(HOST, APPKEY, MASTERSECRET);
  225. Global.WriteLog(String.Format("Pro HOST:{0}, APPKEY:{1}, MASTERSECRET:{2} currentAPPID:{3}", HOST, APPKEY, MASTERSECRET, currentAPPID), "-1", Global.LogsDongleDomainList);
  226. }
  227. else {
  228. currentAPPID = Dev_APPID;
  229. currentAPPKEY = Dev_APPKEY;
  230. push = new IGtPush(Dev_HOST, Dev_APPKEY, Dev_MASTERSECRET);
  231. Global.WriteLog(String.Format("Dev HOST:{0}, APPKEY:{1}, MASTERSECRET:{2} currentAPPID:{3}", Dev_HOST, Dev_APPKEY, Dev_MASTERSECRET, currentAPPID), "-1", Global.LogsDongleDomainList);
  232. }*/
  233. Global.WriteLog(String.Format("IGtPush:{0} ", push.ToString()), "-1", Global.LogsDongleDomainList);
  234. //消息模版:TransmissionTemplate:透传模板
  235. TransmissionTemplate template = TransmissionTemplateMsg(msgRecord.Title, msgRecord.Description, msgRecord.MsgData, _userid, msgRecord.ID.ToString(), currentAPPID, currentAPPKEY, _Badge: _Badge + 1);
  236. // NotificationTemplate template = NotificationTemplateMsg(msgRecord.Title, msgRecord.Description, msgRecord.MsgData, _Badge: _Badge+1);
  237. // 单推消息模型
  238. SingleMessage message = new SingleMessage();
  239. message.IsOffline = true; // 用户当前不在线时,是否离线存储,可选
  240. message.OfflineExpireTime = 1000 * 3600 * 12; // 离线有效时间,单位为毫秒,可选
  241. message.Data = template;
  242. //判断是否客户端是否wifi环境下推送,2为4G/3G/2G,1为在WIFI环境下,0为不限制环境
  243. message.PushNetWorkType = 0;
  244. com.igetui.api.openservice.igetui.Target target = new com.igetui.api.openservice.igetui.Target();
  245. target.appId = currentAPPID;
  246. target.clientId = _ClientID;
  247. //target.alias = ALIAS;//别名
  248. String pushResult = "";
  249. try
  250. {
  251. pushResult = push.pushMessageToSingle(message, target);
  252. // System.Console.WriteLine("----------------服务端返回结果:" + pushResult);
  253. }
  254. catch (RequestException e)
  255. {
  256. String requestId = e.RequestId;
  257. //发送失败后的重发
  258. pushResult = push.pushMessageToSingle(message, target, requestId);
  259. //System.Console.WriteLine("----------------服务端返回结果:" + pushResult);
  260. }
  261. //{"result":"ok","contentId":"OSA-0930_h5nst6murS6Qc5OAPVwnz2"}
  262. Global.WriteLog(String.Format("pushResult:{0} ", pushResult), "-1", Global.LogsDongleDomainList);
  263. return pushResult;
  264. }
  265. catch (Exception ex){
  266. Global.WriteLog(String.Format("Exception:{0} ", ex.Message), "-1", Global.LogsDongleDomainList);
  267. return "{\"result\":\""+ex.Message+"\",\"contentId\":\"\"}";
  268. }
  269. }
  270. /// <summary>
  271. /// 批量单推消息
  272. /// </summary>
  273. /// <param name="msgRecord"></param>
  274. /// <param name="_ClientIDList"></param>
  275. /// <returns></returns>
  276. public static string PushMessageToSingleBatch(LYFZ.WanYuKeFuData.Model.GTMsgRecord msgRecord, List<PushSingleUser> _ClientIDList,int appState=1,string lyfzAppid="")
  277. {
  278. try
  279. {
  280. LYFZ.WanYuKeFuData.Model.APPConfig configModel = Global.GetAPPConfig(lyfzAppid, appState);
  281. if (configModel == null)
  282. {
  283. return "{\"result\":\"没有找到推送APP服务配置信息\",\"contentId\":\"\"}";
  284. }
  285. string currentAPPID = configModel.GTAppID;
  286. string currentAPPKEY = configModel.GTAppKey;
  287. IGtPush push = new IGtPush(configModel.HostUrl, currentAPPKEY, configModel.GTMasterSecret);
  288. IBatch batch = new BatchImpl(currentAPPKEY, push);
  289. Global.WriteLog(String.Format("Pro HOST:{0}, APPKEY:{1}, MASTERSECRET:{2} currentAPPID:{3}", configModel.HostUrl, currentAPPKEY, configModel.GTMasterSecret, currentAPPID), "-1", Global.LogsDongleDomainList);
  290. /* if (appState == 1)
  291. {
  292. currentAPPID = APPID;
  293. currentAPPKEY = APPKEY;
  294. push = new IGtPush(HOST, APPKEY, MASTERSECRET);
  295. batch = new BatchImpl(APPKEY, push);
  296. Global.WriteLog(String.Format("Pro HOST:{0}, APPKEY:{1}, MASTERSECRET:{2} currentAPPID:{3}", HOST, APPKEY, MASTERSECRET, currentAPPID), "-1", Global.LogsDongleDomainList);
  297. }
  298. else {
  299. currentAPPID = Dev_APPID;
  300. currentAPPKEY = Dev_APPKEY;
  301. push = new IGtPush(Dev_HOST, Dev_APPKEY, Dev_MASTERSECRET);
  302. batch = new BatchImpl(Dev_APPKEY, push);
  303. Global.WriteLog(String.Format("Dev HOST:{0}, APPKEY:{1}, MASTERSECRET:{2} currentAPPID:{3}", Dev_HOST, Dev_APPKEY, Dev_MASTERSECRET, currentAPPID), "-1", Global.LogsDongleDomainList);
  304. }*/
  305. int targetCount = 0;
  306. foreach (PushSingleUser cidItem in _ClientIDList)
  307. {
  308. if (cidItem.APPState == appState)
  309. {
  310. //IOS,Android
  311. if ((msgRecord.Platform.ToLower().Contains("ios") && cidItem.GTType == 0)
  312. || (msgRecord.Platform.ToLower().Contains("android") && cidItem.GTType == 1))
  313. {
  314. //消息模版:TransmissionTemplate:透传模板
  315. TransmissionTemplate template = TransmissionTemplateMsg(msgRecord.Title, msgRecord.Description, msgRecord.MsgData, cidItem.UserID, msgRecord.ID.ToString(), currentAPPID,currentAPPKEY, _Badge: cidItem.Badge + 1);
  316. // NotificationTemplate template = NotificationTemplateMsg(msgRecord.Title, msgRecord.Description, msgRecord.MsgData, _Badge: cidItem.Badge+1);
  317. // 单推消息模型
  318. SingleMessage messageTrans = new SingleMessage();
  319. messageTrans.IsOffline = true; // 用户当前不在线时,是否离线存储,可选
  320. messageTrans.OfflineExpireTime = 1000 * 3600 * 12; // 离线有效时间,单位为毫秒,可选
  321. messageTrans.Data = template;
  322. //判断是否客户端是否wifi环境下推送,2为4G/3G/2G,1为在WIFI环境下,0为不限制环境
  323. messageTrans.PushNetWorkType = 0;
  324. com.igetui.api.openservice.igetui.Target targetTrans = new com.igetui.api.openservice.igetui.Target();
  325. targetTrans.appId = currentAPPID;
  326. targetTrans.clientId = cidItem.GTClientID;
  327. targetCount++;
  328. batch.add(messageTrans, targetTrans);
  329. }
  330. }
  331. }
  332. //{"result":"ok","info":{"0":{"result":"ok","taskId":"OSS-0930_if8pCKldBb9H0sGxnZTss4","cid":"50cbe6d6082e32a0c829f55fb13c9a5c","status":"successed_offline"},"1":{"result":"ok","taskId":"OSS-0930_BNvR2QGEbl8GJ7AN463dh5","cid":"92254c4b43b01d4e99fa5a77cde4ed36","status":"successed_offline"}}}
  333. if (targetCount > 0)
  334. {
  335. try
  336. {
  337. return batch.submit();
  338. }
  339. catch //(Exception e)
  340. {
  341. return batch.retry();
  342. }
  343. }
  344. else {
  345. return "{\"result\":\"没有要发送的客户端\",\"contentId\":\"\"}";
  346. }
  347. }
  348. catch (Exception ex)
  349. {
  350. return "{\"result\":\"" + ex.Message + " appState:"+ appState.ToString() + "\",\"contentId\":\"\"}";
  351. }
  352. }
  353. /// <summary>
  354. /// 向所有用户推送消息
  355. /// </summary>
  356. /// <param name="msgRecord"></param>
  357. private static string pushMessageToApp(LYFZ.WanYuKeFuData.Model.GTMsgRecord msgRecord, int appState = 1)
  358. {
  359. try
  360. {
  361. IGtPush push = null;
  362. string currentAPPID = "";
  363. string currentAPPKEY = "";
  364. if (appState == 1)
  365. {
  366. currentAPPID = APPID;
  367. currentAPPKEY = APPKEY;
  368. push = new IGtPush(HOST, APPKEY, MASTERSECRET);
  369. }
  370. else {
  371. currentAPPID = Dev_APPID;
  372. currentAPPKEY = Dev_APPKEY;
  373. push = new IGtPush(Dev_HOST, Dev_APPKEY, Dev_MASTERSECRET);
  374. }
  375. // 定义"AppMessage"类型消息对象,设置消息内容模板、发送的目标App列表、是否支持离线发送、以及离线消息有效期(单位毫秒)
  376. AppMessage message = new AppMessage();
  377. TransmissionTemplate template = TransmissionTemplateMsg(msgRecord.Title, msgRecord.Description, msgRecord.MsgData, "", msgRecord.ID.ToString(), currentAPPID, currentAPPKEY, _Badge: 1);
  378. //TransmissionTemplateDemo();
  379. //NotificationTemplate template = NotificationTemplateMsg(msgRecord.Title, msgRecord.Description, msgRecord.MsgData);
  380. message.IsOffline = true; // 用户当前不在线时,是否离线存储,可选
  381. message.OfflineExpireTime = 1000 * 3600 * 12; // 离线有效时间,单位为毫秒,可选
  382. message.Data = template;
  383. //判断是否客户端是否wifi环境下推送,2:4G/3G/2G,1为在WIFI环境下,0为无限制环境
  384. message.PushNetWorkType = 0;
  385. //message.Speed = 1000;
  386. List<String> appIdList = new List<String>();
  387. appIdList.Add(currentAPPID);
  388. List<String> phoneTypeList = new List<String>(); //通知接收者的手机操作系统类型
  389. phoneTypeList.Add("ANDROID");
  390. phoneTypeList.Add("IOS");
  391. List<String> provinceList = new List<String>(); //通知接收者所在省份
  392. //provinceList.Add("浙江");
  393. //provinceList.Add("上海");
  394. //provinceList.Add("北京");
  395. List<String> tagList = new List<string>();
  396. //tagList.Add("中文");
  397. message.AppIdList = appIdList;
  398. message.PhoneTypeList = phoneTypeList;
  399. //message.ProvinceList = provinceList;
  400. // message.TagList = tagList;
  401. String pushResult = push.pushMessageToApp(message);
  402. return pushResult;
  403. }
  404. catch (Exception ex)
  405. {
  406. return "{\"result\":\"" + ex.Message + "\",\"contentId\":\"\"}";
  407. }
  408. // System.Console.WriteLine("-----------------------------------------------");
  409. // System.Console.WriteLine("服务端返回结果:" + pushResult);
  410. }
  411. /*
  412. *
  413. * 所有推送接口均支持四个消息模板,依次为透传模板,通知透传模板,通知链接模板,通知弹框下载模板
  414. * 注:IOS离线推送需通过APN进行转发,需填写pushInfo字段,目前仅不支持通知弹框下载功能
  415. *
  416. */
  417. static string GetMsgContent(string content)
  418. {
  419. string retContent = "";
  420. if (content.ToLower().IndexOf("http://") == 0
  421. || content.ToLower().IndexOf("https://") == 0)
  422. {
  423. retContent = JsonConvert.SerializeObject(new { JumpURL = content });
  424. }
  425. else
  426. {
  427. retContent = content;
  428. }
  429. return retContent;
  430. }
  431. /// <summary>
  432. /// 透传模板动作内容
  433. /// </summary>
  434. /// <param name="_title"></param>
  435. /// <param name="_description"></param>
  436. /// <param name="_Content"></param>
  437. /// <param name="_Badge"></param>
  438. /// <returns></returns>
  439. public static TransmissionTemplate TransmissionTemplateMsg(string _title, string _description, string _Content, string _userid,string _msgid,string tAppid,string tAppkey,int _Badge = 0)
  440. {
  441. string sendMsgContent = "";
  442. string tempMsgString = GetMsgContent(_Content);
  443. dynamic smgObj = new
  444. {
  445. msgid=_msgid,
  446. title = _title,
  447. description = _description,
  448. content = _Content.IndexOf("{\"") == 0 ? JsonConvert.DeserializeObject(_Content) : tempMsgString.IndexOf("{\"") == 0 ? JsonConvert.DeserializeObject(tempMsgString) : tempMsgString,
  449. sendTime=DateTime.Now.ToYYYY_MM_dd_HH_mm_ss(),
  450. badge = _Badge
  451. };
  452. sendMsgContent = JsonConvert.SerializeObject(smgObj);
  453. TransmissionTemplate template = new TransmissionTemplate();
  454. template.AppId = tAppid;
  455. template.AppKey = tAppkey;
  456. template.TransmissionType = "2"; //应用启动类型,1:强制应用启动 2:等待应用启动
  457. template.TransmissionContent = sendMsgContent; //透传内容
  458. // template.setPushInfo("",8, "加上了安卓消息 我是来至于C#的测试消息", "default", "my C# no","","","");
  459. //APN高级推送
  460. APNPayload apnpayload = new APNPayload();
  461. DictionaryAlertMsg alertMsg = new DictionaryAlertMsg();
  462. alertMsg.Body = _description;
  463. //iOS8.2支持字段
  464. alertMsg.Title = _title;
  465. apnpayload.AlertMsg = alertMsg;
  466. if (_Badge > 0)
  467. {
  468. apnpayload.Badge = _Badge;
  469. }
  470. apnpayload.ContentAvailable = 1;
  471. //apnpayload.Category = "";
  472. apnpayload.Sound = "default";
  473. apnpayload.addCustomMsg("payload", sendMsgContent);
  474. template.setAPNInfo(apnpayload);
  475. //设置客户端展示时间
  476. //String begin = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  477. // String end = DateTime.Now.AddMinutes(10).ToString("yyyy-MM-dd HH:mm:ss");
  478. // template.setDuration(begin, end);
  479. return template;
  480. }
  481. /// <summary>
  482. /// 通知透传模板动作内容
  483. /// </summary>
  484. /// <param name="_title">标题</param>
  485. /// <param name="_description">描述</param>
  486. /// <param name="_Content">内容</param>
  487. /// <param name="_TransmissionType">应用启动类型,1:强制应用启动 2:等待应用启动</param>
  488. /// <param name="_Badge">消息数 IOS 传用</param>
  489. /// <param name="_Logo">通知栏显示图标</param>
  490. /// <returns></returns>
  491. /* public static NotificationTemplate NotificationTemplateMsg(string _title, string _description, string _Content, string _TransmissionType="2", int _Badge = 0, string _Logo = "")
  492. {
  493. NotificationTemplate template = new NotificationTemplate();
  494. template.AppId = APPID;
  495. template.AppKey = APPKEY;
  496. //通知栏标题
  497. template.Title = _title;
  498. //通知栏内容
  499. template.Text = _description;
  500. if (_Logo.Contains("https://") || _Logo.Contains("http://"))
  501. {
  502. //通知栏显示网络图标
  503. template.LogoURL = _Logo.Trim();
  504. }
  505. else {
  506. //通知栏显示本地图片
  507. template.Logo = _Logo.Trim();
  508. }
  509. //通知栏显示本地图片
  510. // template.Logo = _Logo;
  511. //通知栏显示网络图标
  512. // template.LogoURL = "";
  513. //应用启动类型,1:强制应用启动 2:等待应用启动
  514. template.TransmissionType = "2";
  515. //透传内容
  516. template.TransmissionContent = _Content;
  517. //接收到消息是否响铃,true:响铃 false:不响铃
  518. template.IsRing = true;
  519. //接收到消息是否震动,true:震动 false:不震动
  520. template.IsVibrate = true;
  521. //接收到消息是否可清除,true:可清除 false:不可清除
  522. template.IsClearable = true;
  523. //APN高级推送
  524. APNPayload apnpayload = new APNPayload();
  525. DictionaryAlertMsg alertMsg = new DictionaryAlertMsg();
  526. alertMsg.Body = _description;
  527. //iOS8.2支持字段
  528. alertMsg.Title = _title;
  529. apnpayload.AlertMsg = alertMsg;
  530. if (_Badge > 0)
  531. {
  532. apnpayload.Badge = _Badge;
  533. }
  534. apnpayload.ContentAvailable = 1;
  535. //apnpayload.Category = "";
  536. apnpayload.Sound = "default";
  537. apnpayload.addCustomMsg("payload", _Content);
  538. template.setAPNInfo(apnpayload);
  539. //设置通知定时展示时间,结束时间与开始时间相差需大于6分钟,消息推送后,客户端将在指定时间差内展示消息(误差6分钟)
  540. //String begin = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
  541. // String end = DateTime.Now.AddMinutes(10).ToString("yyyy-MM-dd HH:mm:ss");
  542. // template.setDuration(begin, end);
  543. return template;
  544. }*/
  545. }
  546. }