structure.go 14 KB

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