| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- package menu
- import (
- "encoding/json"
- "fmt"
- "github.com/silenceper/wechat/context"
- "github.com/silenceper/wechat/util"
- )
- const (
- menuCreateURL = "https://api.weixin.qq.com/cgi-bin/menu/create"
- menuGetURL = "https://api.weixin.qq.com/cgi-bin/menu/get"
- menuDeleteURL = "https://api.weixin.qq.com/cgi-bin/menu/delete"
- menuAddConditionalURL = "https://api.weixin.qq.com/cgi-bin/menu/addconditional"
- menuDeleteConditionalURL = "https://api.weixin.qq.com/cgi-bin/menu/delconditional"
- menuTryMatchURL = "https://api.weixin.qq.com/cgi-bin/menu/trymatch"
- menuSelfMenuInfoURL = "https://api.weixin.qq.com/cgi-bin/get_current_selfmenu_info"
- )
- //Menu struct
- type Menu struct {
- *context.Context
- }
- //reqMenu 设置菜单请求数据
- type reqMenu struct {
- Button []*Button `json:"button,omitempty"`
- MatchRule *MatchRule `json:"matchrule,omitempty"`
- }
- //reqDeleteConditional 删除个性化菜单请求数据
- type reqDeleteConditional struct {
- MenuID int64 `json:"menuid"`
- }
- //reqMenuTryMatch 菜单匹配请求
- type reqMenuTryMatch struct {
- UserID string `json:"user_id"`
- }
- //resConditionalMenu 个性化菜单返回结果
- type resConditionalMenu struct {
- Button []Button `json:"button"`
- MatchRule MatchRule `json:"matchrule"`
- MenuID int64 `json:"menuid"`
- }
- //resMenuTryMatch 菜单匹配请求结果
- type resMenuTryMatch struct {
- util.CommonError
- Button []Button `json:"button"`
- }
- //ResMenu 查询菜单的返回数据
- type ResMenu struct {
- util.CommonError
- Menu struct {
- Button []Button `json:"button"`
- MenuID int64 `json:"menuid"`
- } `json:"menu"`
- conditionalmenu []resConditionalMenu `json:"conditionalmenu"`
- }
- //ResSelfMenuInfo 自定义菜单配置返回结果
- type ResSelfMenuInfo struct {
- util.CommonError
- IsMenuOpen int32 `json:"is_menu_open"`
- SelfMenuInfo struct {
- Button []SelfMenuButton `json:"button"`
- } `json:"selfmenu_info"`
- }
- //SelfMenuButton 自定义菜单配置详情
- type SelfMenuButton struct {
- Type string `json:"type"`
- Name string `json:"name"`
- Key string `json:"key"`
- URL string `json:"url,omitempty"`
- Value string `json:"value,omitempty"`
- SubButton struct {
- List []SelfMenuButton `json:"list"`
- } `json:"sub_button,omitempty"`
- NewsInfo struct {
- List []ButtonNew `json:"list"`
- } `json:"news_info,omitempty"`
- }
- //ButtonNew 图文消息菜单
- type ButtonNew struct {
- Title string `json:"title"`
- Author string `json:"author"`
- Digest string `json:"digest"`
- ShowCover int32 `json:"show_cover"`
- CoverURL string `json:"cover_url"`
- ContentURL string `json:"content_url"`
- SourceURL string `json:"source_url"`
- }
- //MatchRule 个性化菜单规则
- type MatchRule struct {
- GroupID int32 `json:"group_id,omitempty"`
- Sex int32 `json:"sex,omitempty"`
- Country string `json:"country,omitempty"`
- Province string `json:"province,omitempty"`
- City string `json:"city,omitempty"`
- ClientPlatformType int32 `json:"client_platform_type,omitempty"`
- Language string `json:"language,omitempty"`
- }
- //NewMenu 实例
- func NewMenu(context *context.Context) *Menu {
- menu := new(Menu)
- menu.Context = context
- return menu
- }
- //SetMenu 设置按钮
- func (menu *Menu) SetMenu(buttons []*Button) error {
- accessToken, err := menu.GetAccessToken()
- if err != nil {
- return err
- }
- uri := fmt.Sprintf("%s?access_token=%s", menuCreateURL, accessToken)
- reqMenu := &reqMenu{
- Button: buttons,
- }
- response, err := util.PostJSON(uri, reqMenu)
- if err != nil {
- return err
- }
- var commError util.CommonError
- err = json.Unmarshal(response, &commError)
- if err != nil {
- return err
- }
- if commError.ErrCode != 0 {
- return fmt.Errorf("SetMenu Error , errcode=%d , errmsg=%s", commError.ErrCode, commError.ErrMsg)
- }
- return nil
- }
- //GetMenu 获取菜单配置
- func (menu *Menu) GetMenu() (resMenu ResMenu, err error) {
- var accessToken string
- accessToken, err = menu.GetAccessToken()
- if err != nil {
- return
- }
- uri := fmt.Sprintf("%s?access_token=%s", menuGetURL, accessToken)
- var response []byte
- response, err = util.HTTPGet(uri)
- if err != nil {
- return
- }
- err = json.Unmarshal(response, &resMenu)
- if err != nil {
- return
- }
- if resMenu.ErrCode != 0 {
- err = fmt.Errorf("GetMenu Error , errcode=%d , errmsg=%s", resMenu.ErrCode, resMenu.ErrMsg)
- return
- }
- return
- }
- //DeleteMenu 删除菜单
- func (menu *Menu) DeleteMenu() error {
- accessToken, err := menu.GetAccessToken()
- if err != nil {
- return err
- }
- uri := fmt.Sprintf("%s?access_token=%s", menuDeleteURL, accessToken)
- response, err := util.HTTPGet(uri)
- if err != nil {
- return err
- }
- var commError util.CommonError
- err = json.Unmarshal(response, &commError)
- if err != nil {
- return err
- }
- if commError.ErrCode != 0 {
- return fmt.Errorf("GetMenu Error , errcode=%d , errmsg=%s", commError.ErrCode, commError.ErrMsg)
- }
- return nil
- }
- //AddConditional 添加个性化菜单
- func (menu *Menu) AddConditional(buttons []*Button, matchRule *MatchRule) error {
- accessToken, err := menu.GetAccessToken()
- if err != nil {
- return err
- }
- uri := fmt.Sprintf("%s?access_token=%s", menuAddConditionalURL, accessToken)
- reqMenu := &reqMenu{
- Button: buttons,
- MatchRule: matchRule,
- }
- response, err := util.PostJSON(uri, reqMenu)
- if err != nil {
- return err
- }
- var commError util.CommonError
- err = json.Unmarshal(response, &commError)
- if err != nil {
- return err
- }
- if commError.ErrCode != 0 {
- return fmt.Errorf("AddConditional Error , errcode=%d , errmsg=%s", commError.ErrCode, commError.ErrMsg)
- }
- return nil
- }
- //DeleteConditional 删除个性化菜单
- func (menu *Menu) DeleteConditional(menuID int64) error {
- accessToken, err := menu.GetAccessToken()
- if err != nil {
- return err
- }
- uri := fmt.Sprintf("%s?access_token=%s", menuDeleteConditionalURL, accessToken)
- reqDeleteConditional := &reqDeleteConditional{
- MenuID: menuID,
- }
- response, err := util.PostJSON(uri, reqDeleteConditional)
- if err != nil {
- return err
- }
- var commError util.CommonError
- err = json.Unmarshal(response, &commError)
- if err != nil {
- return err
- }
- if commError.ErrCode != 0 {
- return fmt.Errorf("DeleteConditional Error , errcode=%d , errmsg=%s", commError.ErrCode, commError.ErrMsg)
- }
- return nil
- }
- //MenuTryMatch 菜单匹配
- func (menu *Menu) MenuTryMatch(userID string) (buttons []Button, err error) {
- var accessToken string
- accessToken, err = menu.GetAccessToken()
- if err != nil {
- return
- }
- uri := fmt.Sprintf("%s?access_token=%s", menuTryMatchURL, accessToken)
- reqMenuTryMatch := &reqMenuTryMatch{userID}
- var response []byte
- response, err = util.PostJSON(uri, reqMenuTryMatch)
- if err != nil {
- return
- }
- var resMenuTryMatch resMenuTryMatch
- err = json.Unmarshal(response, &resMenuTryMatch)
- if err != nil {
- return
- }
- if resMenuTryMatch.ErrCode != 0 {
- err = fmt.Errorf("MenuTryMatch Error , errcode=%d , errmsg=%s", resMenuTryMatch.ErrCode, resMenuTryMatch.ErrMsg)
- return
- }
- buttons = resMenuTryMatch.Button
- return
- }
- //GetCurrentSelfMenuInfo 获取自定义菜单配置接口
- func (menu *Menu) GetCurrentSelfMenuInfo() (resSelfMenuInfo ResSelfMenuInfo, err error) {
- var accessToken string
- accessToken, err = menu.GetAccessToken()
- if err != nil {
- return
- }
- uri := fmt.Sprintf("%s?access_token=%s", menuSelfMenuInfoURL, accessToken)
- var response []byte
- response, err = util.HTTPGet(uri)
- if err != nil {
- return
- }
- fmt.Println(string(response))
- err = json.Unmarshal(response, &resSelfMenuInfo)
- if err != nil {
- return
- }
- if resSelfMenuInfo.ErrCode != 0 {
- err = fmt.Errorf("GetCurrentSelfMenuInfo Error , errcode=%d , errmsg=%s", resSelfMenuInfo.ErrCode, resSelfMenuInfo.ErrMsg)
- return
- }
- return
- }
|