mirror of
				https://github.com/openimsdk/open-im-server.git
				synced 2025-10-27 05:52:29 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| /*
 | |
| ** description("").
 | |
| ** copyright('open-im,www.open-im.io').
 | |
| ** author("fg,Gordon@tuoyun.net").
 | |
| ** time(2021/9/15 10:28).
 | |
|  */
 | |
| package user
 | |
| 
 | |
| import (
 | |
| 	"Open_IM/pkg/common/config"
 | |
| 	"Open_IM/pkg/common/db/mysql_model/im_mysql_model"
 | |
| 	"Open_IM/pkg/common/log"
 | |
| 	pbUser "Open_IM/pkg/proto/user"
 | |
| 	"Open_IM/pkg/utils"
 | |
| 	"context"
 | |
| )
 | |
| 
 | |
| func (s *userServer) DeleteUsers(_ context.Context, req *pbUser.DeleteUsersReq) (*pbUser.DeleteUsersResp, error) {
 | |
| 	log.InfoByKv("rpc DeleteUsers arrived server", req.OperationID, "args", req.String())
 | |
| 	var resp pbUser.DeleteUsersResp
 | |
| 	c, err := utils.ParseToken(req.Token)
 | |
| 	if err != nil {
 | |
| 		log.ErrorByKv("parse token failed", req.OperationID, "err", err.Error())
 | |
| 		return &pbUser.DeleteUsersResp{CommonResp: &pbUser.CommonResp{ErrorCode: config.ErrParseToken.ErrCode, ErrorMsg: err.Error()}, FailedUidList: req.DeleteUidList}, nil
 | |
| 	}
 | |
| 	if !utils.IsContain(c.UID, config.Config.Manager.AppManagerUid) {
 | |
| 		log.ErrorByKv(" Authentication failed", req.OperationID, "args", c)
 | |
| 		return &pbUser.DeleteUsersResp{CommonResp: &pbUser.CommonResp{ErrorCode: 401, ErrorMsg: "not authorized"}, FailedUidList: req.DeleteUidList}, nil
 | |
| 	}
 | |
| 	for _, uid := range req.DeleteUidList {
 | |
| 		err = im_mysql_model.UserDelete(uid)
 | |
| 		if err != nil {
 | |
| 			resp.CommonResp.ErrorCode = 201
 | |
| 			resp.CommonResp.ErrorMsg = "some uid deleted failed"
 | |
| 			resp.FailedUidList = append(resp.FailedUidList, uid)
 | |
| 		}
 | |
| 	}
 | |
| 	return &resp, nil
 | |
| 
 | |
| }
 | |
| 
 | |
| func (s *userServer) GetAllUsersUid(_ context.Context, req *pbUser.GetAllUsersUidReq) (*pbUser.GetAllUsersUidResp, error) {
 | |
| 	log.InfoByKv("rpc GetAllUsersUid arrived server", req.OperationID, "args", req.String())
 | |
| 	c, err := utils.ParseToken(req.Token)
 | |
| 	if err != nil {
 | |
| 		log.InfoByKv("parse token failed", req.OperationID, "err", err.Error())
 | |
| 		return &pbUser.GetAllUsersUidResp{CommonResp: &pbUser.CommonResp{ErrorCode: config.ErrParseToken.ErrCode, ErrorMsg: err.Error()}}, nil
 | |
| 	}
 | |
| 	if !utils.IsContain(c.UID, config.Config.Manager.AppManagerUid) {
 | |
| 		log.ErrorByKv(" Authentication failed", req.OperationID, "args", c)
 | |
| 		return &pbUser.GetAllUsersUidResp{CommonResp: &pbUser.CommonResp{ErrorCode: 401, ErrorMsg: "not authorized"}}, nil
 | |
| 	}
 | |
| 	uidList, err := im_mysql_model.SelectAllUID()
 | |
| 	if err != nil {
 | |
| 		log.ErrorByKv("db get failed", req.OperationID, "err", err.Error())
 | |
| 		return &pbUser.GetAllUsersUidResp{CommonResp: &pbUser.CommonResp{ErrorCode: config.ErrMysql.ErrCode, ErrorMsg: err.Error()}}, nil
 | |
| 	} else {
 | |
| 		return &pbUser.GetAllUsersUidResp{CommonResp: &pbUser.CommonResp{ErrorCode: 0, ErrorMsg: ""}, UidList: uidList}, nil
 | |
| 	}
 | |
| 
 | |
| }
 |