56 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package com.mojang.realmsclient.dto;
 | |
| 
 | |
| import com.google.common.collect.Maps;
 | |
| import com.google.gson.JsonElement;
 | |
| import com.google.gson.JsonObject;
 | |
| import com.mojang.logging.LogUtils;
 | |
| import com.mojang.realmsclient.util.JsonUtils;
 | |
| import java.util.Date;
 | |
| import java.util.Map;
 | |
| import java.util.Map.Entry;
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| import org.slf4j.Logger;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public class Backup extends ValueObject {
 | |
| 	private static final Logger LOGGER = LogUtils.getLogger();
 | |
| 	public String backupId;
 | |
| 	public Date lastModifiedDate;
 | |
| 	public long size;
 | |
| 	private boolean uploadedVersion;
 | |
| 	public Map<String, String> metadata = Maps.<String, String>newHashMap();
 | |
| 	public Map<String, String> changeList = Maps.<String, String>newHashMap();
 | |
| 
 | |
| 	public static Backup parse(JsonElement json) {
 | |
| 		JsonObject jsonObject = json.getAsJsonObject();
 | |
| 		Backup backup = new Backup();
 | |
| 
 | |
| 		try {
 | |
| 			backup.backupId = JsonUtils.getStringOr("backupId", jsonObject, "");
 | |
| 			backup.lastModifiedDate = JsonUtils.getDateOr("lastModifiedDate", jsonObject);
 | |
| 			backup.size = JsonUtils.getLongOr("size", jsonObject, 0L);
 | |
| 			if (jsonObject.has("metadata")) {
 | |
| 				JsonObject jsonObject2 = jsonObject.getAsJsonObject("metadata");
 | |
| 
 | |
| 				for (Entry<String, JsonElement> entry : jsonObject2.entrySet()) {
 | |
| 					if (!((JsonElement)entry.getValue()).isJsonNull()) {
 | |
| 						backup.metadata.put((String)entry.getKey(), ((JsonElement)entry.getValue()).getAsString());
 | |
| 					}
 | |
| 				}
 | |
| 			}
 | |
| 		} catch (Exception var7) {
 | |
| 			LOGGER.error("Could not parse Backup: {}", var7.getMessage());
 | |
| 		}
 | |
| 
 | |
| 		return backup;
 | |
| 	}
 | |
| 
 | |
| 	public boolean isUploadedVersion() {
 | |
| 		return this.uploadedVersion;
 | |
| 	}
 | |
| 
 | |
| 	public void setUploadedVersion(boolean uploadedVersion) {
 | |
| 		this.uploadedVersion = uploadedVersion;
 | |
| 	}
 | |
| }
 |