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.
28 lines
651 B
28 lines
651 B
package user
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/errs"
|
|
pbuser "github.com/OpenIMSDK/Open-IM-Server/pkg/proto/user"
|
|
)
|
|
|
|
func (s *userServer) UserRegisterCount(
|
|
ctx context.Context,
|
|
req *pbuser.UserRegisterCountReq,
|
|
) (*pbuser.UserRegisterCountResp, error) {
|
|
if req.Start > req.End {
|
|
return nil, errs.ErrArgs.Wrap("start > end")
|
|
}
|
|
total, err := s.CountTotal(ctx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
count, err := s.CountRangeEverydayTotal(ctx, time.UnixMilli(req.Start), time.UnixMilli(req.End))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &pbuser.UserRegisterCountResp{Total: total, Count: count}, nil
|
|
}
|