structure.go 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. package wechat
  2. import (
  3. "encoding/xml"
  4. )
  5. // Client wechat
  6. type Client struct {
  7. AppID string `json:"appid"`
  8. AppSecret string `json:"appsecret"`
  9. Token string `json:"token"`
  10. EncodingAESKey string `json:"encodingaeskey"`
  11. //ReadLock *sync.Mutex
  12. UseCacheToken bool
  13. AccessToken string
  14. LastTokenTime int64
  15. TokenFromCache bool
  16. Ticket string
  17. LastTicketTime int64
  18. }
  19. // ClientToken wechat client token
  20. type ClientToken struct {
  21. AppID string `json:"appid"`
  22. AccessToken string `json:"access_token"`
  23. LastTokenTime int64 `json:"last_token_time"`
  24. }
  25. // ClientTicket wechat client js ticket
  26. type ClientTicket struct {
  27. AppID string `json:"appid"`
  28. Ticket string `json:"ticket"`
  29. LastTicketTime int64 `json:"last_token_time"`
  30. }
  31. // MiniClient wechat mini
  32. type MiniClient struct {
  33. AppID string `json:"appid"`
  34. AppSecret string `json:"appsecret"`
  35. AccessToken string
  36. LastTokenTime int64
  37. }
  38. // ResponseMsg response
  39. type ResponseMsg struct {
  40. ErrCode int `json:"errcode"`
  41. ErrMsg string `json:"errmsg"`
  42. }
  43. // MiniSession mini session
  44. type MiniSession struct {
  45. OpenID string `json:"openid"`
  46. SessionKey string `json:"session_key"`
  47. UnionID string `json:"unionid"`
  48. }
  49. // FormSignature signature
  50. type FormSignature struct {
  51. TimeStamp string `form:"timestamp" json:"timestamp"`
  52. Nonce string `form:"nonce" json:"nonce"`
  53. Signature string `form:"signature" json:"signature"`
  54. Echostr string `form:"echostr" json:"echostr"`
  55. }
  56. // FormAuthorize get code
  57. type FormAuthorize struct {
  58. Code string `form:"code"`
  59. State string `form:"state"`
  60. URL string `form:"url"`
  61. }
  62. // FormOpenID openid
  63. type FormOpenID struct {
  64. OpenID string `form:"openid"`
  65. }
  66. // FormCode code
  67. type FormCode struct {
  68. Code string `form:"code" json:"code"`
  69. }
  70. // FormSignPackage js sign package
  71. type FormSignPackage struct {
  72. URL string `form:"url"`
  73. }
  74. // FormURLState redirect url and state
  75. type FormURLState struct {
  76. RedirectURL string `form:"url" json:"url" xml:"url"`
  77. State string `form:"state" json:"state" xml:"state"`
  78. }
  79. // Message message
  80. type Message struct {
  81. XMLName xml.Name `xml:"xml"`
  82. ToUserName string `xml:"ToUserName" json:"ToUserName"`
  83. FromUserName string `xml:"FromUserName" json:"FromUserName"`
  84. CreateTime int64 `xml:"CreateTime" json:"CreateTime"`
  85. MsgType string `xml:"MsgType" json:"MsgType"` // text/image/voice/video/shortvideo/location/link
  86. // 文本 Text Text message
  87. Text string `xml:"Content,omitempty" json:"Content,omitempty"`
  88. // 图片 PicURL / MediaID image messgae
  89. PicURL string `xml:"PicUrl,omitempty" json:"PicUrl,omitempty"`
  90. // MediaID 媒体
  91. MediaID string `xml:"MediaId,omitempty" json:"MediaId,omitempty"`
  92. // 语音 MediaID / Format voice message
  93. Format string `xml:"Format,omitempty" json:"Format,omitempty"`
  94. // 视频/小视频 ThumbMediaID / MediaID video/shortvideo message
  95. ThumbMediaID string `xml:"ThumbMediaId,omitempty" json:"ThumbMediaId,omitempty"`
  96. // 地理位置 location message
  97. LocationX string `xml:"Location_X,omitempty" json:"Location_X,omitempty"` // 纬度
  98. LocationY string `xml:"Location_Y,omitempty" json:"Location_Y,omitempty"` // 经度
  99. Scale string `xml:"Scale,omitempty" json:"Scale,omitempty"` // 地图缩放大小
  100. Label string `xml:"Label,omitempty" json:"Label,omitempty"` // 地理位置信息
  101. // 链接消息 link
  102. Title string `xml:"Title,omitempty" json:"Title,omitempty"` // 消息标题
  103. Description string `xml:"Description,omitempty" json:"Description,omitempty"` // 消息描述
  104. URL string `xml:"Url,omitempty" json:"Url,omitempty"` // 消息链接
  105. Event string `xml:"Event,omitempty" json:"Event,omitempty"` // 事件 subscribe(订阅)、unsubscribe(取消订阅)、CLICK(自定义菜单事件)、SCAN
  106. // 扫描带参数二维码事件
  107. EventKey string `xml:"EventKey,omitempty" json:"EventKey,omitempty"` // 事件KEY 值,扫码未关注的 qrscene_ 为前缀(subscribe 事件, 已关注的推送 SCAN 事件),后面为二维码的参数值, 自定义菜单事件与自定义菜单接口中 KEY 值对应
  108. Ticket string `xml:"Ticket,omitempty" json:"Ticket,omitempty"` // 二维码的ticket,可用来换取二维码图片
  109. // 地理位置 location message
  110. Latitude string `xml:"Latitude,omitempty" json:"Latitude,omitempty"` // 纬度
  111. Longitude string `xml:"Longitude,omitempty" json:"Longitude,omitempty"` // 经度
  112. Precision string `xml:"Precision,omitempty" json:"Precision,omitempty"` // 地理位置精度
  113. MsgID int64 `xml:"MsgID,omitempty" json:"MsgID,omitempty"` // 消息id
  114. Status string `xml:"Status,omitempty" json:"Status,omitempty"` // 消息发送状态
  115. }
  116. type menuSubButtonList struct {
  117. Type string `json:"type"`
  118. Name string `json:"name"`
  119. Key string `json:"key"`
  120. URL string `json:"url"`
  121. }
  122. type menuSubButton struct {
  123. List []menuSubButtonList `json:"list"`
  124. }
  125. type menuButton struct {
  126. Type string `json:"type"`
  127. Name string `json:"name"`
  128. Key string `json:"key"`
  129. SubButton menuSubButton `json:"sub_button"`
  130. }
  131. type menuInfo struct {
  132. Button []menuButton `json:"button"`
  133. }
  134. // Menu menu
  135. type Menu struct {
  136. IsOpen int64 `json:"is_menu_open"`
  137. Info menuInfo `json:"selfmenu_info"`
  138. }
  139. // FormMenuButton menu button
  140. type FormMenuButton struct {
  141. Type string `json:"type,omitempty"`
  142. Name string `json:"name"`
  143. Key string `json:"key,omitempty"`
  144. URL string `json:"url,omitempty"`
  145. AppID string `json:"appid,omitempty"`
  146. Pagepath string `json:"pagepath,omitempty"`
  147. MediaID string `json:"media_id,omitempty"`
  148. SubButton []*FormMenuButton `json:"sub_button,omitempty"`
  149. }
  150. // FormMenu menu create
  151. type FormMenu struct {
  152. Button []*FormMenuButton `json:"button"`
  153. }
  154. // ArticleItem article item
  155. type ArticleItem struct {
  156. Title string `xml:"Title" json:"Title"`
  157. Description string `xml:"Description" json:"Description"`
  158. PicURL string `xml:"PicUrl" json:"PicUrl"`
  159. URL string `xml:"Url" json:"Url"`
  160. }
  161. type articleItems struct {
  162. Items []ArticleItem `xml:"item" json:"item"`
  163. }
  164. // ReplyMessage reply message
  165. type ReplyMessage struct {
  166. XMLName xml.Name `xml:"xml"`
  167. ToUserName string `xml:"ToUserName" json:"ToUserName"`
  168. FromUserName string `xml:"FromUserName" json:"FromUserName"`
  169. CreateTime int64 `xml:"CreateTime" json:"CreateTime"`
  170. MsgType string `xml:"MsgType" json:"MsgType"` // text/image/voice/video/music/news
  171. // 文本 Content Text message
  172. Content string `xml:"Content,omitempty" json:"Content,omitempty"`
  173. // image
  174. ArticleCount int `xml:"ArticleCount,omitempty" json:"ArticleCount,omitempty"`
  175. Articles *articleItems `xml:"Articles,omitempty" json:"Articles,omitempty"`
  176. }
  177. // EventTemplateReply event reply
  178. type EventTemplateReply struct {
  179. XMLName xml.Name `xml:"xml"`
  180. ToUserName string `xml:"ToUserName"`
  181. FromUserName string `xml:"FromUserName"`
  182. CreateTime string `xml:"CreateTime"`
  183. MsgType string `xml:"MsgType"`
  184. Event string `xml:"Event"`
  185. MsgID string `xml:"MsgID"`
  186. Status string `xml:"Status"`
  187. }
  188. // SignPackage sign package
  189. type SignPackage struct {
  190. AppID string `json:"appId"`
  191. NonceStr string `json:"nonceStr"`
  192. Timestamp int64 `json:"timestamp"`
  193. Signature string `json:"signature"`
  194. Ticket string `json:"ticket"`
  195. URL string `json:"url"`
  196. }
  197. // FormMaterial Material
  198. type FormMaterial struct {
  199. Type string `form:"type"`
  200. Offset int `form:"offset"`
  201. Count int `form:"count"`
  202. }
  203. // UserInfo userinfo
  204. type UserInfo struct {
  205. SubScribe int `json:"subscribe"`
  206. OpenID string `json:"openid"`
  207. NickName string `json:"nickname"`
  208. Sex int `json:"sex"`
  209. Language string `json:"language"`
  210. City string `json:"city"`
  211. Province string `json:"province"`
  212. Country string `json:"country"`
  213. HeadImgURL string `json:"headimgurl"`
  214. SubscribeTime int `json:"subscribe_time"`
  215. UnionID string `json:"unionid"`
  216. Remark string `json:"remark"`
  217. GroupID int `json:"groupid"`
  218. TagidList []int `json:"tagid_list"`
  219. SubscribeScene string `json:"subscribe_scene"`
  220. QrScene int `json:"qr_scene"`
  221. QrSceneStr string `json:"qr_scene_str"`
  222. }
  223. // FormNextOpenID next openid
  224. type FormNextOpenID struct {
  225. Next string `form:"next_openid"`
  226. }
  227. // List openid list
  228. type List struct {
  229. OpenID []string `json:"openid"`
  230. }
  231. // UserList user list
  232. type UserList struct {
  233. Total int `json:"total"`
  234. Count int `json:"count"`
  235. Data List `json:"data"`
  236. NextOpenID string `json:"next_openid"`
  237. }
  238. // MaterialNewsItem 图片素材
  239. type MaterialNewsItem struct {
  240. Title string `json:"title"`
  241. Author string `json:"author"`
  242. Digest string `json:"digest"`
  243. Content string `json:"content"`
  244. ContentSourceURL string `json:"content_source_url"`
  245. ThumbMediaID string `json:"thumb_media_id"`
  246. ShowCoverPic int `json:"show_cover_pic"`
  247. URL string `json:"url"`
  248. ThumbURL string `json:"thumb_url"`
  249. NeedOpenComment int `json:"need_open_comment"`
  250. OnlyFansCanComment int `json:"only_fans_can_comment"`
  251. }
  252. // MaterialContent 素材内容
  253. type MaterialContent struct {
  254. NewsItem []*MaterialNewsItem `json:"news_item,omitempty"`
  255. CreateTime int `json:"create_time,omitempty"`
  256. UpdateTime int `json:"update_time,omitempty"`
  257. }
  258. // MaterialItem 素材信息
  259. type MaterialItem struct {
  260. MediaID string `json:"media_id"`
  261. Name string `json:"name,omitempty"`
  262. UpdateTime int `json:"update_time"`
  263. URL string `json:"url,omitempty"`
  264. Content *MaterialContent `json:"content,omitempty"`
  265. }
  266. // Material 素材
  267. type Material struct {
  268. TotalCount int `json:"total_count"`
  269. ItemCount int `json:"item_count"`
  270. Item []MaterialItem `json:"item"`
  271. }
  272. // MiniProgramPage mini
  273. type MiniProgramPage struct {
  274. AppID string `json:"appid,omitempty"`
  275. PagePath string `json:"pagepath,omitempty"`
  276. }
  277. // ValueColor value color
  278. type ValueColor struct {
  279. Value string `json:"value"`
  280. Color string `json:"color,omitempty"`
  281. }
  282. // TemplateResponse 模版消息返回
  283. type TemplateResponse struct {
  284. ResponseMsg
  285. MessageID int64 `json:"msgid"`
  286. }
  287. // TemplateData data
  288. type TemplateData struct {
  289. First *ValueColor `json:"first"`
  290. Keyword1 *ValueColor `json:"keyword1,omitempty"`
  291. Keyword2 *ValueColor `json:"keyword2,omitempty"`
  292. Keyword3 *ValueColor `json:"keyword3,omitempty"`
  293. Keyword4 *ValueColor `json:"keyword4,omitempty"`
  294. Keyword5 *ValueColor `json:"keyword5,omitempty"`
  295. Keyword6 *ValueColor `json:"keyword6,omitempty"`
  296. Keyword7 *ValueColor `json:"keyword7,omitempty"`
  297. Keyword8 *ValueColor `json:"keyword8,omitempty"`
  298. Keyword9 *ValueColor `json:"keyword9,omitempty"`
  299. Keyword10 *ValueColor `json:"keyword10,omitempty"`
  300. Name *ValueColor `json:"name,omitempty"`
  301. ExpDate *ValueColor `json:"expDate,omitempty"`
  302. Remark *ValueColor `json:"remark,omitempty"`
  303. }
  304. // TemplateMessage template message
  305. type TemplateMessage struct {
  306. ToUser string `json:"touser"`
  307. TemplateID string `json:"template_id"`
  308. URL string `json:"url"`
  309. MiniProgram *MiniProgramPage `json:"miniprogram,omitempty"`
  310. Data TemplateData `json:"data"`
  311. }
  312. // MiniTemplateMessage mini template message
  313. type MiniTemplateMessage struct {
  314. ToUser string `json:"touser"`
  315. TemplateID string `json:"template_id"`
  316. Page string `json:"page"`
  317. FormID string `json:"form_id"`
  318. Data TemplateData `json:"data"`
  319. }
  320. // WeappTemplateMessage mini message
  321. type WeappTemplateMessage struct {
  322. TemplateID string `json:"template_id"`
  323. Page string `json:"page"`
  324. FormID string `json:"form_id"`
  325. Data TemplateData `json:"data"`
  326. Emphasis string `json:"emphasis_keyword"`
  327. }
  328. // MpTemplateMessage wechat public message
  329. type MpTemplateMessage struct {
  330. AppID string `json:"appid"`
  331. TemplateID string `json:"template_id"`
  332. URL string `json:"url"`
  333. Mini MiniProgramPage `json:"miniprogram"`
  334. Data TemplateData `json:"data"`
  335. }
  336. // MiniUniformMessage mini uniform send
  337. type MiniUniformMessage struct {
  338. ToUser string `json:"touser"`
  339. WeApp *WeappTemplateMessage `json:"weapp_template_msg,omitempty"`
  340. MP *MpTemplateMessage `json:"mp_template_msg,omitempty"`
  341. }
  342. // FormPayNotify notify
  343. type FormPayNotify struct {
  344. XMLName xml.Name `xml:"xml" json:"_,omitempty"`
  345. AppID string `form:"appid" xml:"appid"`
  346. Attach string `form:"attach" xml:"attach"`
  347. BankType string `form:"bank_type" xml:"bank_type"`
  348. CashFee int `form:"cash_fee" xml:"cash_fee"`
  349. FeeType string `form:"fee_type" xml:"fee_type"`
  350. MchID string `form:"mch_id" xml:"mch_id"`
  351. IsSubscribe string `form:"is_subscribe" xml:"is_subscribe"`
  352. NonceStr string `form:"nonce_str" xml:"nonce_str"`
  353. OpenID string `form:"openid" xml:"openid"`
  354. OutTradeNo string `form:"out_trade_no" xml:"out_trade_no"`
  355. ResultCode string `form:"result_code" xml:"result_code"`
  356. ReturnMsg string `form:"return_msg" xml:"return_msg"`
  357. ReturnCode string `form:"return_code" xml:"return_code"`
  358. ErrCodeDes string `form:"err_code_des" xml:"err_code_des"`
  359. ErrCode string `form:"err_code" xml:"err_code"`
  360. Sign string `form:"sign" xml:"sign"`
  361. TimeEnd string `form:"time_end" xml:"time_end"`
  362. TotalFee int `form:"total_fee" xml:"total_fee"`
  363. TradeType string `form:"trade_type" xml:"trade_type"`
  364. TransactionID string `form:"transaction_id" xml:"transaction_id"`
  365. ContractID string `form:"contract_id" xml:"contract_id"`
  366. }