-
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
May 4, 2023
1 parent
3c11c36
commit ca50872
Showing
8 changed files
with
232 additions
and
3 deletions.
There are no files selected for viewing
69 changes: 69 additions & 0 deletions
69
broker/src/main/java/com/xiaoleilu/loServer/action/admin/GetGroupMemberAction.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,69 @@ | ||
/* | ||
* This file is part of the Wildfire Chat package. | ||
* (c) Heavyrain2012 <[email protected]> | ||
* | ||
* 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.InputGetGroup; | ||
import cn.wildfirechat.pojos.InputGetGroupMember; | ||
import cn.wildfirechat.pojos.OutputGroupMemberList; | ||
import cn.wildfirechat.pojos.PojoGroupMember; | ||
import cn.wildfirechat.proto.ProtoConstants; | ||
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.Group_Member_Get) | ||
@HttpMethod("POST") | ||
public class GetGroupMemberAction extends AdminAction { | ||
|
||
@Override | ||
public boolean isTransactionAction() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public boolean action(Request request, Response response) { | ||
if (request.getNettyRequest() instanceof FullHttpRequest) { | ||
InputGetGroupMember input = getRequestBody(request.getNettyRequest(), InputGetGroupMember.class); | ||
if (input != null | ||
&& (!StringUtil.isNullOrEmpty(input.getGroupId())) | ||
&& (!StringUtil.isNullOrEmpty(input.getMemberId()))) { | ||
|
||
WFCMessage.GroupMember groupMember = messagesStore.getGroupMember(input.getGroupId(), input.getMemberId()); | ||
|
||
RestResult result; | ||
if (groupMember == null || StringUtil.isNullOrEmpty(groupMember.getMemberId()) || groupMember.getType() == ProtoConstants.GroupMemberType.GroupMemberType_Removed) { | ||
result = RestResult.resultOf(ErrorCode.ERROR_CODE_NOT_EXIST); | ||
} else { | ||
PojoGroupMember pm = new PojoGroupMember(); | ||
pm.setMember_id(groupMember.getMemberId()); | ||
pm.setAlias(groupMember.getAlias()); | ||
pm.setType(groupMember.getType()); | ||
pm.setExtra(groupMember.getExtra()); | ||
pm.setCreateDt(groupMember.getCreateDt()); | ||
result = RestResult.ok(pm); | ||
} | ||
setResponseContent(result, response); | ||
} else { | ||
setResponseContent(RestResult.resultOf(ErrorCode.INVALID_PARAMETER), response); | ||
} | ||
|
||
} | ||
return true; | ||
} | ||
} |
98 changes: 98 additions & 0 deletions
98
broker/src/main/java/com/xiaoleilu/loServer/action/robot/GetGroupMemberAction.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,98 @@ | ||
/* | ||
* This file is part of the Wildfire Chat package. | ||
* (c) Heavyrain2012 <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
package com.xiaoleilu.loServer.action.robot; | ||
|
||
import cn.wildfirechat.common.APIPath; | ||
import cn.wildfirechat.common.ErrorCode; | ||
import cn.wildfirechat.pojos.InputGetGroup; | ||
import cn.wildfirechat.pojos.InputGetGroupMember; | ||
import cn.wildfirechat.pojos.OutputGroupMemberList; | ||
import cn.wildfirechat.pojos.PojoGroupMember; | ||
import cn.wildfirechat.proto.ProtoConstants; | ||
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.Robot_Group_Member_Get) | ||
@HttpMethod("POST") | ||
public class GetGroupMemberAction extends RobotAction { | ||
|
||
@Override | ||
public boolean isTransactionAction() { | ||
return true; | ||
} | ||
|
||
@Override | ||
public boolean action(Request request, Response response) { | ||
if (request.getNettyRequest() instanceof FullHttpRequest) { | ||
InputGetGroupMember input = getRequestBody(request.getNettyRequest(), InputGetGroupMember.class); | ||
String robotId = robot.getUid(); | ||
if (input != null | ||
&& (!StringUtil.isNullOrEmpty(input.getGroupId())) | ||
&& (!StringUtil.isNullOrEmpty(input.getMemberId()))) { | ||
|
||
List<WFCMessage.GroupMember> members = new ArrayList<>(); | ||
ErrorCode errorCode = messagesStore.getGroupMembers(null, input.getGroupId(), 0, members); | ||
RestResult result; | ||
if (errorCode != ErrorCode.ERROR_CODE_SUCCESS) { | ||
result = RestResult.resultOf(errorCode); | ||
} else { | ||
WFCMessage.GroupMember groupMember = null; | ||
boolean isInGroup = false; | ||
for (WFCMessage.GroupMember member : members) { | ||
if (member.getType() == ProtoConstants.GroupMemberType.GroupMemberType_Removed) { | ||
continue; | ||
} | ||
if(member.getMemberId().equals(robotId)) { | ||
isInGroup = true; | ||
if(groupMember != null) { | ||
break; | ||
} | ||
} | ||
if(member.getMemberId().equals(input.getMemberId())) { | ||
groupMember = member; | ||
if(isInGroup) { | ||
break; | ||
} | ||
} | ||
} | ||
if(!isInGroup) { | ||
result = RestResult.resultOf(ErrorCode.ERROR_CODE_NOT_IN_GROUP); | ||
} else { | ||
if(groupMember == null) { | ||
result = RestResult.resultOf(ErrorCode.ERROR_CODE_NOT_EXIST); | ||
} else { | ||
PojoGroupMember pm = new PojoGroupMember(); | ||
pm.setMember_id(groupMember.getMemberId()); | ||
pm.setAlias(groupMember.getAlias()); | ||
pm.setType(groupMember.getType()); | ||
pm.setExtra(groupMember.getExtra()); | ||
pm.setCreateDt(groupMember.getCreateDt()); | ||
result = RestResult.ok(pm); | ||
} | ||
} | ||
} | ||
|
||
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
30 changes: 30 additions & 0 deletions
30
common/src/main/java/cn/wildfirechat/pojos/InputGetGroupMember.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,30 @@ | ||
/* | ||
* This file is part of the Wildfire Chat package. | ||
* (c) Heavyrain2012 <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
package cn.wildfirechat.pojos; | ||
|
||
public class InputGetGroupMember { | ||
private String groupId; | ||
private String memberId; | ||
|
||
public String getGroupId() { | ||
return groupId; | ||
} | ||
|
||
public void setGroupId(String groupId) { | ||
this.groupId = groupId; | ||
} | ||
|
||
public String getMemberId() { | ||
return memberId; | ||
} | ||
|
||
public void setMemberId(String memberId) { | ||
this.memberId = memberId; | ||
} | ||
} |
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