structure.go 11 KB

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