-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
heavyrian2012
committed
Jun 20, 2023
1 parent
252204a
commit c8ff39c
Showing
10 changed files
with
201 additions
and
1 deletion.
There are no files selected for viewing
59 changes: 59 additions & 0 deletions
59
broker/src/main/java/com/xiaoleilu/loServer/action/admin/GetAllUserAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* This file is part of the Wildfire Chat package. | ||
* (c) Heavyrain2012 <heavyrain.lee@gmail.com> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
package com.xiaoleilu.loServer.action.admin; | ||
|
||
import cn.wildfirechat.common.APIPath; | ||
import cn.wildfirechat.common.ErrorCode; | ||
import cn.wildfirechat.pojos.InputGetUserInfo; | ||
import cn.wildfirechat.pojos.InputGetUserList; | ||
import cn.wildfirechat.pojos.InputOutputUserInfo; | ||
import cn.wildfirechat.pojos.OutputGetUserList; | ||
import cn.wildfirechat.proto.WFCMessage; | ||
import com.xiaoleilu.loServer.RestResult; | ||
import com.xiaoleilu.loServer.annotation.HttpMethod; | ||
import com.xiaoleilu.loServer.annotation.Route; | ||
import com.xiaoleilu.loServer.handler.Request; | ||
import com.xiaoleilu.loServer.handler.Response; | ||
import io.netty.handler.codec.http.FullHttpRequest; | ||
import io.netty.util.internal.StringUtil; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
@Route(APIPath.User_Get_All) | ||
@HttpMethod("POST") | ||
public class GetAllUserAction extends AdminAction { | ||
|
||
@Override | ||
public boolean isTransactionAction() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public boolean action(Request request, Response response) { | ||
if (request.getNettyRequest() instanceof FullHttpRequest) { | ||
InputGetUserList input = getRequestBody(request.getNettyRequest(), InputGetUserList.class); | ||
if (input != null && input.count > 0 && input.offset >= 0) { | ||
List<WFCMessage.User> users = messagesStore.getUserInfoList(input.count, input.offset); | ||
OutputGetUserList outputGetUserList = new OutputGetUserList(); | ||
outputGetUserList.userInfoList = new ArrayList<>(); | ||
for (WFCMessage.User user : users) { | ||
outputGetUserList.userInfoList.add(InputOutputUserInfo.fromPbUser(user)); | ||
} | ||
|
||
RestResult result = RestResult.ok(outputGetUserList); | ||
setResponseContent(result, response); | ||
} else { | ||
setResponseContent(RestResult.resultOf(ErrorCode.INVALID_PARAMETER), response); | ||
} | ||
|
||
} | ||
return true; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
common/src/main/java/cn/wildfirechat/pojos/InputGetUserList.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package cn.wildfirechat.pojos; | ||
|
||
public class InputGetUserList { | ||
public int count; | ||
public int offset; | ||
} |
7 changes: 7 additions & 0 deletions
7
common/src/main/java/cn/wildfirechat/pojos/OutputGetUserList.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package cn.wildfirechat.pojos; | ||
|
||
import java.util.List; | ||
|
||
public class OutputGetUserList { | ||
public List<InputOutputUserInfo> userInfoList; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters