mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-12-28 11:39:07 +00:00
Cancer
This commit is contained in:
116
src/main/java/com/volmit/iris/util/data/IrisProjectRepo.java
Normal file
116
src/main/java/com/volmit/iris/util/data/IrisProjectRepo.java
Normal file
@@ -0,0 +1,116 @@
|
||||
/*
|
||||
* Iris is a World Generator for Minecraft Bukkit Servers
|
||||
* Copyright (c) 2021 Arcane Arts (Volmit Software)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package com.volmit.iris.util.data;
|
||||
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
public class IrisProjectRepo {
|
||||
@Builder.Default
|
||||
private String user = "IrisDimensions";
|
||||
|
||||
@Builder.Default
|
||||
private String repo = "overworld";
|
||||
|
||||
@Builder.Default
|
||||
private String branch = "master";
|
||||
|
||||
@Builder.Default
|
||||
private String tag = "";
|
||||
|
||||
public static IrisProjectRepo from(String g)
|
||||
{
|
||||
// https://github.com/IrisDimensions/overworld
|
||||
if(g.startsWith("https://github.com/"))
|
||||
{
|
||||
String sub = g.split("\\Qgithub.com/\\E")[1];
|
||||
IrisProjectRepo r = IrisProjectRepo.builder()
|
||||
.user(sub.split("\\Q/\\E")[0])
|
||||
.repo(sub.split("\\Q/\\E")[1]).build();
|
||||
|
||||
if(g.contains("/tree/"))
|
||||
{
|
||||
r.setBranch(g.split("/tree/")[1]);
|
||||
}
|
||||
|
||||
return r;
|
||||
}
|
||||
|
||||
else if(g.contains("/"))
|
||||
{
|
||||
String[] f = g.split("\\Q/\\E");
|
||||
|
||||
if(f.length == 1)
|
||||
{
|
||||
return from(g);
|
||||
}
|
||||
|
||||
else if(f.length == 2)
|
||||
{
|
||||
return IrisProjectRepo.builder()
|
||||
.user(f[0])
|
||||
.repo(f[1])
|
||||
.build();
|
||||
}
|
||||
|
||||
else if(f.length >= 3)
|
||||
{
|
||||
IrisProjectRepo r = IrisProjectRepo.builder()
|
||||
.user(f[0])
|
||||
.repo(f[1])
|
||||
.build();
|
||||
|
||||
if(f[2].startsWith("#"))
|
||||
{
|
||||
r.setTag(f[2].substring(1));
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
r.setBranch(f[2]);
|
||||
}
|
||||
|
||||
return r;
|
||||
}
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
return IrisProjectRepo.builder()
|
||||
.user("IrisDimensions")
|
||||
.repo(g)
|
||||
.branch(g.equals("overworld") ? "stable" : "master")
|
||||
.build();
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public String toURL()
|
||||
{
|
||||
if(!tag.trim().isEmpty())
|
||||
{
|
||||
return "https://codeload.github.com/" + user + "/" + repo + "/zip/refs/tags/" + tag;
|
||||
}
|
||||
|
||||
return "https://codeload.github.com/" + user + "/" + repo + "/zip/refs/heads/" + branch;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,89 @@
|
||||
/*
|
||||
* Iris is a World Generator for Minecraft Bukkit Servers
|
||||
* Copyright (c) 2021 Arcane Arts (Volmit Software)
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package com.volmit.iris.util.scheduling.jobs;
|
||||
|
||||
import com.volmit.iris.util.network.DL;
|
||||
import com.volmit.iris.util.network.DownloadMonitor;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.MalformedURLException;
|
||||
import java.net.URL;
|
||||
|
||||
public class DownloadJob implements Job{
|
||||
private DL.Download download;
|
||||
private int tw;
|
||||
private int cw;
|
||||
|
||||
public DownloadJob(String url, File destination) throws MalformedURLException {
|
||||
tw = 1;
|
||||
cw = 0;
|
||||
download = new DL.Download(new URL(url), destination, DL.DownloadFlag.CALCULATE_SIZE);
|
||||
download.monitor(new DownloadMonitor() {
|
||||
@Override
|
||||
public void onUpdate(DL.DownloadState state, double progress, long elapsed, long estimated, long bps, long iobps, long size, long downloaded, long buffer, double bufferuse) {
|
||||
if(size == -1)
|
||||
{
|
||||
tw = 1;
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
tw = (int) (size / 100);
|
||||
cw = (int) (downloaded / 100);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getName() {
|
||||
return "Downloading";
|
||||
}
|
||||
|
||||
@Override
|
||||
public void execute() {
|
||||
try {
|
||||
download.start();
|
||||
while(download.isState(DL.DownloadState.DOWNLOADING))
|
||||
{
|
||||
download.downloadChunk();
|
||||
}
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
cw = tw;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void completeWork() {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTotalWork() {
|
||||
return tw;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getWorkCompleted() {
|
||||
return cw;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user