Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-26 00:00:41 +01:00
Added the initial version of news
Dieser Commit ist enthalten in:
Ursprung
e16d83ecc1
Commit
50b51f5f57
139
common/src/main/java/org/geysermc/floodgate/news/NewsItem.java
Normale Datei
139
common/src/main/java/org/geysermc/floodgate/news/NewsItem.java
Normale Datei
@ -0,0 +1,139 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.floodgate.news;
|
||||||
|
|
||||||
|
import com.google.gson.JsonElement;
|
||||||
|
import com.google.gson.JsonObject;
|
||||||
|
import org.geysermc.floodgate.news.data.ItemData;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
public final class NewsItem {
|
||||||
|
private final int id;
|
||||||
|
private final String project;
|
||||||
|
private final boolean active;
|
||||||
|
private final NewsType type;
|
||||||
|
private final ItemData data;
|
||||||
|
private final boolean priority;
|
||||||
|
private final String message;
|
||||||
|
private final Set<NewsItemAction> actions;
|
||||||
|
private final String url;
|
||||||
|
|
||||||
|
private NewsItem(int id, String project, boolean active, NewsType type, ItemData data,
|
||||||
|
boolean priority, String message, Set<NewsItemAction> actions, String url) {
|
||||||
|
this.id = id;
|
||||||
|
this.project = project;
|
||||||
|
this.active = active;
|
||||||
|
this.type = type;
|
||||||
|
this.data = data;
|
||||||
|
this.priority = priority;
|
||||||
|
this.message = message;
|
||||||
|
this.actions = Collections.unmodifiableSet(actions);
|
||||||
|
this.url = url;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static NewsItem readItem(JsonObject newsItem) {
|
||||||
|
NewsType newsType = NewsType.getByName(newsItem.get("type").getAsString());
|
||||||
|
if (newsType == null) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
JsonObject messageObject = newsItem.getAsJsonObject("message");
|
||||||
|
NewsItemMessage itemMessage = NewsItemMessage.getById(messageObject.get("id").getAsInt());
|
||||||
|
|
||||||
|
String message = "Received an unknown news message type. Please update";
|
||||||
|
if (itemMessage != null) {
|
||||||
|
message = itemMessage.getFormattedMessage(messageObject.getAsJsonArray("args"));
|
||||||
|
}
|
||||||
|
|
||||||
|
Set<NewsItemAction> actions = new HashSet<>();
|
||||||
|
for (JsonElement actionElement : newsItem.getAsJsonArray("actions")) {
|
||||||
|
NewsItemAction action = NewsItemAction.getByName(actionElement.getAsString());
|
||||||
|
if (action != null) {
|
||||||
|
actions.add(action);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return new NewsItem(
|
||||||
|
newsItem.get("id").getAsInt(),
|
||||||
|
newsItem.get("project").getAsString(),
|
||||||
|
newsItem.get("active").getAsBoolean(),
|
||||||
|
newsType,
|
||||||
|
newsType.read(newsItem.getAsJsonObject("data")),
|
||||||
|
newsItem.get("priority").getAsBoolean(),
|
||||||
|
message,
|
||||||
|
actions,
|
||||||
|
newsItem.get("url").getAsString()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getProject() {
|
||||||
|
return project;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isActive() {
|
||||||
|
return active;
|
||||||
|
}
|
||||||
|
|
||||||
|
public NewsType getType() {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ItemData getData() {
|
||||||
|
return data;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
public <T extends ItemData> T getDataAs(Class<T> type) {
|
||||||
|
return (T) data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isPriority() {
|
||||||
|
return priority;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getRawMessage() {
|
||||||
|
return message;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMessage() {
|
||||||
|
return message + " See " + getUrl() + " for more information.";
|
||||||
|
}
|
||||||
|
|
||||||
|
public Set<NewsItemAction> getActions() {
|
||||||
|
return actions;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUrl() {
|
||||||
|
return url;
|
||||||
|
}
|
||||||
|
}
|
44
common/src/main/java/org/geysermc/floodgate/news/NewsItemAction.java
Normale Datei
44
common/src/main/java/org/geysermc/floodgate/news/NewsItemAction.java
Normale Datei
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.floodgate.news;
|
||||||
|
|
||||||
|
public enum NewsItemAction {
|
||||||
|
ON_SERVER_STARTED,
|
||||||
|
ON_OPERATOR_JOIN,
|
||||||
|
BROADCAST_TO_CONSOLE,
|
||||||
|
BROADCAST_TO_OPERATORS;
|
||||||
|
|
||||||
|
private static final NewsItemAction[] VALUES = values();
|
||||||
|
|
||||||
|
public static NewsItemAction getByName(String actionName) {
|
||||||
|
for (NewsItemAction type : VALUES) {
|
||||||
|
if (type.name().equalsIgnoreCase(actionName)) {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,89 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.floodgate.news;
|
||||||
|
|
||||||
|
import com.google.gson.JsonArray;
|
||||||
|
|
||||||
|
// {} is used for things that have to be filled in by the server,
|
||||||
|
// {@} is for things that have to be filled in by us
|
||||||
|
public enum NewsItemMessage {
|
||||||
|
UPDATE_AVAILABLE("There is an update available for {}. The newest version is: {}"),
|
||||||
|
UPDATE_RECOMMENDED(UPDATE_AVAILABLE + ". Your version is quite old, updating is recommend."),
|
||||||
|
UPDATE_HIGHLY_RECOMMENDED(UPDATE_AVAILABLE + ". We highly recommend updating because some important changes have been made."),
|
||||||
|
UPDATE_ANCIENT_VERSION(UPDATE_AVAILABLE + ". You are running an ancient version, updating is recommended."),
|
||||||
|
|
||||||
|
DOWNTIME_GENERIC("The {} is temporarily going down for maintenance soon."),
|
||||||
|
DOWNTIME_WITH_START("The {} is temporarily going down for maintenance on {}."),
|
||||||
|
DOWNTIME_TIMEFRAME(DOWNTIME_WITH_START + " The maintenance is expected to last till {}.");
|
||||||
|
|
||||||
|
private static final NewsItemMessage[] VALUES = values();
|
||||||
|
|
||||||
|
private final String messageFormat;
|
||||||
|
private final String[] messageSplitted;
|
||||||
|
|
||||||
|
NewsItemMessage(String messageFormat) {
|
||||||
|
this.messageFormat = messageFormat;
|
||||||
|
this.messageSplitted = messageFormat.split(" ");
|
||||||
|
}
|
||||||
|
|
||||||
|
public static NewsItemMessage getById(int id) {
|
||||||
|
return VALUES.length > id ? VALUES[id] : null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMessageFormat() {
|
||||||
|
return messageFormat;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getFormattedMessage(JsonArray serverArguments) {
|
||||||
|
int serverArgumentsIndex = 0;
|
||||||
|
|
||||||
|
StringBuilder message = new StringBuilder();
|
||||||
|
for (String split : messageSplitted) {
|
||||||
|
if (message.length() > 0) {
|
||||||
|
message.append(' ');
|
||||||
|
}
|
||||||
|
|
||||||
|
String result = split;
|
||||||
|
|
||||||
|
if (serverArgumentsIndex < serverArguments.size()) {
|
||||||
|
String argument = serverArguments.get(serverArgumentsIndex).getAsString();
|
||||||
|
result = result.replace("{}", argument);
|
||||||
|
if (!result.equals(split)) {
|
||||||
|
serverArgumentsIndex++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
message.append(result);
|
||||||
|
}
|
||||||
|
return message.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return getMessageFormat();
|
||||||
|
}
|
||||||
|
}
|
59
common/src/main/java/org/geysermc/floodgate/news/NewsType.java
Normale Datei
59
common/src/main/java/org/geysermc/floodgate/news/NewsType.java
Normale Datei
@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.floodgate.news;
|
||||||
|
|
||||||
|
import com.google.gson.JsonObject;
|
||||||
|
import org.geysermc.floodgate.news.data.BuildSpecificData;
|
||||||
|
import org.geysermc.floodgate.news.data.CheckAfterData;
|
||||||
|
import org.geysermc.floodgate.news.data.ItemData;
|
||||||
|
|
||||||
|
import java.util.function.Function;
|
||||||
|
|
||||||
|
public enum NewsType {
|
||||||
|
BUILD_SPECIFIC(BuildSpecificData::read),
|
||||||
|
CHECK_AFTER(CheckAfterData::read);
|
||||||
|
|
||||||
|
private static final NewsType[] VALUES = values();
|
||||||
|
|
||||||
|
private final Function<JsonObject, ? extends ItemData> readFunction;
|
||||||
|
|
||||||
|
NewsType(Function<JsonObject, ? extends ItemData> readFunction) {
|
||||||
|
this.readFunction = readFunction;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static NewsType getByName(String newsType) {
|
||||||
|
for (NewsType type : VALUES) {
|
||||||
|
if (type.name().equalsIgnoreCase(newsType)) {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ItemData read(JsonObject data) {
|
||||||
|
return readFunction.apply(data);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,60 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.floodgate.news.data;
|
||||||
|
|
||||||
|
import com.google.gson.JsonObject;
|
||||||
|
|
||||||
|
public final class BuildSpecificData implements ItemData {
|
||||||
|
private String branch;
|
||||||
|
|
||||||
|
private boolean allAffected;
|
||||||
|
private int affectedGreaterThan;
|
||||||
|
private int affectedLessThan;
|
||||||
|
|
||||||
|
public static BuildSpecificData read(JsonObject data) {
|
||||||
|
BuildSpecificData updateData = new BuildSpecificData();
|
||||||
|
updateData.branch = data.get("branch").getAsString();
|
||||||
|
|
||||||
|
JsonObject affectedBuilds = data.getAsJsonObject("affected_builds");
|
||||||
|
if (affectedBuilds.has("all")) {
|
||||||
|
updateData.allAffected = affectedBuilds.get("all").getAsBoolean();
|
||||||
|
}
|
||||||
|
if (!updateData.allAffected) {
|
||||||
|
updateData.affectedGreaterThan = affectedBuilds.get("gt").getAsInt();
|
||||||
|
updateData.affectedLessThan = affectedBuilds.get("lt").getAsInt();
|
||||||
|
}
|
||||||
|
return updateData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isAffected(String branch, int buildId) {
|
||||||
|
return this.branch.equals(branch) &&
|
||||||
|
(allAffected || buildId > affectedGreaterThan && buildId < affectedLessThan);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBranch() {
|
||||||
|
return branch;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.floodgate.news.data;
|
||||||
|
|
||||||
|
import com.google.gson.JsonObject;
|
||||||
|
|
||||||
|
public class CheckAfterData implements ItemData {
|
||||||
|
private long checkAfter;
|
||||||
|
|
||||||
|
public static CheckAfterData read(JsonObject data) {
|
||||||
|
CheckAfterData checkAfterData = new CheckAfterData();
|
||||||
|
checkAfterData.checkAfter = data.get("check_after").getAsLong();
|
||||||
|
return checkAfterData;
|
||||||
|
}
|
||||||
|
|
||||||
|
public long getCheckAfter() {
|
||||||
|
return checkAfter;
|
||||||
|
}
|
||||||
|
}
|
29
common/src/main/java/org/geysermc/floodgate/news/data/ItemData.java
Normale Datei
29
common/src/main/java/org/geysermc/floodgate/news/data/ItemData.java
Normale Datei
@ -0,0 +1,29 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.floodgate.news.data;
|
||||||
|
|
||||||
|
public interface ItemData {
|
||||||
|
}
|
@ -25,18 +25,16 @@
|
|||||||
|
|
||||||
package org.geysermc.floodgate.time;
|
package org.geysermc.floodgate.time;
|
||||||
|
|
||||||
import java.util.concurrent.ExecutorService;
|
|
||||||
import java.util.concurrent.Executors;
|
import java.util.concurrent.Executors;
|
||||||
import java.util.concurrent.ScheduledExecutorService;
|
import java.util.concurrent.ScheduledExecutorService;
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
public final class TimeSyncer {
|
public final class TimeSyncer {
|
||||||
private final ExecutorService executorService;
|
private final ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1);
|
||||||
private long timeOffset = Long.MIN_VALUE; // value when it failed to get the offset
|
private long timeOffset = Long.MIN_VALUE; // value when it failed to get the offset
|
||||||
|
|
||||||
public TimeSyncer(String timeServer) {
|
public TimeSyncer(String timeServer) {
|
||||||
ScheduledExecutorService service = Executors.newScheduledThreadPool(1);
|
executorService.scheduleWithFixedDelay(() -> {
|
||||||
service.scheduleWithFixedDelay(() -> {
|
|
||||||
// 5 tries to get the time offset, since UDP doesn't guaranty a response
|
// 5 tries to get the time offset, since UDP doesn't guaranty a response
|
||||||
for (int i = 0; i < 5; i++) {
|
for (int i = 0; i < 5; i++) {
|
||||||
long offset = SntpClientUtils.requestTimeOffset(timeServer, 3000);
|
long offset = SntpClientUtils.requestTimeOffset(timeServer, 3000);
|
||||||
@ -46,7 +44,6 @@ public final class TimeSyncer {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, 0, 30, TimeUnit.MINUTES);
|
}, 0, 30, TimeUnit.MINUTES);
|
||||||
executorService = service;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void shutdown() {
|
public void shutdown() {
|
||||||
|
@ -26,16 +26,66 @@
|
|||||||
package org.geysermc.floodgate.util;
|
package org.geysermc.floodgate.util;
|
||||||
|
|
||||||
public enum WebsocketEventType {
|
public enum WebsocketEventType {
|
||||||
SUBSCRIBER_CREATED,
|
/**
|
||||||
SUBSCRIBERS_COUNT,
|
* Sent once we successfully connected to the server
|
||||||
ADDED_TO_QUEUE,
|
*/
|
||||||
SKIN_UPLOADED,
|
SUBSCRIBER_CREATED(0),
|
||||||
CREATOR_DISCONNECTED,
|
/**
|
||||||
LOG_MESSAGE;
|
* Sent every time a subscriber got added or disconnected
|
||||||
|
*/
|
||||||
|
SUBSCRIBER_COUNT(1),
|
||||||
|
/**
|
||||||
|
* Sent once the creator disconnected. After this packet the server will automatically close the
|
||||||
|
* connection once the queue size (sent in {@link #ADDED_TO_QUEUE} and {@link #SKIN_UPLOADED}
|
||||||
|
* reaches 0.
|
||||||
|
*/
|
||||||
|
CREATOR_DISCONNECTED(4),
|
||||||
|
|
||||||
public static final WebsocketEventType[] VALUES = values();
|
/**
|
||||||
|
* Sent every time a skin got added to the upload queue
|
||||||
|
*/
|
||||||
|
ADDED_TO_QUEUE(2),
|
||||||
|
/**
|
||||||
|
* Sent every time a skin got successfully uploaded
|
||||||
|
*/
|
||||||
|
SKIN_UPLOADED(3),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sent every time a news item was added
|
||||||
|
*/
|
||||||
|
NEWS_ADDED(6),
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sent when the server wants you to know something. Currently used for violations that aren't
|
||||||
|
* bad enough to close the connection
|
||||||
|
*/
|
||||||
|
LOG_MESSAGE(5);
|
||||||
|
|
||||||
|
private static final WebsocketEventType[] VALUES;
|
||||||
|
|
||||||
|
static {
|
||||||
|
WebsocketEventType[] values = values();
|
||||||
|
VALUES = new WebsocketEventType[values.length];
|
||||||
|
for (WebsocketEventType value : values) {
|
||||||
|
VALUES[value.id] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The ID is based of the time it got added. However, to keep the enum organized as time goes on,
|
||||||
|
* it looks nicer to sort the events based of categories.
|
||||||
|
*/
|
||||||
|
private final int id;
|
||||||
|
|
||||||
|
WebsocketEventType(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
public static WebsocketEventType getById(int id) {
|
public static WebsocketEventType getById(int id) {
|
||||||
return VALUES.length > id ? VALUES[id] : null;
|
return VALUES.length > id ? VALUES[id] : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -64,6 +64,7 @@ import org.geysermc.floodgate.crypto.AesCipher;
|
|||||||
import org.geysermc.floodgate.crypto.AesKeyProducer;
|
import org.geysermc.floodgate.crypto.AesKeyProducer;
|
||||||
import org.geysermc.floodgate.crypto.Base64Topping;
|
import org.geysermc.floodgate.crypto.Base64Topping;
|
||||||
import org.geysermc.floodgate.crypto.FloodgateCipher;
|
import org.geysermc.floodgate.crypto.FloodgateCipher;
|
||||||
|
import org.geysermc.floodgate.news.NewsItemAction;
|
||||||
import org.geysermc.floodgate.time.TimeSyncer;
|
import org.geysermc.floodgate.time.TimeSyncer;
|
||||||
import org.jetbrains.annotations.Contract;
|
import org.jetbrains.annotations.Contract;
|
||||||
|
|
||||||
@ -111,6 +112,7 @@ public class GeyserConnector {
|
|||||||
private TimeSyncer timeSyncer;
|
private TimeSyncer timeSyncer;
|
||||||
private FloodgateCipher cipher;
|
private FloodgateCipher cipher;
|
||||||
private FloodgateSkinUploader skinUploader;
|
private FloodgateSkinUploader skinUploader;
|
||||||
|
private final NewsHandler newsHandler;
|
||||||
|
|
||||||
private boolean shuttingDown = false;
|
private boolean shuttingDown = false;
|
||||||
|
|
||||||
@ -213,6 +215,21 @@ public class GeyserConnector {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String branch = "unknown";
|
||||||
|
int buildNumber = -1;
|
||||||
|
try {
|
||||||
|
Properties gitProperties = new Properties();
|
||||||
|
gitProperties.load(FileUtils.getResource("git.properties"));
|
||||||
|
branch = gitProperties.getProperty("git.branch");
|
||||||
|
String build = gitProperties.getProperty("git.build.number");
|
||||||
|
if (build != null) {
|
||||||
|
buildNumber = Integer.parseInt(build);
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("Failed to read git.properties", e);
|
||||||
|
}
|
||||||
|
newsHandler = new NewsHandler(branch, buildNumber);
|
||||||
|
|
||||||
CooldownUtils.setDefaultShowCooldown(config.getShowCooldown());
|
CooldownUtils.setDefaultShowCooldown(config.getShowCooldown());
|
||||||
DimensionUtils.changeBedrockNetherId(config.isAboveBedrockNetherBuilding()); // Apply End dimension ID workaround to Nether
|
DimensionUtils.changeBedrockNetherId(config.isAboveBedrockNetherBuilding()); // Apply End dimension ID workaround to Nether
|
||||||
SkullBlockEntityTranslator.ALLOW_CUSTOM_SKULLS = config.isAllowCustomSkulls();
|
SkullBlockEntityTranslator.ALLOW_CUSTOM_SKULLS = config.isAllowCustomSkulls();
|
||||||
@ -326,6 +343,8 @@ public class GeyserConnector {
|
|||||||
if (platformType == PlatformType.STANDALONE) {
|
if (platformType == PlatformType.STANDALONE) {
|
||||||
logger.warning(LanguageUtils.getLocaleStringLog("geyser.core.movement_warn"));
|
logger.warning(LanguageUtils.getLocaleStringLog("geyser.core.movement_warn"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
newsHandler.handleNews(null, NewsItemAction.ON_SERVER_STARTED);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void shutdown() {
|
public void shutdown() {
|
||||||
@ -371,6 +390,7 @@ public class GeyserConnector {
|
|||||||
generalThreadPool.shutdown();
|
generalThreadPool.shutdown();
|
||||||
bedrockServer.close();
|
bedrockServer.close();
|
||||||
timeSyncer.shutdown();
|
timeSyncer.shutdown();
|
||||||
|
newsHandler.shutdown();
|
||||||
players.clear();
|
players.clear();
|
||||||
defaultAuthType = null;
|
defaultAuthType = null;
|
||||||
this.getCommandManager().getCommands().clear();
|
this.getCommandManager().getCommands().clear();
|
||||||
|
@ -63,7 +63,7 @@ public final class FloodgateSkinUploader {
|
|||||||
|
|
||||||
public FloodgateSkinUploader(GeyserConnector connector) {
|
public FloodgateSkinUploader(GeyserConnector connector) {
|
||||||
this.logger = connector.getLogger();
|
this.logger = connector.getLogger();
|
||||||
this.client = new WebSocketClient(Constants.SKIN_UPLOAD_URI) {
|
this.client = new WebSocketClient(Constants.GLOBAL_API_WS_URI) {
|
||||||
@Override
|
@Override
|
||||||
public void onOpen(ServerHandshake handshake) {
|
public void onOpen(ServerHandshake handshake) {
|
||||||
setConnectionLostTimeout(11);
|
setConnectionLostTimeout(11);
|
||||||
@ -99,7 +99,7 @@ public final class FloodgateSkinUploader {
|
|||||||
id = node.get("id").asInt();
|
id = node.get("id").asInt();
|
||||||
verifyCode = node.get("verify_code").asText();
|
verifyCode = node.get("verify_code").asText();
|
||||||
break;
|
break;
|
||||||
case SUBSCRIBERS_COUNT:
|
case SUBSCRIBER_COUNT:
|
||||||
subscribersCount = node.get("subscribers_count").asInt();
|
subscribersCount = node.get("subscribers_count").asInt();
|
||||||
break;
|
break;
|
||||||
case SKIN_UPLOADED:
|
case SKIN_UPLOADED:
|
||||||
@ -145,6 +145,8 @@ public final class FloodgateSkinUploader {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case NEWS_ADDED:
|
||||||
|
//todo
|
||||||
}
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
logger.error("Error while receiving a message", e);
|
logger.error("Error while receiving a message", e);
|
||||||
|
@ -27,18 +27,28 @@ package org.geysermc.connector.utils;
|
|||||||
|
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
public final class Constants {
|
public final class Constants {
|
||||||
public static final URI SKIN_UPLOAD_URI;
|
public static final URI GLOBAL_API_WS_URI;
|
||||||
public static final String NTP_SERVER = "time.cloudflare.com";
|
public static final String NTP_SERVER = "time.cloudflare.com";
|
||||||
|
|
||||||
|
public static final Set<String> NEWS_PROJECT_LIST = Collections.unmodifiableSet(
|
||||||
|
new HashSet<>(Arrays.asList("geyser", "floodgate"))
|
||||||
|
);
|
||||||
|
|
||||||
|
public static final String NEWS_OVERVIEW_URL = "https://api.geysermc.org/v1/news";
|
||||||
|
|
||||||
static {
|
static {
|
||||||
URI skinUploadUri = null;
|
URI wsUri = null;
|
||||||
try {
|
try {
|
||||||
skinUploadUri = new URI("wss://api.geysermc.org/ws");
|
wsUri = new URI("wss://api.geysermc.org/ws");
|
||||||
} catch (URISyntaxException e) {
|
} catch (URISyntaxException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
SKIN_UPLOAD_URI = skinUploadUri;
|
GLOBAL_API_WS_URI = wsUri;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
175
connector/src/main/java/org/geysermc/connector/utils/NewsHandler.java
Normale Datei
175
connector/src/main/java/org/geysermc/connector/utils/NewsHandler.java
Normale Datei
@ -0,0 +1,175 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2019-2021 GeyserMC. http://geysermc.org
|
||||||
|
*
|
||||||
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
* of this software and associated documentation files (the "Software"), to deal
|
||||||
|
* in the Software without restriction, including without limitation the rights
|
||||||
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
* copies of the Software, and to permit persons to whom the Software is
|
||||||
|
* furnished to do so, subject to the following conditions:
|
||||||
|
*
|
||||||
|
* The above copyright notice and this permission notice shall be included in
|
||||||
|
* all copies or substantial portions of the Software.
|
||||||
|
*
|
||||||
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
* THE SOFTWARE.
|
||||||
|
*
|
||||||
|
* @author GeyserMC
|
||||||
|
* @link https://github.com/GeyserMC/Geyser
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.geysermc.connector.utils;
|
||||||
|
|
||||||
|
import com.google.gson.Gson;
|
||||||
|
import com.google.gson.JsonArray;
|
||||||
|
import com.google.gson.JsonElement;
|
||||||
|
import com.google.gson.JsonSyntaxException;
|
||||||
|
import org.geysermc.connector.GeyserConnector;
|
||||||
|
import org.geysermc.connector.GeyserLogger;
|
||||||
|
import org.geysermc.connector.common.ChatColor;
|
||||||
|
import org.geysermc.connector.network.session.GeyserSession;
|
||||||
|
import org.geysermc.floodgate.news.NewsItem;
|
||||||
|
import org.geysermc.floodgate.news.NewsItemAction;
|
||||||
|
import org.geysermc.floodgate.news.data.BuildSpecificData;
|
||||||
|
import org.geysermc.floodgate.news.data.CheckAfterData;
|
||||||
|
|
||||||
|
import java.util.*;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.concurrent.ScheduledExecutorService;
|
||||||
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
public class NewsHandler {
|
||||||
|
private final ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1);
|
||||||
|
private final GeyserLogger logger = GeyserConnector.getInstance().getLogger();
|
||||||
|
private final Gson gson = new Gson();
|
||||||
|
|
||||||
|
private final Map<Integer, NewsItem> activeNewsItems = new HashMap<>();
|
||||||
|
private final String branch;
|
||||||
|
private final int build;
|
||||||
|
|
||||||
|
private boolean geyserStarted;
|
||||||
|
|
||||||
|
public NewsHandler(String branch, int build) {
|
||||||
|
this.branch = branch;
|
||||||
|
this.build = build;
|
||||||
|
|
||||||
|
executorService.scheduleWithFixedDelay(this::checkNews, 0, 30, TimeUnit.MINUTES);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void schedule(long delayMs) {
|
||||||
|
executorService.schedule(this::checkNews, delayMs, TimeUnit.MILLISECONDS);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void checkNews() {
|
||||||
|
try {
|
||||||
|
String body = WebUtils.getBody(Constants.NEWS_OVERVIEW_URL);
|
||||||
|
JsonArray array = gson.fromJson(body, JsonArray.class);
|
||||||
|
|
||||||
|
try {
|
||||||
|
for (JsonElement newsItemElement : array) {
|
||||||
|
NewsItem newsItem = NewsItem.readItem(newsItemElement.getAsJsonObject());
|
||||||
|
if (newsItem != null) {
|
||||||
|
addNews(newsItem);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
if (logger.isDebug()) {
|
||||||
|
logger.error("Error while reading news item", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (JsonSyntaxException ignored) {}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGeyserStarted() {
|
||||||
|
geyserStarted = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void handleNews(GeyserSession session, NewsItemAction action) {
|
||||||
|
for (NewsItem news : getActiveNews(action)) {
|
||||||
|
handleNewsItem(session, news, action);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleNewsItem(GeyserSession session, NewsItem news, NewsItemAction action) {
|
||||||
|
switch (action) {
|
||||||
|
case ON_SERVER_STARTED:
|
||||||
|
if (!geyserStarted) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
case BROADCAST_TO_CONSOLE:
|
||||||
|
logger.info(news.getMessage());
|
||||||
|
break;
|
||||||
|
case ON_OPERATOR_JOIN:
|
||||||
|
//todo doesn't work, it's called before we know the op level.
|
||||||
|
// if (session != null && session.getOpPermissionLevel() >= 2) {
|
||||||
|
// session.sendMessage(ChatColor.GREEN + news.getMessage());
|
||||||
|
// }
|
||||||
|
break;
|
||||||
|
case BROADCAST_TO_OPERATORS:
|
||||||
|
for (GeyserSession player : GeyserConnector.getInstance().getPlayers()) {
|
||||||
|
if (player.getOpPermissionLevel() >= 2) {
|
||||||
|
session.sendMessage(ChatColor.GREEN + news.getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public Collection<NewsItem> getActiveNews() {
|
||||||
|
return activeNewsItems.values();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Collection<NewsItem> getActiveNews(NewsItemAction action) {
|
||||||
|
List<NewsItem> news = new ArrayList<>();
|
||||||
|
for (NewsItem item : getActiveNews()) {
|
||||||
|
if (item.getActions().contains(action)) {
|
||||||
|
news.add(item);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return news;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addNews(NewsItem item) {
|
||||||
|
if (activeNewsItems.containsKey(item.getId())) {
|
||||||
|
if (!item.isActive()) {
|
||||||
|
activeNewsItems.remove(item.getId());
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!Constants.NEWS_PROJECT_LIST.contains(item.getProject())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (item.getType()) {
|
||||||
|
case BUILD_SPECIFIC:
|
||||||
|
if (!item.getDataAs(BuildSpecificData.class).isAffected(branch, build)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case CHECK_AFTER:
|
||||||
|
long checkAfter = item.getDataAs(CheckAfterData.class).getCheckAfter();
|
||||||
|
long delayMs = System.currentTimeMillis() - checkAfter;
|
||||||
|
schedule(delayMs > 0 ? delayMs : 0);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
activeNewsItems.put(item.getId(), item);
|
||||||
|
activateNews(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void activateNews(NewsItem item) {
|
||||||
|
for (NewsItemAction action : item.getActions()) {
|
||||||
|
handleNewsItem(null, item, action);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void shutdown() {
|
||||||
|
executorService.shutdown();
|
||||||
|
}
|
||||||
|
}
|
@ -45,9 +45,8 @@ public class WebUtils {
|
|||||||
* @return Body contents or error message if the request fails
|
* @return Body contents or error message if the request fails
|
||||||
*/
|
*/
|
||||||
public static String getBody(String reqURL) {
|
public static String getBody(String reqURL) {
|
||||||
URL url = null;
|
|
||||||
try {
|
try {
|
||||||
url = new URL(reqURL);
|
URL url = new URL(reqURL);
|
||||||
HttpURLConnection con = (HttpURLConnection) url.openConnection();
|
HttpURLConnection con = (HttpURLConnection) url.openConnection();
|
||||||
con.setRequestMethod("GET");
|
con.setRequestMethod("GET");
|
||||||
con.setRequestProperty("User-Agent", "Geyser-" + GeyserConnector.getInstance().getPlatformType().toString() + "/" + GeyserConnector.VERSION); // Otherwise Java 8 fails on checking updates
|
con.setRequestProperty("User-Agent", "Geyser-" + GeyserConnector.getInstance().getPlatformType().toString() + "/" + GeyserConnector.VERSION); // Otherwise Java 8 fails on checking updates
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren