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

Commit 7c55441

Browse files
committed
Merge branch 'release/0.3'
2 parents f4fa779 + 41358da commit 7c55441

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1097
-507
lines changed

.github/ISSUE_TEMPLATE.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Thank you for reporting an issue!
2+
3+
Before you post...
4+
* Try the latest version, it may have fixed the issue already.
5+
* Check other issues to see if your's has already been reported.
6+
7+
If you think your issue still exists...
8+
* Make sure to post the log and manifest you are using when your issue happens

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ all/
88
logs/
99
.idea/
1010
*.iml
11+
out/

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# ModPack Downloader
1+
# ModPack Downloader [![Build Status](http://play.nincraft.com:8080/buildStatus/icon?job=Mod Pack Downloader)](http://play.nincraft.com:8080/job/Mod Pack Downloader)
22
A simple command line downloader for Minecraft Forge Modpacks. Also works with Curse manifest JSONs.
33
# Usage
44
Execute via command line with two arguments, the manifest json and the folder where you want your mods downloaded.
55

6-
Example: java -jar modpackdownloader.jar mods.json mods
6+
Example: java -jar modpackdownloader.jar -manifest mods.json -folder mods
77

88
This will read the mods.json and download all mods to the mods folder.
99

pom.xml

+55-3
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.2.3</version>
6+
<version>0.3</version>
77
<name>Mod Pack Downloader</name>
88
<packaging>jar</packaging>
99
<properties>
@@ -43,7 +43,7 @@
4343
<dependency>
4444
<groupId>org.projectlombok</groupId>
4545
<artifactId>lombok</artifactId>
46-
<version>1.16.6</version>
46+
<version>1.16.10</version>
4747
<scope>provided</scope>
4848
</dependency>
4949
<dependency>
@@ -61,16 +61,56 @@
6161
<artifactId>zip4j</artifactId>
6262
<version>1.3.2</version>
6363
</dependency>
64+
<dependency>
65+
<groupId>com.beust</groupId>
66+
<artifactId>jcommander</artifactId>
67+
<version>1.48</version>
68+
</dependency>
6469
</dependencies>
6570
<build>
66-
<finalName>${project.artifactId}-${project.version}+${build.number}</finalName>
71+
<finalName>${project.artifactId}-${short.project.version}+${build.number}</finalName>
6772
<resources>
6873
<resource>
6974
<directory>src/main/resources</directory>
7075
<filtering>true</filtering>
7176
</resource>
7277
</resources>
7378
<plugins>
79+
<plugin>
80+
<groupId>org.codehaus.mojo</groupId>
81+
<artifactId>build-helper-maven-plugin</artifactId>
82+
<version>1.7</version>
83+
<executions>
84+
<execution>
85+
<id>regex-property</id>
86+
<phase>process-resources</phase>
87+
<goals>
88+
<goal>regex-property</goal>
89+
</goals>
90+
<configuration>
91+
<name>short.project.version</name>
92+
<value>${project.version}</value>
93+
<regex>^(\d\.\d(?>\.\d)?)(-SNAPSHOT)?</regex>
94+
<replacement>$1</replacement>
95+
<failIfNoMatch>true</failIfNoMatch>
96+
</configuration>
97+
</execution>
98+
</executions>
99+
</plugin>
100+
<plugin>
101+
<groupId>org.apache.maven.plugins</groupId>
102+
<artifactId>maven-resources-plugin</artifactId>
103+
<version>2.6</version>
104+
<executions>
105+
<execution>
106+
<id>resources</id>
107+
<phase>process-resources</phase>
108+
<goals>
109+
<goal>resources</goal>
110+
</goals>
111+
</execution>
112+
</executions>
113+
</plugin>
74114
<plugin>
75115
<artifactId>maven-compiler-plugin</artifactId>
76116
<version>3.5.1</version>
@@ -103,4 +143,16 @@
103143
</plugin>
104144
</plugins>
105145
</build>
146+
<distributionManagement>
147+
<repository>
148+
<id>releases</id>
149+
<uniqueVersion>true</uniqueVersion>
150+
<url>http://play.nincraft.com:8081/nexus/content/repositories/releases/</url>
151+
</repository>
152+
<snapshotRepository>
153+
<id>snapshots</id>
154+
<uniqueVersion>false</uniqueVersion>
155+
<url>http://play.nincraft.com:8081/nexus/content/repositories/snapshots/</url>
156+
</snapshotRepository>
157+
</distributionManagement>
106158
</project>
Original file line numberDiff line numberDiff line change
@@ -1,84 +1,106 @@
11
package com.nincraft.modpackdownloader;
22

3+
import com.beust.jcommander.JCommander;
34
import com.google.common.base.Strings;
5+
import com.google.common.collect.Lists;
46
import com.nincraft.modpackdownloader.handler.ApplicationUpdateHandler;
5-
import com.nincraft.modpackdownloader.manager.ModListManager;
67
import com.nincraft.modpackdownloader.manager.ModPackManager;
8+
import com.nincraft.modpackdownloader.processor.DownloadModsProcessor;
9+
import com.nincraft.modpackdownloader.processor.MergeManifestsProcessor;
10+
import com.nincraft.modpackdownloader.processor.UpdateModsProcessor;
11+
import com.nincraft.modpackdownloader.util.Arguments;
712
import com.nincraft.modpackdownloader.util.FileSystemHelper;
813
import com.nincraft.modpackdownloader.util.Reference;
14+
import lombok.experimental.UtilityClass;
915
import lombok.extern.log4j.Log4j2;
16+
import org.apache.commons.collections4.CollectionUtils;
1017

11-
import java.util.ArrayList;
18+
import java.io.File;
1219
import java.util.Arrays;
13-
import java.util.List;
1420

21+
@UtilityClass
1522
@Log4j2
1623
public class ModPackDownloader {
1724
public static void main(final String[] args) throws InterruptedException {
18-
List<String> arguments = new ArrayList(Arrays.asList(args));
19-
if (arguments.isEmpty()) {
20-
log.info("No arguments supplied, using defaults");
21-
arguments.add(0, Reference.DEFAULT_MANIFEST_FILE);
22-
} else if ("-updateApp".equals(arguments.get(0))) {
25+
log.info("Starting ModPackDownloader with arguments: " + Arrays.toString(args));
26+
JCommander jCommander = initArguments(args);
27+
28+
if (Arguments.helpEnabled) {
29+
jCommander.usage();
30+
return;
31+
}
32+
33+
// Set default application arguments
34+
defaultArguments();
35+
36+
if (Arguments.clearCache) {
37+
FileSystemHelper.clearCache();
38+
return;
39+
}
40+
if (Arguments.updateApp) {
2341
ApplicationUpdateHandler.update();
2442
return;
2543
}
26-
processArguments(arguments);
2744

2845
setupRepo();
2946

30-
if (Reference.updateCurseModPack) {
31-
Reference.manifestFile = Reference.DEFAULT_MANIFEST_FILE;
47+
if (Arguments.updateCurseModPack) {
3248
if (ModPackManager.updateModPack()) {
3349
ModPackManager.checkPastForgeVersion();
34-
processMods();
3550
ModPackManager.handlePostDownload();
3651
}
3752
return;
3853
}
3954

40-
processMods();
55+
processManifests();
4156
}
4257

43-
private static void processArguments(List<String> args) {
44-
Reference.manifestFile = args.get(0);
58+
private static void processManifests() throws InterruptedException {
59+
log.trace("Processing Manifests...");
4560

46-
if (args.size() < 2) {
47-
log.info("No mod folder specified, defaulting to \"mods\"");
48-
Reference.modFolder = "mods";
49-
} else {
50-
Reference.modFolder = args.get(1);
61+
updateMods();
62+
downloadMods();
63+
mergeManifests();
64+
65+
log.trace("Finished Processing Manifests.");
66+
}
67+
68+
private static void updateMods() throws InterruptedException {
69+
if (Arguments.updateMods) {
70+
new UpdateModsProcessor(Arguments.manifests).process();
5171
}
72+
}
5273

53-
args.forEach(ModPackDownloader::processArgument);
74+
private static void downloadMods() throws InterruptedException {
75+
if (Arguments.downloadMods) {
76+
new DownloadModsProcessor(Arguments.manifests).process();
77+
}
5478
}
5579

56-
private static void processArgument(final String arg) {
57-
log.trace("Processing given arguments...");
58-
if ("-forceDownload".equalsIgnoreCase(arg)) {
59-
Reference.forceDownload = true;
60-
log.debug("Downloads are now being forced.");
61-
} else if ("-updateMods".equalsIgnoreCase(arg)) {
62-
Reference.updateMods = true;
63-
log.debug("mods will be updated instead of downloaded.");
64-
} else if ("-updateForge".equalsIgnoreCase(arg)) {
65-
Reference.updateForge = true;
66-
log.debug("Forge will be updated instead of downloaded.");
67-
} else if ("-updateAll".equalsIgnoreCase(arg)) {
68-
Reference.updateMods = true;
69-
Reference.updateForge = true;
70-
log.debug("mods and Forge will be updated instead of downloaded.");
71-
} else if (arg.startsWith("-releaseType")) {
72-
Reference.releaseType = arg.substring(arg.lastIndexOf('=') + 1);
73-
log.debug(String.format("Checking against mod release type: %s", Reference.releaseType));
74-
} else if ("-generateUrlTxt".equalsIgnoreCase(arg)) {
75-
Reference.generateUrlTxt = true;
76-
log.debug("Mod URL Text files will now be generated.");
77-
} else if ("-updateCurseModPack".equalsIgnoreCase(arg)) {
78-
Reference.updateCurseModPack = true;
79-
log.debug("Updating Curse modpack");
80+
private static void mergeManifests() throws InterruptedException {
81+
if (Arguments.mergeManifests) {
82+
new MergeManifestsProcessor(Arguments.manifests).process();
83+
}
84+
}
85+
86+
private static JCommander initArguments(final String[] args) {
87+
// Initialize application arguments
88+
return new JCommander(new Arguments(), args);
89+
}
90+
91+
private static void defaultArguments() {
92+
if (CollectionUtils.isEmpty(Arguments.manifests)) {
93+
log.info(String.format("No manifest supplied, using default %s", Reference.DEFAULT_MANIFEST_FILE));
94+
95+
Arguments.manifests = Lists.newArrayList(new File(Reference.DEFAULT_MANIFEST_FILE));
96+
}
97+
if (Strings.isNullOrEmpty(Arguments.modFolder)) {
98+
log.info("No output folder supplied, using default \"mods\"");
99+
Arguments.modFolder = "mods";
100+
}
101+
if (!Arguments.downloadMods && !Arguments.updateMods && !Arguments.mergeManifests) {
102+
Arguments.downloadMods = true;
80103
}
81-
log.trace("Finished processing given arguments.");
82104
}
83105

84106
private static void setupRepo() {
@@ -105,41 +127,4 @@ private static void setupRepo() {
105127

106128
log.trace("Finished setting up local repository.");
107129
}
108-
109-
private static void processMods() throws InterruptedException {
110-
log.trace("Processing Mods...");
111-
int returnCode = ModListManager.buildModList();
112-
if (returnCode == -1) {
113-
return;
114-
}
115-
if (Reference.updateMods) {
116-
if (Strings.isNullOrEmpty(Reference.mcVersion)) {
117-
log.error("No Minecraft version found in manifest file");
118-
return;
119-
}
120-
121-
log.info(String.format("Updating mods with parameters: %s, %s, %s", Reference.manifestFile,
122-
Reference.mcVersion, Reference.releaseType));
123-
ModListManager.updateMods();
124-
125-
waitFinishProcessingMods();
126-
127-
ModListManager.updateManifest();
128-
log.info("Finished updating mods.");
129-
} else {
130-
log.info(String.format("Downloading mods with parameters: %s, %s", Reference.manifestFile,
131-
Reference.modFolder));
132-
ModListManager.downloadMods();
133-
134-
waitFinishProcessingMods();
135-
log.info("Finished downloading mods.");
136-
}
137-
log.trace("Finished Processing Mods.");
138-
}
139-
140-
private static void waitFinishProcessingMods() throws InterruptedException {
141-
while (!ModListManager.getExecutorService().isTerminated()) {
142-
Thread.sleep(1);
143-
}
144-
}
145130
}

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

+11-9
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class CurseFile extends Mod {
3737
private boolean isModpack;
3838

3939
public CurseFile() {
40-
40+
//empty
4141
}
4242

4343
public CurseFile(String projectId, String projectName) {
@@ -52,16 +52,18 @@ public void init() {
5252
setProjectUrl(buildProjectUrl());
5353

5454
try {
55-
val conn = (HttpURLConnection) new URL(getProjectUrl()).openConnection();
56-
conn.setInstanceFollowRedirects(false);
57-
conn.connect();
55+
if (Strings.isNullOrEmpty(getProjectName()) || Strings.isNullOrEmpty(getName())) {
56+
val conn = (HttpURLConnection) new URL(getProjectUrl()).openConnection();
57+
conn.setInstanceFollowRedirects(false);
58+
conn.connect();
5859

59-
if (Strings.isNullOrEmpty(getProjectName())) {
60-
setProjectName(conn.getHeaderField("Location").split("/")[2]);
61-
}
60+
if (Strings.isNullOrEmpty(getProjectName())) {
61+
setProjectName(conn.getHeaderField("Location").split("/")[2]);
62+
}
6263

63-
if (Strings.isNullOrEmpty(getName())) {
64-
setName(getProjectName());
64+
if (Strings.isNullOrEmpty(getName())) {
65+
setName(getProjectName());
66+
}
6567
}
6668
} catch (final IOException e) {
6769
log.error(e);

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ public abstract class DownloadableFile {
2222
private String fileName;
2323
private String downloadUrl;
2424

25-
public String getFileName(){
26-
if(!Strings.isNullOrEmpty(getRename())){
25+
public String getFileName() {
26+
if (!Strings.isNullOrEmpty(getRename())) {
2727
return getRename();
2828
}
2929
return this.fileName;

0 commit comments

Comments
 (0)