You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

147 lines
2.5 KiB
Go

3 years ago
/**
* @Author: jager
* @Email: lhj168os@gmail.com
* @File: user
* @Date: 2021/12/20 4:54
* @package: user
* @Version: v1.0.0
*
* @Description:
*
*/
package user
import (
"github.com/jageros/hawox/attribute"
3 years ago
"sync"
3 years ago
"time"
)
type User struct {
attr *attribute.AttrMgr
3 years ago
mx sync.RWMutex
3 years ago
}
func newUser(openId string) (*User, error) {
u := &User{
attr: attribute.NewAttrMgr("user", openId),
}
err := u.attr.Load(true)
if err == attribute.NotExistsErr {
u.attr.SetInt64("create_time", time.Now().Unix())
err = u.attr.Save(false)
}
return u, err
}
func (u *User) OpenID() string {
return u.attr.GetAttrID().(string)
}
3 years ago
func (u *User) Stop() {
u.mx.Lock()
u.attr.SetBool("stop", true)
u.mx.Unlock()
}
func (u *User) Start() {
u.mx.Lock()
u.attr.SetBool("stop", false)
u.mx.Unlock()
}
func (u *User) IsStop() bool {
u.mx.RLock()
stop := u.attr.GetBool("stop")
u.mx.RUnlock()
return stop
}
3 years ago
func (u *User) Codes(isFund bool) []string {
3 years ago
u.mx.RLock()
defer u.mx.RUnlock()
3 years ago
key := "stock"
if isFund {
key = "fund"
}
attr := u.attr.GetMapAttr(key)
if attr == nil {
return nil
}
var codes []string
attr.ForEachKey(func(key string) bool {
3 years ago
sAttr := attr.GetMapAttr(key)
if sAttr.GetBool("notify") {
codes = append(codes, key)
}
3 years ago
return true
})
return codes
}
// HasSubscribed 查询用户是否订阅此票
func (u *User) HasSubscribed(isFund bool, code string) bool {
3 years ago
u.mx.RLock()
defer u.mx.RUnlock()
3 years ago
key := "stock"
if isFund {
key = "fund"
}
attr := u.attr.GetMapAttr(key)
if attr == nil {
return false
}
sAttr := attr.GetMapAttr(code)
if sAttr == nil {
return false
}
return sAttr.GetBool("notify")
}
// Subscribe 订阅股票或基金
func (u *User) Subscribe(isFund bool, codes ...string) {
3 years ago
u.mx.Lock()
defer u.mx.Unlock()
3 years ago
key := "stock"
if isFund {
key = "fund"
}
attr := u.attr.GetMapAttr(key)
if attr == nil {
attr = attribute.NewMapAttr()
u.attr.SetMapAttr(key, attr)
}
for _, code := range codes {
sAttr := attr.GetMapAttr(code)
if sAttr == nil {
sAttr = attribute.NewMapAttr()
attr.SetMapAttr(code, sAttr)
}
sAttr.SetBool("notify", true)
}
}
// UnSubscribe 取消订阅股票或基金
func (u *User) UnSubscribe(isFund bool, codes ...string) {
3 years ago
u.mx.Lock()
defer u.mx.Unlock()
3 years ago
key := "stock"
if isFund {
key = "fund"
}
attr := u.attr.GetMapAttr(key)
if attr == nil {
return
}
for _, code := range codes {
sAttr := attr.GetMapAttr(code)
if sAttr == nil {
return
}
sAttr.SetBool("notify", false)
}
}