Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit cbb7d8f

Browse files
committed
Merge branch 'hotfix/0.3.3'
2 parents 95447a5 + a3a0edc commit cbb7d8f

File tree

6 files changed

+62
-19
lines changed

6 files changed

+62
-19
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.nincraft</groupId>
55
<artifactId>ModPackDownloader</artifactId>
6-
<version>0.3.2</version>
6+
<version>0.3.3</version>
77
<name>Mod Pack Downloader</name>
88
<packaging>jar</packaging>
99
<properties>

src/main/java/com/nincraft/modpackdownloader/ModPackDownloader.java

+4-6
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,10 @@ public static void main(final String[] args) throws InterruptedException {
4444

4545
setupRepo();
4646

47-
if (Arguments.updateCurseModPack) {
48-
if (ModPackManager.updateModPack()) {
49-
ModPackManager.checkPastForgeVersion();
50-
ModPackManager.handlePostDownload();
51-
}
52-
return;
47+
if (Arguments.updateCurseModPack && ModPackManager.updateModPack()) {
48+
ModPackManager.checkPastForgeVersion();
49+
ModPackManager.handlePostDownload();
50+
Arguments.downloadMods = true;
5351
}
5452

5553
processManifests();

src/main/java/com/nincraft/modpackdownloader/container/CurseFile.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,12 @@ public String buildProjectUrl() {
7777
}
7878

7979
public String getCurseForgeDownloadUrl() {
80-
return String.format(Reference.CURSEFORGE_BASE_URL + "%s/files/%s/download", getProjectName(),
80+
return getCurseForgeDownloadUrl(true);
81+
}
82+
83+
public String getCurseForgeDownloadUrl(boolean isCurseForge) {
84+
String baseUrl = isCurseForge ? Reference.CURSEFORGE_BASE_URL : Reference.FTB_BASE_URL;
85+
return String.format(baseUrl + "%s/files/%s/download", getProjectName(),
8186
getFileID());
8287
}
8388

src/main/java/com/nincraft/modpackdownloader/handler/CurseFileHandler.java

+9-5
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,16 @@ private static void downloadCurseMod(CurseFile curseFile) {
3333
}
3434
}
3535

36-
private static CurseFile getCurseForgeDownloadLocation(final CurseFile curseFile) throws IOException {
37-
val url = curseFile.getCurseForgeDownloadUrl();
36+
public static CurseFile getCurseForgeDownloadLocation(final CurseFile curseFile) throws IOException {
37+
return getCurseForgeDownloadLocation(curseFile, true);
38+
}
39+
40+
public static CurseFile getCurseForgeDownloadLocation(final CurseFile curseFile, boolean isCurseForge) throws IOException {
41+
val url = curseFile.getCurseForgeDownloadUrl(isCurseForge);
3842
val projectName = curseFile.getName();
3943
String encodedDownloadLocation = URLHelper.encodeSpaces(projectName);
4044

41-
if (!encodedDownloadLocation.contains(Reference.JAR_FILE_EXT)) {
45+
if (!encodedDownloadLocation.contains(Reference.JAR_FILE_EXT) || !encodedDownloadLocation.contains(Reference.ZIP_FILE_EXT)) {
4246
val newUrl = url + Reference.COOKIE_TEST_1;
4347

4448
HttpURLConnection conn = (HttpURLConnection) new URL(newUrl).openConnection();
@@ -48,7 +52,7 @@ private static CurseFile getCurseForgeDownloadLocation(final CurseFile curseFile
4852
String actualURL = conn.getURL().toString();
4953
int retryCount = 0;
5054

51-
while (conn.getResponseCode() != 200 || !actualURL.contains(Reference.JAR_FILE_EXT)) {
55+
while (conn.getResponseCode() != 200 || !actualURL.contains(Reference.JAR_FILE_EXT) || !actualURL.contains(Reference.ZIP_FILE_EXT)) {
5256
val headerLocation = conn.getHeaderField("Location");
5357
if (headerLocation != null) {
5458
actualURL = headerLocation;
@@ -65,7 +69,7 @@ private static CurseFile getCurseForgeDownloadLocation(final CurseFile curseFile
6569
}
6670

6771
int lastIndexUrl = actualURL.lastIndexOf(Reference.URL_DELIMITER) + 1;
68-
if (actualURL.substring(lastIndexUrl).contains(Reference.JAR_FILE_EXT)) {
72+
if (actualURL.substring(lastIndexUrl).contains(Reference.JAR_FILE_EXT) || actualURL.substring(lastIndexUrl).contains(Reference.ZIP_FILE_EXT)) {
6973
encodedDownloadLocation = actualURL.substring(lastIndexUrl);
7074
} else {
7175
encodedDownloadLocation = projectName + Reference.JAR_FILE_EXT;

src/main/java/com/nincraft/modpackdownloader/manager/ModPackManager.java

+40-6
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,32 @@ public static boolean updateModPack() {
5050
modPack.setFileName(modPack.getFileName() + ".zip");
5151
}
5252
Arguments.modFolder = ".";
53-
if (DownloadStatus.SKIPPED.equals(DownloadHelper.getInstance().downloadFile(modPack, false))) {
53+
modPack.setDownloadUrl(modPack.getCurseForgeDownloadUrl());
54+
getDownloadUrl(modPack, true);
55+
DownloadStatus downloadStatus = DownloadHelper.getInstance().downloadFile(modPack, false);
56+
57+
if (DownloadStatus.FAILURE.equals(downloadStatus)) {
58+
log.warn(String.format("Failed to download %s. Attempting redownload with FTB URL", modPack.getName()));
59+
modPack.setDownloadUrl(modPack.getCurseForgeDownloadUrl(false));
60+
getDownloadUrl(modPack, false);
61+
downloadStatus = DownloadHelper.getInstance().downloadFile(modPack, false);
62+
}
63+
64+
if (DownloadStatus.SKIPPED.equals(downloadStatus)) {
5465
log.info(String.format("No new updates found for %s", modPack.getName()));
55-
returnStatus = false;
5666
}
67+
68+
returnStatus = checkSuccessfulDownloadStatus(downloadStatus);
5769
Arguments.modFolder = "mods";
5870
File modsFolder = new File(Arguments.modFolder);
5971
File backupModsFolder = new File("backupmods");
60-
try {
61-
FileUtils.moveDirectory(modsFolder, backupModsFolder);
62-
} catch (IOException e) {
63-
log.error("Could not backup mod folder", e);
72+
if (backupModsFolder(modsFolder, backupModsFolder)) {
6473
return false;
6574
}
6675
try {
6776
ZipFile modPackZip = new ZipFile(modPack.getFileName());
6877
modPackZip.extractAll(".");
78+
log.info("Successfully unzipped modpack");
6979
} catch (ZipException e) {
7080
log.error("Could not unzip modpack", e);
7181
try {
@@ -84,6 +94,30 @@ public static boolean updateModPack() {
8494
return returnStatus;
8595
}
8696

97+
private static boolean backupModsFolder(File modsFolder, File backupModsFolder) {
98+
if (modsFolder.exists()) {
99+
try {
100+
FileUtils.moveDirectory(modsFolder, backupModsFolder);
101+
} catch (IOException e) {
102+
log.error("Could not backup mod folder", e);
103+
return true;
104+
}
105+
}
106+
return false;
107+
}
108+
109+
private static boolean checkSuccessfulDownloadStatus(DownloadStatus downloadStatus) {
110+
return DownloadStatus.SUCCESS_DOWNLOAD.equals(downloadStatus) || DownloadStatus.SUCCESS_CACHE.equals(downloadStatus);
111+
}
112+
113+
private static void getDownloadUrl(CurseFile modPack, boolean isCurseForge) {
114+
try {
115+
CurseFileHandler.getCurseForgeDownloadLocation(modPack, isCurseForge);
116+
} catch (IOException e) {
117+
e.printStackTrace();
118+
}
119+
}
120+
87121
public static void handlePostDownload() {
88122
try {
89123
File overrides = new File("overrides");

src/main/java/com/nincraft/modpackdownloader/util/Reference.java

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
public class Reference {
44
public static final String CURSEFORGE_BASE_URL = "https://minecraft.curseforge.com/projects/";
5+
public static final String FTB_BASE_URL = "https://www.feed-the-beast.com/projects/";
56
public static final String CURSEFORGE_WIDGET_JSON_MOD = "mc-mods";
67
public static final String CURSEFORGE_WIDGET_JSON_MODPACK = "modpacks";
78
public static final String CURSEFORGE_WIDGET_JSON_URL = "http://widget.mcf.li/%s/minecraft/%s.json";
@@ -12,6 +13,7 @@ public class Reference {
1213
public static final String MAC_FOLDER = "/Library/Application Support/modpackdownloader/";
1314
public static final String OTHER_FOLDER = "/.modpackdownloader/";
1415
public static final String JAR_FILE_EXT = ".jar";
16+
public static final String ZIP_FILE_EXT = ".zip";
1517
public static final int RETRY_COUNTER = 5;
1618
public static final char URL_DELIMITER = '/';
1719
public static final String DEFAULT_MANIFEST_FILE = "manifest.json";

0 commit comments

Comments
 (0)