com.akaxin.proto.site.ApiDeviceBoundListProto Java Examples

The following examples show how to use com.akaxin.proto.site.ApiDeviceBoundListProto. 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: ApiDeviceService.java    From wind-im with Apache License 2.0 5 votes vote down vote up
/**
 * 获取用户在该站点所有关联设备号
 * 
 * @param command
 * @return
 */
public CommandResponse boundList(Command command) {
	CommandResponse commandResponse = new CommandResponse();
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiDeviceBoundListProto.ApiDeviceBoundListRequest request = ApiDeviceBoundListProto.ApiDeviceBoundListRequest
				.parseFrom(command.getParams());
		String currentUserId = command.getSiteUserId();
		String siteUserId = request.getSiteUserId();
		LogUtils.requestDebugLog(logger, command, request.toString());

		if (StringUtils.isNotBlank(currentUserId) && currentUserId.equals(siteUserId)) {
			ApiDeviceBoundListProto.ApiDeviceBoundListResponse.Builder responseBuilder = ApiDeviceBoundListProto.ApiDeviceBoundListResponse
					.newBuilder();
			List<UserDeviceBean> deviceList = UserDeviceDao.getInstance().getBoundDevices(siteUserId);
			for (UserDeviceBean device : deviceList) {
				DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder()
						.setDeviceId(String.valueOf(device.getDeviceId()))
						.setDeviceName(String.valueOf(device.getDeviceName()))
						.setLastLoginTime(device.getActiveTime()).build();
				responseBuilder.addList(deviceProfile);
			}
			commandResponse.setParams(responseBuilder.build().toByteArray());
			errCode = ErrorCode2.SUCCESS;
		} 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: ApiDeviceService.java    From openzaly with Apache License 2.0 5 votes vote down vote up
/**
 * 获取用户在该站点所有关联设备号
 * 
 * @param command
 * @return
 */
public CommandResponse boundList(Command command) {
	CommandResponse commandResponse = new CommandResponse();
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiDeviceBoundListProto.ApiDeviceBoundListRequest request = ApiDeviceBoundListProto.ApiDeviceBoundListRequest
				.parseFrom(command.getParams());
		String currentUserId = command.getSiteUserId();
		String siteUserId = request.getSiteUserId();
		LogUtils.requestDebugLog(logger, command, request.toString());

		if (StringUtils.isNotBlank(currentUserId) && currentUserId.equals(siteUserId)) {
			ApiDeviceBoundListProto.ApiDeviceBoundListResponse.Builder responseBuilder = ApiDeviceBoundListProto.ApiDeviceBoundListResponse
					.newBuilder();
			List<UserDeviceBean> deviceList = UserDeviceDao.getInstance().getBoundDevices(siteUserId);
			for (UserDeviceBean device : deviceList) {
				DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder()
						.setDeviceId(String.valueOf(device.getDeviceId()))
						.setDeviceName(String.valueOf(device.getDeviceName()))
						.setLastLoginTime(device.getActiveTime()).build();
				responseBuilder.addList(deviceProfile);
			}
			commandResponse.setParams(responseBuilder.build().toByteArray());
			errCode = ErrorCode2.SUCCESS;
		} 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: ApiDeviceService.java    From openzaly with Apache License 2.0 5 votes vote down vote up
/**
 * 获取用户在该站点所有关联设备号
 * 
 * @param command
 * @return
 */
public CommandResponse boundList(Command command) {
	CommandResponse commandResponse = new CommandResponse();
	ErrorCode2 errCode = ErrorCode2.ERROR;
	try {
		ApiDeviceBoundListProto.ApiDeviceBoundListRequest request = ApiDeviceBoundListProto.ApiDeviceBoundListRequest
				.parseFrom(command.getParams());
		String currentUserId = command.getSiteUserId();
		String siteUserId = request.getSiteUserId();
		LogUtils.requestDebugLog(logger, command, request.toString());

		if (StringUtils.isNotBlank(currentUserId) && currentUserId.equals(siteUserId)) {
			ApiDeviceBoundListProto.ApiDeviceBoundListResponse.Builder responseBuilder = ApiDeviceBoundListProto.ApiDeviceBoundListResponse
					.newBuilder();
			List<UserDeviceBean> deviceList = UserDeviceDao.getInstance().getBoundDevices(siteUserId);
			for (UserDeviceBean device : deviceList) {
				DeviceProto.SimpleDeviceProfile deviceProfile = DeviceProto.SimpleDeviceProfile.newBuilder()
						.setDeviceId(String.valueOf(device.getDeviceId()))
						.setDeviceName(String.valueOf(device.getDeviceName()))
						.setLastLoginTime(device.getActiveTime()).build();
				responseBuilder.addList(deviceProfile);
			}
			commandResponse.setParams(responseBuilder.build().toByteArray());
			errCode = ErrorCode2.SUCCESS;
		} else {
			errCode = ErrorCode2.ERROR_PARAMETER;
		}
	} catch (Exception e) {
		errCode = ErrorCode2.ERROR_SYSTEMERROR;
		LogUtils.requestErrorLog(logger, command, e);
	}
	return commandResponse.setErrCode2(errCode);
}