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.

194 lines
3.6 KiB
Go

3 years ago
/**
* @Author: jager
* @Email: lhj168os@gmail.com
* @File: fund
* @Date: 2021/12/1 3:05
* @package: fund
* @Version: v1.0.0
*
* @Description:
*
*/
package fund
import (
"encoding/json"
"fmt"
"github.com/jageros/hawox/errcode"
"github.com/jageros/hawox/httpc"
"github.com/jageros/hawox/logx"
"regexp"
"strconv"
3 years ago
"sync"
3 years ago
"time"
3 years ago
)
const (
baseUrl = "http://fundgz.1234567.com.cn/js/%s.js"
)
var (
3 years ago
jsonStr = regexp.MustCompile(`{(.*?)}`)
3 years ago
fds = &funds{fdsMap: map[string]*fund{}}
3 years ago
)
type fund struct {
Code string `json:"fundcode"`
3 years ago
FName string `json:"name"`
3 years ago
UnitVal string `json:"dwjz"`
EstimateVal string `json:"gsz"`
RisePer string `json:"gszzl"`
UpdateTime string `json:"gztime"`
3 years ago
CheckTime time.Time
3 years ago
}
3 years ago
func (f *fund) Name() string {
return f.FName
}
func (f *fund) Update() error {
url := fmt.Sprintf(baseUrl, f.Code)
result, err := httpc.Request(httpc.GET, url, httpc.FORM, nil, nil)
if err != nil {
return err
}
ss := jsonStr.FindStringSubmatch(string(result))
if len(ss) <= 0 {
return errcode.New(404, "找不到基金:"+f.Code)
}
ff := &fund{}
err = json.Unmarshal([]byte(ss[0]), ff)
if err == nil {
f.FName = ff.FName
f.UnitVal = ff.UnitVal
f.EstimateVal = ff.EstimateVal
f.RisePer = ff.RisePer
f.UpdateTime = ff.UpdateTime
3 years ago
f.CheckTime = time.Now()
3 years ago
}
return err
}
3 years ago
func (f *fund) Msg() string {
3 years ago
now := time.Now()
h := now.Hour()
if h > 9 && h < 15 && now.Sub(f.CheckTime) > time.Minute*5 {
err := f.Update()
if err != nil {
logx.Error(err)
}
}
3 years ago
var rise string
last, err1 := strconv.ParseFloat(f.UnitVal, 64)
cur, err2 := strconv.ParseFloat(f.EstimateVal, 64)
if err1 == nil && err2 == nil {
rise = fmt.Sprintf("%.5f", cur-last)
}
3 years ago
msg := fmt.Sprintf(msgTemplate, f.FName, f.Code, f.UpdateTime, f.UnitVal, f.EstimateVal, rise, f.RisePer)
3 years ago
return msg
}
3 years ago
type funds struct {
3 years ago
fdsMap map[string]*fund
mx sync.RWMutex
3 years ago
}
3 years ago
func (fs *funds) getFund(code string) *fund {
fs.mx.RLock()
defer fs.mx.RUnlock()
if fd, ok := fs.fdsMap[code]; ok {
return fd
}
return nil
}
func (fs *funds) addFund(fd *fund) {
fs.mx.Lock()
defer fs.mx.Unlock()
fs.fdsMap[fd.Code] = fd
}
func Clear() {
fds.mx.Lock()
defer fds.mx.Unlock()
fds = &funds{
fdsMap: map[string]*fund{},
3 years ago
}
}
3 years ago
func FundsMsg(codes ...string) string {
if len(codes) <= 0 {
return ""
}
3 years ago
//var msg = "基金定投估值 >>>\n"
msg := ""
3 years ago
for _, code := range codes {
3 years ago
fd := fds.getFund(code)
if fd == nil {
fd_, err := NewFund(code)
if err == nil {
fd = fd_
fds.addFund(fd_)
} else {
logx.Error(err)
continue
}
3 years ago
}
msg += fd.Msg()
}
return msg
}
3 years ago
func NewFund(code string) (*fund, error) {
3 years ago
url := fmt.Sprintf(baseUrl, code)
result, err := httpc.Request(httpc.GET, url, httpc.FORM, nil, nil)
if err != nil {
return nil, err
}
ss := jsonStr.FindStringSubmatch(string(result))
if len(ss) <= 0 {
return nil, errcode.New(404, "找不到基金:"+code)
}
ff := &fund{}
err = json.Unmarshal([]byte(ss[0]), ff)
return ff, err
}
3 years ago
const msgTemplate = `%s(%s)
3 years ago
%s
%s %s
(%s) %s%%
`
3 years ago
3 years ago
type fundArg struct {
codes []string
}
func NewFundArg(codes ...string) *fundArg {
return &fundArg{
codes: codes,
}
}
func (fa *fundArg) Arg(openid string) map[string]interface{} {
msg := FundsMsg(fa.codes...)
if msg == "" {
return nil
}
3 years ago
arg := map[string]interface{}{
"touser": openid,
"template_id": "SQXWp3RiYySb2GYG-vMYDsSIm-KZNM9szVpFOryUQGQ",
"data": map[string]interface{}{
"keyword": map[string]interface{}{
3 years ago
"value": msg,
3 years ago
"color": "#173177",
},
},
}
return arg
}