mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-03 00:59:39 +01:00
52 lines
2.4 KiB
Diff
52 lines
2.4 KiB
Diff
From 464a071b85e1669aa6dbdc1e1c2283807bbb5f0e Mon Sep 17 00:00:00 2001
|
|
From: Tux <write@imaginarycode.com>
|
|
Date: Thu, 19 May 2016 11:34:52 -0700
|
|
Subject: [PATCH] Fetch modules from the Waterfall API endpoint
|
|
|
|
Don't fetch from the BungeeCord CI, as that only has their modules
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/module/JenkinsModuleSource.java b/proxy/src/main/java/net/md_5/bungee/module/JenkinsModuleSource.java
|
|
index 2536435c..338c30d3 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/module/JenkinsModuleSource.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/module/JenkinsModuleSource.java
|
|
@@ -1,10 +1,10 @@
|
|
package net.md_5.bungee.module;
|
|
|
|
-import com.google.common.io.ByteStreams;
|
|
-import com.google.common.io.Files;
|
|
import java.io.IOException;
|
|
import java.net.URL;
|
|
import java.net.URLConnection;
|
|
+import java.nio.file.Files;
|
|
+import java.nio.file.StandardCopyOption;
|
|
import lombok.Data;
|
|
import net.md_5.bungee.Util;
|
|
|
|
@@ -18,13 +18,21 @@ public class JenkinsModuleSource implements ModuleSource
|
|
System.out.println( "Attempting to Jenkins download module " + module.getName() + " v" + version.getBuild() );
|
|
try
|
|
{
|
|
- URL website = new URL( "https://ci.md-5.net/job/BungeeCord/" + version.getBuild() + "/artifact/module/" + module.getName().replace( '_', '-' ) + "/target/" + module.getName() + ".jar" );
|
|
+ final String url = String.format(
|
|
+ "https://papermc.io/api/v2/projects/%1$s/versions/%2$s/builds/%3$s/downloads/%4$s-%2$s-%3$s.jar",
|
|
+ "waterfall",
|
|
+ net.md_5.bungee.api.ProxyServer.getInstance().getVersion().split(":")[2].split("-")[0],
|
|
+ version.getBuild(),
|
|
+ module.getName()
|
|
+ );
|
|
+ URL website = new URL( url );
|
|
URLConnection con = website.openConnection();
|
|
// 15 second timeout at various stages
|
|
con.setConnectTimeout( 15000 );
|
|
con.setReadTimeout( 15000 );
|
|
+ con.setRequestProperty( "User-Agent", "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36" );
|
|
|
|
- Files.write( ByteStreams.toByteArray( con.getInputStream() ), module.getFile() );
|
|
+ Files.copy( con.getInputStream(), module.getFile().toPath(), StandardCopyOption.REPLACE_EXISTING );
|
|
System.out.println( "Download complete" );
|
|
} catch ( IOException ex )
|
|
{
|
|
--
|
|
2.29.2
|
|
|