-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwechat.go
54 lines (46 loc) · 1.43 KB
/
wechat.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package wechat
import (
"github.com/fideism/golang-wechat/cache"
"github.com/fideism/golang-wechat/miniprogram"
miniConfig "github.com/fideism/golang-wechat/miniprogram/config"
"github.com/fideism/golang-wechat/officialaccount"
offConfig "github.com/fideism/golang-wechat/officialaccount/config"
"github.com/fideism/golang-wechat/openplatform"
openConfig "github.com/fideism/golang-wechat/openplatform/config"
"github.com/fideism/golang-wechat/pay"
"github.com/fideism/golang-wechat/pay/config"
)
// Wechat struct
type Wechat struct {
cache cache.Cache
}
// NewWechat init
func NewWechat() *Wechat {
return &Wechat{}
}
//SetCache 设置cache
func (w *Wechat) SetCache(cache cache.Cache) {
w.cache = cache
}
//GetOfficialAccount 获取微信公众号实例
func (w *Wechat) GetOfficialAccount(c *offConfig.Config) *officialaccount.OfficialAccount {
if c.Cache == nil {
c.Cache = w.cache
}
return officialaccount.NewOfficialAccount(c)
}
// GetMiniProgram 获取小程序的实例
func (w *Wechat) GetMiniProgram(c *miniConfig.Config) *miniprogram.MiniProgram {
if c.Cache == nil {
c.Cache = w.cache
}
return miniprogram.NewMiniProgram(c)
}
// GetPay 获取微信支付的实例
func (w *Wechat) GetPay(c *config.Config) *pay.Pay {
return pay.NewPay(c)
}
// GetOpenPlatform 获取微信开放平台的实例
func (w *Wechat) GetOpenPlatform(c *openConfig.Config) *openplatform.OpenPlatform {
return openplatform.NewOpenPlatform(c)
}