|
| 1 | +package net.kdt.pojavlaunch.modloaders; |
| 2 | + |
| 3 | +import android.util.Base64; |
| 4 | +import android.util.Base64OutputStream; |
| 5 | +import android.util.Log; |
| 6 | + |
| 7 | +import com.kdt.mcgui.ProgressLayout; |
| 8 | + |
| 9 | +import net.kdt.pojavlaunch.R; |
| 10 | +import net.kdt.pojavlaunch.Tools; |
| 11 | +import net.kdt.pojavlaunch.progresskeeper.ProgressKeeper; |
| 12 | +import net.kdt.pojavlaunch.utils.DownloadUtils; |
| 13 | +import net.kdt.pojavlaunch.utils.FileUtils; |
| 14 | +import net.kdt.pojavlaunch.value.launcherprofiles.LauncherProfiles; |
| 15 | +import net.kdt.pojavlaunch.value.launcherprofiles.MinecraftProfile; |
| 16 | + |
| 17 | +import java.io.ByteArrayOutputStream; |
| 18 | +import java.io.File; |
| 19 | +import java.io.IOException; |
| 20 | +import java.nio.charset.StandardCharsets; |
| 21 | + |
| 22 | +public class BTADownloadTask implements Runnable { |
| 23 | + private static final String BASE_JSON = "{\"inheritsFrom\":\"b1.7.3\",\"mainClass\":\"net.minecraft.client.Minecraft\",\"libraries\":[{\"name\":\"bta-client:bta-client:%1$s\",\"downloads\":{\"artifact\":{\"path\":\"bta-client/bta-client-%1$s.jar\",\"url\":\"%2$s\"}}}],\"id\":\"%3$s\"}"; |
| 24 | + private final ModloaderDownloadListener mListener; |
| 25 | + private final BTAUtils.BTAVersion mBtaVersion; |
| 26 | + |
| 27 | + public BTADownloadTask(ModloaderDownloadListener mListener, BTAUtils.BTAVersion mBtaVersion) { |
| 28 | + this.mListener = mListener; |
| 29 | + this.mBtaVersion = mBtaVersion; |
| 30 | + } |
| 31 | + |
| 32 | + @Override |
| 33 | + public void run() { |
| 34 | + ProgressKeeper.submitProgress(ProgressLayout.INSTALL_MODPACK, 0, R.string.fabric_dl_progress, "BTA"); |
| 35 | + try { |
| 36 | + runCatching() ; |
| 37 | + mListener.onDownloadFinished(null); |
| 38 | + }catch (IOException e) { |
| 39 | + mListener.onDownloadError(e); |
| 40 | + } |
| 41 | + ProgressLayout.clearProgress(ProgressLayout.INSTALL_MODPACK); |
| 42 | + } |
| 43 | + |
| 44 | + private String tryDownloadIcon() { |
| 45 | + ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); |
| 46 | + try (Base64OutputStream base64OutputStream = new Base64OutputStream(byteArrayOutputStream, Base64.DEFAULT)){ |
| 47 | + // Instead of appending and wasting memory with a StringBuilder, just write the prefix |
| 48 | + // to the stream before the base64 icon data. |
| 49 | + byteArrayOutputStream.write("data:image/png;base64,".getBytes(StandardCharsets.US_ASCII)); |
| 50 | + DownloadUtils.download(mBtaVersion.iconUrl, base64OutputStream); |
| 51 | + return new String(byteArrayOutputStream.toByteArray(), StandardCharsets.US_ASCII); |
| 52 | + }catch (IOException e) { |
| 53 | + Log.w("BTADownloadTask", "Failed to download base64 icon", e); |
| 54 | + }finally { |
| 55 | + try { |
| 56 | + byteArrayOutputStream.close(); |
| 57 | + } catch (IOException e) { |
| 58 | + Log.wtf("BTADownloadTask", "Failed to close a byte array stream??", e); |
| 59 | + } |
| 60 | + } |
| 61 | + return null; |
| 62 | + } |
| 63 | + |
| 64 | + private void createJson(String btaVersionId) throws IOException { |
| 65 | + String btaJson = String.format(BASE_JSON, mBtaVersion.versionName, mBtaVersion.downloadUrl, btaVersionId); |
| 66 | + File jsonDir = new File(Tools.DIR_HOME_VERSION, btaVersionId); |
| 67 | + File jsonFile = new File(jsonDir, btaVersionId+".json"); |
| 68 | + FileUtils.ensureDirectory(jsonDir); |
| 69 | + Tools.write(jsonFile.getAbsolutePath(), btaJson); |
| 70 | + } |
| 71 | + |
| 72 | + // BTA doesn't have SHA1 checksums in its repositories, so the user may try to reinstall it |
| 73 | + // if it didn't work due to a broken download. So, for reinstalls like that to work, |
| 74 | + // we need to delete the old client jar to force the download of a new one. |
| 75 | + private void removeOldClient() throws IOException{ |
| 76 | + File btaClientPath = new File(Tools.DIR_HOME_LIBRARY, String.format("bta-client/bta-client-%1$s.jar", mBtaVersion.versionName)); |
| 77 | + if(btaClientPath.exists() && !btaClientPath.delete()) |
| 78 | + throw new IOException("Failed to delete old client jar"); |
| 79 | + } |
| 80 | + |
| 81 | + private void createProfile(String btaVersionId) throws IOException { |
| 82 | + LauncherProfiles.load(); |
| 83 | + MinecraftProfile btaProfile = new MinecraftProfile(); |
| 84 | + btaProfile.lastVersionId = btaVersionId; |
| 85 | + btaProfile.name = "Better than Adventure!"; |
| 86 | + btaProfile.icon = tryDownloadIcon(); |
| 87 | + LauncherProfiles.insertMinecraftProfile(btaProfile); |
| 88 | + LauncherProfiles.write(); |
| 89 | + } |
| 90 | + |
| 91 | + public void runCatching() throws IOException { |
| 92 | + removeOldClient(); |
| 93 | + String btaVersionId = "bta-"+mBtaVersion.versionName; |
| 94 | + createJson(btaVersionId); |
| 95 | + createProfile(btaVersionId); |
| 96 | + } |
| 97 | +} |
0 commit comments