| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- package wxcontext
- import (
- "net/http"
- "sync"
- "github.com/astaxie/beego/cache"
- )
- // Context struct
- type Context struct {
- Config
- // AppID string
- // AppSecret string
- // Token string
- // EncodingAESKey string
- Cache cache.Cache
- Writer http.ResponseWriter
- Request *http.Request
- //accessTokenLock 读写锁 同一个AppID一个
- accessTokenLock *sync.RWMutex
- //jsAPITicket 读写锁 同一个AppID一个
- jsAPITicketLock *sync.RWMutex
- HTTPClient *http.Client
- SHTTPClient *http.Client //SSL client
- // //商户平台APIKey
- // MchAPIKey string
- // MchID string
- }
- // Query returns the keyed url query value if it exists
- func (ctx *Context) Query(key string) string {
- value, _ := ctx.GetQuery(key)
- return value
- }
- // GetQuery is like Query(), it returns the keyed url query value
- func (ctx *Context) GetQuery(key string) (string, bool) {
- req := ctx.Request
- if values, ok := req.URL.Query()[key]; ok && len(values) > 0 {
- return values[0], true
- }
- return "", false
- }
- // SetJsAPITicketLock 设置jsAPITicket的lock
- func (ctx *Context) SetJsAPITicketLock(lock *sync.RWMutex) {
- ctx.jsAPITicketLock = lock
- }
- // GetJsAPITicketLock 获取jsAPITicket 的lock
- func (ctx *Context) GetJsAPITicketLock() *sync.RWMutex {
- return ctx.jsAPITicketLock
- }
|