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.
38 lines
834 B
38 lines
834 B
package service |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/interface/openplatform/article/dao" |
|
"go-common/app/service/main/archive/api" |
|
"go-common/app/service/main/archive/model/archive" |
|
"go-common/library/log" |
|
) |
|
|
|
// Archives gets archives by aids. |
|
func (s *Service) Archives(c context.Context, aids []int64, ip string) (arcs map[int64]*api.Arc, err error) { |
|
arg := &archive.ArgAids2{ |
|
Aids: aids, |
|
RealIP: ip, |
|
} |
|
if arcs, err = s.arcRPC.Archives3(c, arg); err != nil { |
|
dao.PromError("rpc:获取视频稿件信息") |
|
log.Error("s.arcRPC.Archives(%v) error(%+v)", aids, err) |
|
return |
|
} |
|
fmtArcs(arcs) |
|
return |
|
} |
|
|
|
func fmtArcs(arcs map[int64]*api.Arc) { |
|
for id, v := range arcs { |
|
if !v.IsNormal() { |
|
delete(arcs, id) |
|
continue |
|
} |
|
// 会员可见 不展示播放数 |
|
if v.Access >= 10000 { |
|
v.Stat.View = -1 |
|
} |
|
} |
|
}
|
|
|