com.akaxin.proto.site.ApiSecretChatApplyU2Proto Java Examples

The following examples show how to use com.akaxin.proto.site.ApiSecretChatApplyU2Proto. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ApiSecretChatService.java    From wind-im with Apache License 2.0 4 votes vote down vote up
/**
 * 申请二人密聊
 * 
 * @param command
 * @return
 */
public CommandResponse applyU2(Command command) {
	CommandResponse commandResponse = new CommandResponse().setAction(CommandConst.ACTION_RES);
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Request request = ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Request
				.parseFrom(command.getParams());
		String siteUserId = command.getSiteUserId();
		String siteFriendId = request.getSiteFriendId();
		LogUtils.requestDebugLog(logger, command, request.toString());

		if (StringUtils.isNoneBlank(siteUserId, siteFriendId) && !siteUserId.equals(siteFriendId)) {
			ConfigProto.U2EncryptionConfig status = SiteConfig.getU2EncryStatusConfig();
			logger.debug("siteUserId={} apply encryption chat to siteFriendId={} status={}", siteUserId,
					siteFriendId, status);
			if (ConfigProto.U2EncryptionConfig.U2_OPEN == status) {
				UserDeviceBean deviceBean = userDeviceDao.getLatestDevice(siteFriendId);
				logger.debug("get siteUserId:{} deviceInfo:{}", siteFriendId, deviceBean.toString());

				DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder()
						.setDeviceId(deviceBean.getDeviceId())
						.setDeviceName(String.valueOf(deviceBean.getDeviceName()))
						.setUserDevicePubk(deviceBean.getUserDevicePubk())
						.setLastLoginTime(deviceBean.getActiveTime()).build();

				ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Response response = ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Response
						.newBuilder().setDeviceProfile(deviceProfile).build();
				commandResponse.setParams(response.toByteArray());
				errCode = ErrorCode2.SUCCESS;
			} else {
				errCode = ErrorCode2.ERROR2_SECRETCHAT_CLOSE;
			}
		} else {
			errCode = ErrorCode2.ERROR_PARAMETER;
		}
	} catch (Exception e) {
		errCode = ErrorCode2.ERROR_SYSTEMERROR;
		LogUtils.requestErrorLog(logger, command, e);
	}
	return commandResponse.setErrCode2(errCode);
}
 
Example #2
Source File: ApiSecretChatService.java    From openzaly with Apache License 2.0 4 votes vote down vote up
/**
 * 申请二人密聊
 * 
 * @param command
 * @return
 */
public CommandResponse applyU2(Command command) {
	CommandResponse commandResponse = new CommandResponse().setAction(CommandConst.ACTION_RES);
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Request request = ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Request
				.parseFrom(command.getParams());
		String siteUserId = command.getSiteUserId();
		String siteFriendId = request.getSiteFriendId();
		LogUtils.requestDebugLog(logger, command, request.toString());

		if (StringUtils.isNoneBlank(siteUserId, siteFriendId) && !siteUserId.equals(siteFriendId)) {
			ConfigProto.U2EncryptionConfig status = SiteConfig.getU2EncryStatusConfig();
			logger.debug("siteUserId={} apply encryption chat to siteFriendId={} status={}", siteUserId,
					siteFriendId, status);
			if (ConfigProto.U2EncryptionConfig.U2_OPEN == status) {
				UserDeviceBean deviceBean = userDeviceDao.getLatestDevice(siteFriendId);
				logger.debug("get siteUserId:{} deviceInfo:{}", siteFriendId, deviceBean.toString());

				DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder()
						.setDeviceId(deviceBean.getDeviceId())
						.setDeviceName(String.valueOf(deviceBean.getDeviceName()))
						.setUserDevicePubk(deviceBean.getUserDevicePubk())
						.setLastLoginTime(deviceBean.getActiveTime()).build();

				ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Response response = ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Response
						.newBuilder().setDeviceProfile(deviceProfile).build();
				commandResponse.setParams(response.toByteArray());
				errCode = ErrorCode2.SUCCESS;
			} else {
				errCode = ErrorCode2.ERROR2_SECRETCHAT_CLOSE;
			}
		} else {
			errCode = ErrorCode2.ERROR_PARAMETER;
		}
	} catch (Exception e) {
		errCode = ErrorCode2.ERROR_SYSTEMERROR;
		LogUtils.requestErrorLog(logger, command, e);
	}
	return commandResponse.setErrCode2(errCode);
}
 
Example #3
Source File: ApiSecretChatService.java    From openzaly with Apache License 2.0 4 votes vote down vote up
/**
 * 申请二人密聊
 * 
 * @param command
 * @return
 */
public CommandResponse applyU2(Command command) {
	CommandResponse commandResponse = new CommandResponse().setAction(CommandConst.ACTION_RES);
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Request request = ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Request
				.parseFrom(command.getParams());
		String siteUserId = command.getSiteUserId();
		String siteFriendId = request.getSiteFriendId();
		LogUtils.requestDebugLog(logger, command, request.toString());

		if (StringUtils.isNoneBlank(siteUserId, siteFriendId) && !siteUserId.equals(siteFriendId)) {
			ConfigProto.U2EncryptionConfig status = SiteConfig.getU2EncryStatusConfig();
			logger.debug("siteUserId={} apply encryption chat to siteFriendId={} status={}", siteUserId,
					siteFriendId, status);
			if (ConfigProto.U2EncryptionConfig.U2_OPEN == status) {
				UserDeviceBean deviceBean = userDeviceDao.getLatestDevice(siteFriendId);
				logger.debug("get siteUserId:{} deviceInfo:{}", siteFriendId, deviceBean.toString());

				DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder()
						.setDeviceId(deviceBean.getDeviceId())
						.setDeviceName(String.valueOf(deviceBean.getDeviceName()))
						.setUserDevicePubk(deviceBean.getUserDevicePubk())
						.setLastLoginTime(deviceBean.getActiveTime()).build();

				ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Response response = ApiSecretChatApplyU2Proto.ApiSecretChatApplyU2Response
						.newBuilder().setDeviceProfile(deviceProfile).build();
				commandResponse.setParams(response.toByteArray());
				errCode = ErrorCode2.SUCCESS;
			} else {
				errCode = ErrorCode2.ERROR2_SECRETCHAT_CLOSE;
			}
		} else {
			errCode = ErrorCode2.ERROR_PARAMETER;
		}
	} catch (Exception e) {
		errCode = ErrorCode2.ERROR_SYSTEMERROR;
		LogUtils.requestErrorLog(logger, command, e);
	}
	return commandResponse.setErrCode2(errCode);
}