TianYuVoiceHelper.cs 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. using System;
  2. using System.Threading;
  3. using System.Linq;
  4. using System.Data;
  5. using Library;
  6. using MySystem.Models;
  7. using LitJson;
  8. using System.Collections.Generic;
  9. using System.Security.Cryptography;
  10. namespace MySystem
  11. {
  12. public class TianYuVoiceHelper
  13. {
  14. public readonly static TianYuVoiceHelper Instance = new TianYuVoiceHelper();
  15. private TianYuVoiceHelper()
  16. {
  17. }
  18. string accesskeyld = "IOT_ACCOUNT_TEST_CSYH";
  19. string accesskeySecret = "AtR4g5sa24fdy6GII3hts75_CSYH";
  20. string reqUrl = "https://voicetest.tysmartpos.com/api/bank/pushmsg";
  21. public void Start()//启动
  22. {
  23. Thread thread = new Thread(listen);
  24. thread.IsBackground = true;
  25. thread.Start();
  26. }
  27. public void listen()
  28. {
  29. while (true)
  30. {
  31. string content = RedisDbconn.Instance.RPop<string>("TianYuVoiceQueue");
  32. if (!string.IsNullOrEmpty(content))
  33. {
  34. try
  35. {
  36. doSomething(content);
  37. Thread.Sleep(10);
  38. }
  39. catch (Exception ex)
  40. {
  41. LogHelper.Instance.WriteLog(DateTime.Now.ToString() + ":" + ex.ToString(), "天喻云喇叭异常");
  42. }
  43. }
  44. else
  45. {
  46. Thread.Sleep(1000);
  47. }
  48. }
  49. }
  50. public string doSomething(string content)
  51. {
  52. JsonData jsonObj = JsonMapper.ToObject(content);
  53. SortedList<string, string> data = new SortedList<string, string>();
  54. data.Add("accessKeyId", accesskeyld); //由本公司统一提供给客户的唯一识别码(同accessKeyId)
  55. data.Add("requestId", jsonObj["OrderNo"].ToString()); //请求标识,用于唯一标识当前请求
  56. data.Add("timestamp", function.GetCurTimestamp().ToString()); //请求时间戳,格式如:1593532800000
  57. data.Add("deviceId", jsonObj["DeviceId"].ToString()); //设备编号
  58. data.Add("content", "来客吧收款" + jsonObj["Amount"].ToString() + "元"); //(终端直接播报内容,支持 tts 设备可以直接播报汉字语音,不支持 tts 的设备要分开传 requestData、payType)
  59. // data.Add("requestData", "0.01"); //播报金额((只送金额,单位:元)
  60. // data.Add("payType", "01"); //播报类型: 01-XX银行收款成功 02-支付宝收款成功 03-微信收款成功 10-取消支付
  61. string result = post(data);
  62. return result;
  63. }
  64. private string post(SortedList<string, string> data)
  65. {
  66. string signString = function.BuildQueryString(data);
  67. data.Add("sign", hmac_sha256(signString));
  68. string req = Newtonsoft.Json.JsonConvert.SerializeObject(data);
  69. function.WriteLog("请求地址:" + reqUrl, "天谕音响日志");
  70. function.WriteLog("请求参数:" + req, "天谕音响日志");
  71. string result = function.PostWebRequest(reqUrl, req, "application/json");
  72. function.WriteLog("响应数据:" + result, "天谕音响日志");
  73. return result;
  74. }
  75. #region hmac_sha256算法
  76. public string hmac_sha256(string message)
  77. {
  78. var encoding = new System.Text.UTF8Encoding();
  79. byte[] keyByte = encoding.GetBytes(accesskeySecret);
  80. byte[] messageBytes = encoding.GetBytes(message);
  81. using (var hmacsha256 = new HMACSHA256(keyByte))
  82. {
  83. byte[] hashmessage = hmacsha256.ComputeHash(messageBytes);
  84. return Convert.ToBase64String(hashmessage);
  85. }
  86. }
  87. #endregion
  88. }
  89. }