78 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package com.mojang.realmsclient.util.task;
 | |
| 
 | |
| import com.mojang.logging.LogUtils;
 | |
| import com.mojang.realmsclient.client.RealmsClient;
 | |
| import com.mojang.realmsclient.dto.Backup;
 | |
| import com.mojang.realmsclient.exception.RealmsServiceException;
 | |
| import com.mojang.realmsclient.exception.RetryCallException;
 | |
| import com.mojang.realmsclient.gui.screens.RealmsGenericErrorScreen;
 | |
| import com.mojang.realmsclient.gui.screens.configuration.RealmsConfigureWorldScreen;
 | |
| import net.fabricmc.api.EnvType;
 | |
| import net.fabricmc.api.Environment;
 | |
| import net.minecraft.network.chat.Component;
 | |
| import org.slf4j.Logger;
 | |
| 
 | |
| @Environment(EnvType.CLIENT)
 | |
| public class RestoreTask extends LongRunningTask {
 | |
| 	private static final Logger LOGGER = LogUtils.getLogger();
 | |
| 	private static final Component TITLE = Component.translatable("mco.backup.restoring");
 | |
| 	private final Backup backup;
 | |
| 	private final long realmId;
 | |
| 	private final RealmsConfigureWorldScreen lastScreen;
 | |
| 
 | |
| 	public RestoreTask(Backup backup, long realmId, RealmsConfigureWorldScreen lastScreen) {
 | |
| 		this.backup = backup;
 | |
| 		this.realmId = realmId;
 | |
| 		this.lastScreen = lastScreen;
 | |
| 	}
 | |
| 
 | |
| 	public void run() {
 | |
| 		RealmsClient realmsClient = RealmsClient.getOrCreate();
 | |
| 		int i = 0;
 | |
| 
 | |
| 		while (i < 25) {
 | |
| 			try {
 | |
| 				if (this.aborted()) {
 | |
| 					return;
 | |
| 				}
 | |
| 
 | |
| 				realmsClient.restoreWorld(this.realmId, this.backup.backupId);
 | |
| 				pause(1L);
 | |
| 				if (this.aborted()) {
 | |
| 					return;
 | |
| 				}
 | |
| 
 | |
| 				setScreen(this.lastScreen);
 | |
| 				return;
 | |
| 			} catch (RetryCallException var4) {
 | |
| 				if (this.aborted()) {
 | |
| 					return;
 | |
| 				}
 | |
| 
 | |
| 				pause(var4.delaySeconds);
 | |
| 				i++;
 | |
| 			} catch (RealmsServiceException var5) {
 | |
| 				if (this.aborted()) {
 | |
| 					return;
 | |
| 				}
 | |
| 
 | |
| 				LOGGER.error("Couldn't restore backup", (Throwable)var5);
 | |
| 				setScreen(new RealmsGenericErrorScreen(var5, this.lastScreen));
 | |
| 				return;
 | |
| 			} catch (Exception var6) {
 | |
| 				if (this.aborted()) {
 | |
| 					return;
 | |
| 				}
 | |
| 
 | |
| 				LOGGER.error("Couldn't restore backup", (Throwable)var6);
 | |
| 				this.error(var6);
 | |
| 				return;
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	@Override
 | |
| 	public Component getTitle() {
 | |
| 		return TITLE;
 | |
| 	}
 | |
| }
 |