You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.5 KiB
98 lines
2.5 KiB
package dao |
|
|
|
import ( |
|
"context" |
|
"encoding/json" |
|
"net/http" |
|
"net/url" |
|
"strconv" |
|
|
|
"go-common/library/ecode" |
|
"go-common/library/log" |
|
"go-common/library/net/metadata" |
|
) |
|
|
|
const ( |
|
_accTagsURI = "/api/tag/get" |
|
_accTagsSetURI = "/api/tag/set" |
|
_liveMetalURI = "/fans_medal/v1/medal/get_medal_opened" |
|
_isAnsweredURI = "/x/internal/credit/labour/isanswered" |
|
) |
|
|
|
// AccTags get account tags. |
|
func (d *Dao) AccTags(c context.Context, mid int64) (data json.RawMessage, err error) { |
|
var ( |
|
params = url.Values{} |
|
ip = metadata.String(c, metadata.RemoteIP) |
|
) |
|
params.Set("mids", strconv.FormatInt(mid, 10)) |
|
var res struct { |
|
Code int `json:"code"` |
|
List json.RawMessage `json:"list"` |
|
} |
|
if err = d.httpR.Get(c, d.accTagsURL, ip, params, &res); err != nil { |
|
log.Error("d.httpR.Get(%s) error(%v)", d.accTagsURL, err) |
|
return |
|
} |
|
if res.Code != ecode.OK.Code() { |
|
log.Error("d.httpR.Get(%s) code(%d) error", d.accTagsURL, res.Code) |
|
err = ecode.Int(res.Code) |
|
return |
|
} |
|
data = res.List |
|
return |
|
} |
|
|
|
// SetAccTags set account tags. |
|
func (d *Dao) SetAccTags(c context.Context, tags, ck string) (err error) { |
|
var ( |
|
params = url.Values{} |
|
ip = metadata.String(c, metadata.RemoteIP) |
|
) |
|
params.Set("tags", tags) |
|
var req *http.Request |
|
if req, err = d.httpW.NewRequest(http.MethodGet, d.accTagsSetURL, ip, params); err != nil { |
|
log.Error("d.httpW.NewRequest(%s) error(%v)", d.accTagsSetURL, err) |
|
return |
|
} |
|
req.Header.Set("Cookie", ck) |
|
var res struct { |
|
Code int `json:"code"` |
|
} |
|
if err = d.httpW.Do(c, req, &res); err != nil { |
|
log.Error("d.httpW.Do(%s) error(%v)", d.accTagsSetURL, err) |
|
return |
|
} |
|
if res.Code != ecode.OK.Code() { |
|
log.Error("d.httpW.Get(%s) code(%d) error", d.accTagsSetURL, res.Code) |
|
err = ecode.Int(res.Code) |
|
} |
|
return |
|
} |
|
|
|
// IsAnswered get if block account answered. |
|
func (d *Dao) IsAnswered(c context.Context, mid, start int64) (status int, err error) { |
|
var ( |
|
params = url.Values{} |
|
ip = metadata.String(c, metadata.RemoteIP) |
|
) |
|
params.Set("mid", strconv.FormatInt(mid, 10)) |
|
params.Set("start", strconv.FormatInt(start, 10)) |
|
var res struct { |
|
Code int `json:"code"` |
|
Data struct { |
|
Status int `json:"status"` |
|
} `json:"data"` |
|
} |
|
if err = d.httpR.Get(c, d.isAnsweredURL, ip, params, &res); err != nil { |
|
log.Error("d.httpR.Get(%s) error(%v)", d.isAnsweredURL, err) |
|
return |
|
} |
|
if res.Code != ecode.OK.Code() { |
|
log.Error("d.httpR.Get(%s) code(%d) error", d.isAnsweredURL, res.Code) |
|
err = ecode.Int(res.Code) |
|
return |
|
} |
|
status = res.Data.Status |
|
return |
|
}
|
|
|