Merge pull request 'conf' (#546) from conf into test
Reviewed-on: http://121.41.31.146:3000/wishpal_ironfan/service/pulls/546
This commit is contained in:
commit
b9e84eb43c
|
@ -23,6 +23,9 @@ const (
|
|||
AccountPunishment_BlockFromCreatingFreeZoneMoment = 1 // 禁止发免费空间贴
|
||||
AccountPunishment_BlockFromCreatingPaidZoneMoment = 2 // 禁止发付费空间贴
|
||||
AccountPunishment_BlockFromCreatingZoneMoment = 3 // 禁止发空间贴
|
||||
AccountPunishment_BlockFromBeingSearched = 4 // 禁止被搜索到
|
||||
AccountPunishment_BlockFromBeingDiscovered = 5 // 禁止在推荐被发现
|
||||
AccountPunishment_BlockFromBeingSeenAtMoment = 6 // 禁止在广场被发现
|
||||
)
|
||||
|
||||
const (
|
||||
|
|
|
@ -5,10 +5,11 @@ import "service/api/base"
|
|||
// 根据UserId模糊查询(和姓名取并集)
|
||||
type OpListFuzzilyByUserIdReq struct {
|
||||
base.BaseRequest
|
||||
UserIdString string `json:"user_id_string"` //user_id模糊匹配
|
||||
Offset int `json:"offset"`
|
||||
Limit int `json:"limit"`
|
||||
Sort []string
|
||||
UserIdString string `json:"user_id_string"` //user_id模糊匹配
|
||||
Offset int `json:"offset"`
|
||||
Limit int `json:"limit"`
|
||||
Sort []string
|
||||
BlockedFromBeingSearchedList []string
|
||||
}
|
||||
|
||||
type OpListFuzzilyByUserIdData struct {
|
||||
|
@ -22,10 +23,11 @@ type OpListFuzzilyByUserIdResp struct {
|
|||
// 根据Name模糊查询
|
||||
type OpListFuzzilyByNameReq struct {
|
||||
base.BaseRequest
|
||||
Name string `json:"name"` //name模糊匹配
|
||||
Offset int `json:"offset"`
|
||||
Limit int `json:"limit"`
|
||||
Sort []string
|
||||
Name string `json:"name"` //name模糊匹配
|
||||
Offset int `json:"offset"`
|
||||
Limit int `json:"limit"`
|
||||
Sort []string
|
||||
BlockedFromBeingSearchedList []string
|
||||
}
|
||||
|
||||
type OpListFuzzilyByNameData struct {
|
||||
|
|
|
@ -89,9 +89,9 @@ func (es *ElasticSearch) GetStreamerAcctListFuzzilyByName(ctx *gin.Context, req
|
|||
pinyinClause = elastic.NewMatchPhraseQuery("pinyin.long_char", req.Name)
|
||||
}
|
||||
orClause := elastic.NewBoolQuery().Should(nameClause, pinyinClause)
|
||||
query := elastic.NewBoolQuery().Must()
|
||||
delFlagClause := elastic.NewMatchQuery("del_flag", 0)
|
||||
query.Must(orClause, delFlagClause)
|
||||
mustnotClause := elastic.NewTermsQueryFromStrings("_id", req.BlockedFromBeingSearchedList...)
|
||||
query := elastic.NewBoolQuery().Must(orClause, delFlagClause).MustNot(mustnotClause)
|
||||
|
||||
res, err := es.clientMix.Search(es.getIndexStreamerAcct()).Query(query).From(req.Offset).Size(req.Limit).Sort("ct", true).Do(ctx)
|
||||
if err != nil {
|
||||
|
@ -135,9 +135,9 @@ func (es *ElasticSearch) GetStreamerAcctListFuzzilyByUserId(ctx *gin.Context, re
|
|||
userIdStringClause = elastic.NewMatchPhraseQuery("user_id_string.long_char", req.UserIdString)
|
||||
}
|
||||
orClause := elastic.NewBoolQuery().Should(nameClause, userIdStringClause)
|
||||
query := elastic.NewBoolQuery().Must()
|
||||
delFlagClause := elastic.NewMatchQuery("del_flag", 0)
|
||||
query.Must(orClause, delFlagClause)
|
||||
mustnotClause := elastic.NewTermsQueryFromStrings("_id", req.BlockedFromBeingSearchedList...)
|
||||
query := elastic.NewBoolQuery().Must(orClause, delFlagClause).MustNot(mustnotClause)
|
||||
|
||||
res, err := es.clientMix.Search(es.getIndexStreamerAcct()).Query(query).From(req.Offset).Size(req.Limit).Sort("ct", true).Do(ctx)
|
||||
if err != nil {
|
||||
|
|
|
@ -3687,6 +3687,137 @@ func (m *Mongo) GetAppConfigListByKey(ctx *gin.Context, req *appconfigproto.OpLi
|
|||
return appconfig, err
|
||||
}
|
||||
|
||||
// 账号处罚相关
|
||||
func (m *Mongo) CreateAccountPunishment(ctx *gin.Context, accountpunishment *dbstruct.AccountPunishment) error {
|
||||
col := m.getColAccountPunishment()
|
||||
_, err := col.InsertOne(ctx, accountpunishment)
|
||||
return err
|
||||
}
|
||||
|
||||
func (m *Mongo) UpdateAccountPunishment(ctx *gin.Context, accountpunishment *dbstruct.AccountPunishment) error {
|
||||
col := m.getColAccountPunishment()
|
||||
set := util.EntityToM(accountpunishment)
|
||||
set["ut"] = time.Now().Unix()
|
||||
up := qmgo.M{
|
||||
"$set": set,
|
||||
}
|
||||
err := col.UpdateId(ctx, accountpunishment.Id, up)
|
||||
return err
|
||||
}
|
||||
|
||||
func (m *Mongo) DeleteAccountPunishment(ctx *gin.Context, id int64) error {
|
||||
col := m.getColAccountPunishment()
|
||||
update := qmgo.M{
|
||||
"$set": qmgo.M{
|
||||
"del_flag": 1,
|
||||
},
|
||||
}
|
||||
err := col.UpdateId(ctx, id, update)
|
||||
return err
|
||||
}
|
||||
|
||||
func (m *Mongo) GetAccountPunishmentList(ctx *gin.Context, req *accountpunishmentproto.OpListReq) ([]*dbstruct.AccountPunishment, error) {
|
||||
list := make([]*dbstruct.AccountPunishment, 0)
|
||||
col := m.getColAccountPunishment()
|
||||
query := qmgo.M{
|
||||
"status": qmgo.M{
|
||||
"$ne": consts.AccountPunishment_Interrupted,
|
||||
},
|
||||
"end_time": qmgo.M{
|
||||
"$gt": time.Now().Unix(),
|
||||
},
|
||||
"del_flag": 0,
|
||||
}
|
||||
err := col.Find(ctx, query).Sort("-ct").Skip(int64(req.Offset)).Limit(int64(req.Limit)).All(&list)
|
||||
if err == qmgo.ErrNoSuchDocuments {
|
||||
err = nil
|
||||
return list, err
|
||||
}
|
||||
return list, err
|
||||
}
|
||||
|
||||
func (m *Mongo) GetAccountPunishmentListById(ctx *gin.Context, id int64) (*dbstruct.AccountPunishment, error) {
|
||||
accountpunishment := &dbstruct.AccountPunishment{}
|
||||
col := m.getColAccountPunishment()
|
||||
query := qmgo.M{
|
||||
"_id": id,
|
||||
"del_flag": 0,
|
||||
}
|
||||
err := col.Find(ctx, query).One(&accountpunishment)
|
||||
if err == qmgo.ErrNoSuchDocuments {
|
||||
err = nil
|
||||
return nil, err
|
||||
}
|
||||
return accountpunishment, err
|
||||
}
|
||||
|
||||
func (m *Mongo) GetAccountPunishmentListByMidAndType(ctx *gin.Context, mid int64, typ int64) (*dbstruct.AccountPunishment, error) {
|
||||
accountpunishment := &dbstruct.AccountPunishment{}
|
||||
col := m.getColAccountPunishment()
|
||||
query := qmgo.M{
|
||||
"mid": mid,
|
||||
"type": typ,
|
||||
"status": qmgo.M{
|
||||
"$ne": consts.AccountPunishment_Interrupted,
|
||||
},
|
||||
"end_time": qmgo.M{
|
||||
"$gt": time.Now().Unix(),
|
||||
},
|
||||
"del_flag": 0,
|
||||
}
|
||||
err := col.Find(ctx, query).One(&accountpunishment)
|
||||
if err == qmgo.ErrNoSuchDocuments {
|
||||
err = nil
|
||||
return nil, err
|
||||
}
|
||||
return accountpunishment, err
|
||||
}
|
||||
|
||||
func (m *Mongo) GetAccountPunishmentListByType(ctx *gin.Context, typ int64) ([]*dbstruct.AccountPunishment, error) {
|
||||
list := make([]*dbstruct.AccountPunishment, 0)
|
||||
col := m.getColAccountPunishment()
|
||||
query := qmgo.M{
|
||||
"type": typ,
|
||||
"status": qmgo.M{
|
||||
"$ne": consts.AccountPunishment_Interrupted,
|
||||
},
|
||||
"end_time": qmgo.M{
|
||||
"$gt": time.Now().Unix(),
|
||||
},
|
||||
"del_flag": 0,
|
||||
}
|
||||
err := col.Find(ctx, query).All(&list)
|
||||
if err == qmgo.ErrNoSuchDocuments {
|
||||
err = nil
|
||||
return nil, err
|
||||
}
|
||||
return list, err
|
||||
}
|
||||
|
||||
func (m *Mongo) GetTerminatedAccountPunishmentList(ctx *gin.Context, req *accountpunishmentproto.OpListTerminatedReq) ([]*dbstruct.AccountPunishment, error) {
|
||||
list := make([]*dbstruct.AccountPunishment, 0)
|
||||
col := m.getColAccountPunishment()
|
||||
query := qmgo.M{
|
||||
"$or": []qmgo.M{
|
||||
{
|
||||
"status": consts.AccountPunishment_Interrupted,
|
||||
},
|
||||
{
|
||||
"end_time": qmgo.M{
|
||||
"$lte": time.Now().Unix(),
|
||||
},
|
||||
},
|
||||
},
|
||||
"del_flag": 0,
|
||||
}
|
||||
err := col.Find(ctx, query).Sort("-ct").Skip(int64(req.Offset)).Limit(int64(req.Limit)).All(&list)
|
||||
if err == qmgo.ErrNoSuchDocuments {
|
||||
err = nil
|
||||
return list, err
|
||||
}
|
||||
return list, err
|
||||
}
|
||||
|
||||
// 账户注销相关
|
||||
func (m *Mongo) CreateAccountCancellation(ctx *gin.Context, account_cancellation *dbstruct.AccountCancellation) error {
|
||||
col := m.getColAccountCancellation()
|
||||
|
|
|
@ -41,6 +41,7 @@ import (
|
|||
"service/dbstruct"
|
||||
"service/library/apollo"
|
||||
"service/library/logger"
|
||||
"service/library/redis"
|
||||
interceptor "service/library/taginterceptor"
|
||||
"strings"
|
||||
"time"
|
||||
|
@ -1258,12 +1259,21 @@ func (s *Service) ApiGetStreamerExtListFuzzilyByUserId(ctx *gin.Context, req *st
|
|||
|
||||
ec = errcode.ErrCodeStreamerSrvOk
|
||||
|
||||
// 从redis中获取当前禁止被搜索的主播
|
||||
blockedlist := make([]string, 0)
|
||||
err := redis.GetRedisClient().GetObject(consts.RedisStreamerPrefix+"blocked_from_being_searched_list", &blockedlist)
|
||||
if err != nil {
|
||||
logger.Error("Redis read failed : %v", err)
|
||||
return
|
||||
}
|
||||
|
||||
//1.从主播用户表中模糊匹配所有主播信息的用户侧数据,按mid正序排序
|
||||
streameraccts, err := _DefaultStreamerAcct.OpListStreamerAcctFuzzilyByUserId(ctx, &streameracctproto.OpListFuzzilyByUserIdReq{
|
||||
UserIdString: fmt.Sprint(util.DerefInt64(req.UserId)),
|
||||
Offset: req.Offset,
|
||||
Limit: req.Limit,
|
||||
Sort: []string{"_id"},
|
||||
UserIdString: fmt.Sprint(util.DerefInt64(req.UserId)),
|
||||
Offset: req.Offset,
|
||||
Limit: req.Limit,
|
||||
Sort: []string{"_id"},
|
||||
BlockedFromBeingSearchedList: blockedlist,
|
||||
})
|
||||
if err != nil {
|
||||
logger.Error("StreamerAcct OpListFuzzilyByUserId fail, req: %v, err: %v", util.ToJson(req), err)
|
||||
|
@ -1295,12 +1305,21 @@ func (s *Service) ApiGetStreamerExtListFuzzilyByName(ctx *gin.Context, req *stre
|
|||
|
||||
ec = errcode.ErrCodeStreamerSrvOk
|
||||
|
||||
// 从redis中获取当前禁止被搜索的主播
|
||||
blockedlist := make([]string, 0)
|
||||
err := redis.GetRedisClient().GetObject(consts.RedisStreamerPrefix+"blocked_from_being_searched_list", &blockedlist)
|
||||
if err != nil {
|
||||
logger.Error("Redis read failed : %v", err)
|
||||
return
|
||||
}
|
||||
|
||||
//1.从主播用户表中模糊匹配所有主播信息的用户侧数据,按mid正序排序
|
||||
streameraccts, err := _DefaultStreamerAcct.OpListStreamerAcctFuzzilyByName(ctx, &streameracctproto.OpListFuzzilyByNameReq{
|
||||
Name: req.Name,
|
||||
Offset: req.Offset,
|
||||
Limit: req.Limit,
|
||||
Sort: []string{"_id"},
|
||||
Name: req.Name,
|
||||
Offset: req.Offset,
|
||||
Limit: req.Limit,
|
||||
Sort: []string{"_id"},
|
||||
BlockedFromBeingSearchedList: blockedlist,
|
||||
})
|
||||
if err != nil {
|
||||
logger.Error("Account OpListFuzzilyByName fail, req: %v, err: %v", util.ToJson(req), err)
|
||||
|
|
|
@ -84,6 +84,7 @@ func (s *CronService) Init(c any) (exec xxl.Executor, err error) {
|
|||
exec.RegTask("video_moderation_batch", s.VideoModerationBatch)
|
||||
exec.RegTask("video_moderation_batch_his", s.VideoModerationBatchHis)
|
||||
exec.RegTask("clear_expired_btcb", s.ClearExpiredBtcb)
|
||||
exec.RegTask("reload_blocked_from_being_searched_list", s.ReloadBlockedFromBeingSearchedList)
|
||||
exec.LogHandler(customLogHandle)
|
||||
//注册任务handler
|
||||
|
||||
|
|
|
@ -101,3 +101,12 @@ func (p *AccountPunishment) OpListByMidAndType(ctx *gin.Context, mid int64, typ
|
|||
}
|
||||
return accountpunishment, nil
|
||||
}
|
||||
|
||||
func (p *AccountPunishment) OpListByType(ctx *gin.Context, typ int64) ([]*dbstruct.AccountPunishment, error) {
|
||||
list, err := p.store.GetAccountPunishmentListByType(ctx, typ)
|
||||
if err != nil {
|
||||
logger.Error("GetAccountPunishmentListByType fail, err: %v", err)
|
||||
return nil, err
|
||||
}
|
||||
return list, nil
|
||||
}
|
||||
|
|
|
@ -279,7 +279,7 @@ func (s *Service) ConnectToVideoModeration() {
|
|||
|
||||
// 推荐服务数据库接口
|
||||
func (s *Service) ConnectToStreamerRecommService(r *StreamerRecommService) {
|
||||
r.SetStreamerRecommDbService(_DefaultMoment, _DefaultZoneMoment, _DefaultVas, _DefaultStreamer, _DefaultStreamerScore)
|
||||
r.SetStreamerRecommDbService(_DefaultMoment, _DefaultZoneMoment, _DefaultVas, _DefaultStreamer, _DefaultStreamerScore, _DefaultAccountPunishment)
|
||||
r.SetOut(func(mids []int64) error {
|
||||
err := redis.GetRedisClient().Set(consts.RedisStreamerPrefix+"recomm_list", mids, 0)
|
||||
if err != nil {
|
||||
|
|
|
@ -21,12 +21,13 @@ var (
|
|||
)
|
||||
|
||||
type StreamerRecommService struct {
|
||||
momentService *logic.Moment
|
||||
zoneMomentService *logic.ZoneMoment
|
||||
vasService *logic.Vas
|
||||
streamerService *logic.Streamer
|
||||
streamerScoreService *logic.StreamerScore
|
||||
out func([]int64) error
|
||||
momentService *logic.Moment
|
||||
zoneMomentService *logic.ZoneMoment
|
||||
vasService *logic.Vas
|
||||
streamerService *logic.Streamer
|
||||
streamerScoreService *logic.StreamerScore
|
||||
accountpunishmentService *logic.AccountPunishment
|
||||
out func([]int64) error
|
||||
|
||||
formula *apollostruct.StreamerScoreFormulaCfg
|
||||
|
||||
|
@ -38,12 +39,13 @@ func NewStreamerRecommService() *StreamerRecommService {
|
|||
return new(StreamerRecommService)
|
||||
}
|
||||
|
||||
func (s *StreamerRecommService) SetStreamerRecommDbService(moment *logic.Moment, zonemoment *logic.ZoneMoment, vas *logic.Vas, streamer *logic.Streamer, streamerScore *logic.StreamerScore) {
|
||||
func (s *StreamerRecommService) SetStreamerRecommDbService(moment *logic.Moment, zonemoment *logic.ZoneMoment, vas *logic.Vas, streamer *logic.Streamer, streamerScore *logic.StreamerScore, accountpunishment *logic.AccountPunishment) {
|
||||
s.momentService = moment
|
||||
s.zoneMomentService = zonemoment
|
||||
s.vasService = vas
|
||||
s.streamerService = streamer
|
||||
s.streamerScoreService = streamerScore
|
||||
s.accountpunishmentService = accountpunishment
|
||||
}
|
||||
|
||||
func (s *StreamerRecommService) SetOut(out func([]int64) error) {
|
||||
|
@ -211,10 +213,25 @@ func (s *StreamerRecommService) save() {
|
|||
|
||||
// 推送
|
||||
func (s *StreamerRecommService) push() error {
|
||||
|
||||
// 查找禁止在推荐被发现的主播,不将其加入推荐列
|
||||
acctpunishments, err := _DefaultAccountPunishment.OpListByType(&gin.Context{}, consts.AccountPunishment_BlockFromBeingDiscovered)
|
||||
if err != nil {
|
||||
logger.Error("_DefaultAccountPunishment OpListByType fail, err: %v", err)
|
||||
}
|
||||
blockedMp := make(map[int64]*dbstruct.AccountPunishment)
|
||||
for _, acctpunishment := range acctpunishments {
|
||||
blockedMp[acctpunishment.GetMid()] = &dbstruct.AccountPunishment{}
|
||||
}
|
||||
|
||||
list := make([]int64, 0)
|
||||
l := make([]*dbstruct.StreamerScore, 0)
|
||||
for i := len(s.scorelist) - 1; i >= 0; i-- {
|
||||
v := s.scorelist[i]
|
||||
if _, ok := blockedMp[v.Mid]; ok {
|
||||
continue
|
||||
}
|
||||
|
||||
list = append(list, v.Mid)
|
||||
l = append(l, &dbstruct.StreamerScore{
|
||||
Id: v.Mid,
|
||||
|
@ -229,7 +246,7 @@ func (s *StreamerRecommService) push() error {
|
|||
Score: v.Score,
|
||||
})
|
||||
}
|
||||
err := _DefaultStreamerScore.OpSetStreamerScore(&gin.Context{}, l)
|
||||
err = _DefaultStreamerScore.OpSetStreamerScore(&gin.Context{}, l)
|
||||
if err != nil {
|
||||
logger.Error("OpSetStreamerScore fail, err: %v", err)
|
||||
}
|
||||
|
|
|
@ -461,6 +461,16 @@ func (s *CronService) ReloadMomentRecommList(ctx context.Context, param *xxl.Run
|
|||
return fmt.Sprintf("OpGetMomentListByMids fail, err: %v", err)
|
||||
}
|
||||
|
||||
// 查找禁止在广场被发现的主播,不将其加入推荐列
|
||||
acctpunishments, err := _DefaultAccountPunishment.OpListByType(&gin.Context{}, consts.AccountPunishment_BlockFromBeingSeenAtMoment)
|
||||
if err != nil {
|
||||
logger.Error("_DefaultAccountPunishment OpListByType fail, err: %v", err)
|
||||
}
|
||||
blockedMp := make(map[int64]*dbstruct.AccountPunishment)
|
||||
for _, acctpunishment := range acctpunishments {
|
||||
blockedMp[acctpunishment.GetMid()] = &dbstruct.AccountPunishment{}
|
||||
}
|
||||
|
||||
// 清缓存
|
||||
if err := redis.GetRedisClient().Del(consts.RedisMomentPrefix + "recomm_list"); err != nil {
|
||||
logger.Error("Del redis cache fail, err: %v", err)
|
||||
|
@ -477,7 +487,10 @@ func (s *CronService) ReloadMomentRecommList(ctx context.Context, param *xxl.Run
|
|||
|
||||
// 加载缓存
|
||||
for _, moment := range list {
|
||||
id := util.DerefInt64(moment.Id)
|
||||
if _, ok := blockedMp[moment.GetMid()]; ok {
|
||||
continue
|
||||
}
|
||||
id := moment.GetId()
|
||||
err := redis.GetRedisClient().RPush(consts.RedisMomentPrefix+"recomm_list", id)
|
||||
if err != nil {
|
||||
logger.Error("Redis cache fail, err: %v", err)
|
||||
|
@ -567,3 +580,31 @@ func (s *CronService) ClearExpiredBtcb(ctx context.Context, param *xxl.RunReq) (
|
|||
logger.Info("Clear expired btcb ends...")
|
||||
return "Clear expired btcb ends..."
|
||||
}
|
||||
|
||||
func (s *CronService) ReloadBlockedFromBeingSearchedList(ctx context.Context, param *xxl.RunReq) (msg string) {
|
||||
logger.Info("task %v param: %v log_id: %v", param.ExecutorHandler, param.ExecutorParams, xxl.Int64ToStr(param.LogID))
|
||||
logger.Info("Refreshing blocked-from-being-searched list cached in redis...")
|
||||
|
||||
// 查找禁止在搜索被发现的主播
|
||||
list, err := _DefaultAccountPunishment.OpListByType(&gin.Context{}, consts.AccountPunishment_BlockFromBeingSearched)
|
||||
if err != nil {
|
||||
logger.Error("_DefaultAccountPunishment OpListByType fail, err: %v", err)
|
||||
}
|
||||
// 清缓存
|
||||
if err := redis.GetRedisClient().Del(consts.RedisStreamerPrefix + "blocked_from_being_searched_list"); err != nil {
|
||||
logger.Error("Del redis cache fail, err: %v", err)
|
||||
return fmt.Sprintf("Del redis cache fail, err: %v", err)
|
||||
}
|
||||
|
||||
// 加载缓存
|
||||
for _, acctpunishment := range list {
|
||||
err := redis.GetRedisClient().RPush(consts.RedisStreamerPrefix+"blocked_from_being_searched_list", fmt.Sprint(acctpunishment.GetMid()))
|
||||
if err != nil {
|
||||
logger.Error("Redis cache fail, err: %v", err)
|
||||
return fmt.Sprintf("Redis cache fail, err: %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
logger.Info("Refresh blocked-from-being-searched list cached in redis accomplished...")
|
||||
return "Refresh blocked-from-being-searched list cached in redis accomplished"
|
||||
}
|
||||
|
|
|
@ -19,6 +19,13 @@ type AccountPunishment struct {
|
|||
DelFlag *int64 `json:"del_flag" bson:"del_flag"` // 删除标记
|
||||
}
|
||||
|
||||
func (p *AccountPunishment) GetMid() int64 {
|
||||
if p == nil || p.Mid == nil {
|
||||
return 0
|
||||
}
|
||||
return *p.Mid
|
||||
}
|
||||
|
||||
func (p *AccountPunishment) GetEndTimeFormatString() string {
|
||||
if p == nil || p.EndTime == nil {
|
||||
return ""
|
||||
|
|
Loading…
Reference in New Issue