Merge pull request 'Add Schemtransfer' (#81) from schem-download into master
Reviewed-by: YoyoNow <jwsteam@nidido.de>
Dieser Commit ist enthalten in:
Commit
ffdeb81f24
@ -47,6 +47,15 @@
|
||||
<finalName>schematicsystem</finalName>
|
||||
</build>
|
||||
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>maven-restlet</id>
|
||||
<name>Public online Restlet repository</name>
|
||||
<url>http://maven.restlet.org</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>steamwar</groupId>
|
||||
@ -73,5 +82,15 @@
|
||||
<version>1.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpclient</artifactId>
|
||||
<version>4.5.13</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.httpcomponents</groupId>
|
||||
<artifactId>httpmime</artifactId>
|
||||
<version>4.5.13</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
@ -0,0 +1,135 @@
|
||||
/*
|
||||
This file is a part of the SteamWar software.
|
||||
|
||||
Copyright (C) 2020 SteamWar.de-Serverteam
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package de.steamwar.schematicsystem;
|
||||
|
||||
import de.steamwar.sql.Schematic;
|
||||
import de.steamwar.sql.SchematicType;
|
||||
import org.apache.http.HttpResponse;
|
||||
import org.apache.http.client.HttpClient;
|
||||
import org.apache.http.client.methods.HttpPost;
|
||||
import org.apache.http.entity.mime.MultipartEntity;
|
||||
import org.apache.http.entity.mime.content.StringBody;
|
||||
import org.apache.http.impl.client.BasicCookieStore;
|
||||
import org.apache.http.impl.client.HttpClients;
|
||||
import org.bukkit.entity.Player;
|
||||
import java.io.InputStream;
|
||||
import java.net.URL;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.zip.ZipEntry;
|
||||
import java.util.zip.ZipInputStream;
|
||||
|
||||
public class ExternalUpDownload {
|
||||
private ExternalUpDownload(){}
|
||||
|
||||
public static void downloadSchemsFromWGW(Player player, String pw) {
|
||||
BasicCookieStore cookieStore = new BasicCookieStore();
|
||||
HttpClient httpclient = HttpClients.custom().setDefaultCookieStore(cookieStore).build();
|
||||
try {
|
||||
//Login to WGW
|
||||
HttpPost loginPost = new HttpPost("https://wargearworld.net/index.php");
|
||||
MultipartEntity loginEntity = new MultipartEntity();
|
||||
loginEntity.addPart("login-username", new StringBody(player.getName()));
|
||||
loginEntity.addPart("login-password", new StringBody(pw));
|
||||
loginEntity.addPart("send-login", new StringBody("login"));
|
||||
|
||||
loginPost.setEntity(loginEntity);
|
||||
HttpResponse loginResponse = httpclient.execute(loginPost);
|
||||
if(loginResponse.getStatusLine().getStatusCode() != 302) {
|
||||
player.sendMessage(SchematicSystem.PREFIX + "§cLogin mit gegebenem Passwort nicht möglich.");
|
||||
return;
|
||||
}
|
||||
|
||||
//Prepare Schemdownload
|
||||
HttpPost preparePost = new HttpPost("https://wargearworld.net/index.php");
|
||||
MultipartEntity prepareEntity = new MultipartEntity();
|
||||
prepareEntity.addPart("option", new StringBody("com_ajax"));
|
||||
prepareEntity.addPart("module", new StringBody("account"));
|
||||
prepareEntity.addPart("content", new StringBody("getDir"));
|
||||
prepareEntity.addPart("data[dir]", new StringBody("/"));
|
||||
prepareEntity.addPart("data[event]", new StringBody("download_all"));
|
||||
prepareEntity.addPart("data[data]", new StringBody(""));
|
||||
prepareEntity.addPart("format", new StringBody("raw"));
|
||||
preparePost.setEntity(prepareEntity);
|
||||
HttpResponse prepareResponse = httpclient.execute(preparePost);
|
||||
InputStream content = prepareResponse.getEntity().getContent();
|
||||
StringBuilder builder = new StringBuilder();
|
||||
byte[] remover = new byte[67];
|
||||
content.read(remover);
|
||||
while (content.available() > 0) {
|
||||
int readed = content.read();
|
||||
if(readed == 46)
|
||||
break;
|
||||
builder.append((char) readed);
|
||||
}
|
||||
player.sendMessage(SchematicSystem.PREFIX + "§aWGW-Downloadlink erstellt...");
|
||||
player.sendMessage("§ahttps://wargearworld.net/images/temp/schematics/" + builder.toString() + ".zip");
|
||||
|
||||
//Process Schems
|
||||
player.sendMessage(SchematicSystem.PREFIX + "§aSchematics werden verarbeitet...");
|
||||
ZipInputStream zipInputStream = new ZipInputStream(new URL("https://wargearworld.net/images/temp/schematics/" + builder.toString() + ".zip").openStream());
|
||||
while (true) {
|
||||
ZipEntry schematic = zipInputStream.getNextEntry();
|
||||
if(schematic == null)
|
||||
break;
|
||||
if(schematic.isDirectory())
|
||||
continue;
|
||||
String[] schemName = schematic.getName().split("\\.");
|
||||
StringBuilder name = new StringBuilder();
|
||||
for (int i = 0; i < schemName.length - 1; i++) {
|
||||
if(!name.toString().equals(""))
|
||||
name.append(".");
|
||||
name.append(schemName[i].replace("/", "-"));
|
||||
}
|
||||
Schematic testSchem = Schematic.getSchemFromDB(name.toString(), player.getUniqueId());
|
||||
List<Byte> schemData = new ArrayList<>();
|
||||
while (zipInputStream.available() == 1) {
|
||||
schemData.add((byte) zipInputStream.read());
|
||||
}
|
||||
byte[] bytes = new byte[schemData.size()];
|
||||
for (int i = 0; i < schemData.size(); i++) {
|
||||
bytes[i] = schemData.get(i);
|
||||
}
|
||||
if(testSchem != null) {
|
||||
int i = 1;
|
||||
while (true) {
|
||||
if(Schematic.getSchemFromDB(name.toString() + "-" + i, player.getUniqueId()) == null) {
|
||||
name = new StringBuilder(name.toString() + "-" + i);
|
||||
break;
|
||||
}
|
||||
i++;
|
||||
}
|
||||
}
|
||||
Schematic.createSchem(name.toString(), player.getUniqueId(), "", SchematicType.Normal);
|
||||
Schematic schem = Schematic.getSchemFromDB(name.toString(), player.getUniqueId());
|
||||
schem.saveFromBytes(bytes, schemName[schemName.length - 1].equals("schem"));
|
||||
zipInputStream.closeEntry();
|
||||
player.sendMessage(SchematicSystem.PREFIX + "§6Die Schematic §e" + schematic.getName() + " §6wurde von WarGearWorld.net als §e" + name.toString() + " §6heruntergeladen!");
|
||||
}
|
||||
player.sendMessage(SchematicSystem.PREFIX + "§aAlle deine Schematics wurden von §6W§7ar§6G§7ear§6W§7orld.net §aauf §eSteam§8War §atransferiert!");
|
||||
zipInputStream.close();
|
||||
|
||||
} catch (Exception e) {
|
||||
player.sendMessage("§cUnerwarteter Fehler beim Schematictransfer. Developer wurden benachrichtigt.");
|
||||
throw new SecurityException(e);
|
||||
} finally {
|
||||
httpclient.getConnectionManager().shutdown();
|
||||
}
|
||||
}
|
||||
}
|
@ -20,6 +20,7 @@
|
||||
package de.steamwar.schematicsystem;
|
||||
|
||||
import de.steamwar.core.CommandRemover;
|
||||
import de.steamwar.schematicsystem.commands.SchemTransferCommand;
|
||||
import de.steamwar.schematicsystem.commands.SchematicCommand;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.configuration.ConfigurationSection;
|
||||
@ -31,6 +32,7 @@ import java.io.File;
|
||||
public class SchematicSystem extends JavaPlugin {
|
||||
|
||||
public static final String PREFIX = "§eSchematic§8» §7";
|
||||
public static SchematicSystem INSTANCE;
|
||||
|
||||
@Override
|
||||
public void onEnable() {
|
||||
@ -48,5 +50,7 @@ public class SchematicSystem extends JavaPlugin {
|
||||
CommandRemover.removeAll("/schematic", "/schem", "//schematic", "//schem");
|
||||
|
||||
getCommand("schem").setExecutor(new SchematicCommand());
|
||||
getCommand("schemtransfer").setExecutor(new SchemTransferCommand());
|
||||
INSTANCE = this;
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,30 @@
|
||||
package de.steamwar.schematicsystem.commands;
|
||||
|
||||
import de.steamwar.schematicsystem.ExternalUpDownload;
|
||||
import de.steamwar.schematicsystem.SchematicSystem;
|
||||
import org.bukkit.Bukkit;
|
||||
import org.bukkit.command.Command;
|
||||
import org.bukkit.command.CommandExecutor;
|
||||
import org.bukkit.command.CommandSender;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
public class SchemTransferCommand implements CommandExecutor {
|
||||
|
||||
@Override
|
||||
public boolean onCommand(CommandSender commandSender, Command command, String s, String[] args) {
|
||||
if(commandSender instanceof Player) {
|
||||
if(args.length < 1) {
|
||||
Player p = (Player) commandSender;
|
||||
p.sendMessage("§6W§7ar§6G§7ear§6W§7orld Schematictransfer");
|
||||
p.sendMessage("§7Mit diesem Command kannst du deine WGW-Schematics auf SteamWar übertragen");
|
||||
p.sendMessage("§8/§eschemtransfer §8[§eDein WGW-Website Passwort§8]");
|
||||
p.sendMessage("§cDISCLAIMER§8: §eWir nutzen dieses Passwort ausschließlich zum einmaligen Download der Schematics.");
|
||||
p.sendMessage("§eWenn du uns das nicht glaubst, kannst du es gerne hier https://steamwar.de/devlabs/SteamWar/SchematicSystem/src/branch/master/SchematicSystem_Main/src/de/steamwar/schematicsystem/commands/SchemTranferCommand.java nachlesen oder die Schematics manuell übertragen.");
|
||||
} else {
|
||||
Bukkit.getScheduler().runTaskAsynchronously(SchematicSystem.INSTANCE, () -> ExternalUpDownload.downloadSchemsFromWGW((Player) commandSender, args[0]));
|
||||
}
|
||||
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
@ -11,4 +11,5 @@ commands:
|
||||
- schematic
|
||||
- /schematic
|
||||
- /schem
|
||||
check:
|
||||
check:
|
||||
schemtransfer:
|
In neuem Issue referenzieren
Einen Benutzer sperren