-
-
Notifications
You must be signed in to change notification settings - Fork 340
Server Status Ping API #367
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| /* | ||
| * This file is part of Sponge, licensed under the MIT License (MIT). | ||
| * | ||
| * Copyright (c) SpongePowered.org <http://www.spongepowered.org> | ||
| * Copyright (c) contributors | ||
| * | ||
| * 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. | ||
| */ | ||
| package org.spongepowered.api; | ||
|
|
||
| /** | ||
| * Represents a specific game version of a client or a server. | ||
| */ | ||
| public interface GameVersion extends Comparable<GameVersion> { | ||
|
|
||
| /** | ||
| * Gets the name of this game version. | ||
| * | ||
| * <p> | ||
| * <strong>Note:</strong> The returned name does not necessarily represent | ||
| * the name of a Minecraft version. Depending on the client and | ||
| * implementation, this may also just return a numeric value. | ||
| * </p> | ||
| * | ||
| * @return The version name | ||
| */ | ||
| String getName(); | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
120 changes: 120 additions & 0 deletions
120
src/main/java/org/spongepowered/api/event/server/StatusPingEvent.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,120 @@ | ||
| /* | ||
| * This file is part of Sponge, licensed under the MIT License (MIT). | ||
| * | ||
| * Copyright (c) SpongePowered.org <http://www.spongepowered.org> | ||
| * Copyright (c) contributors | ||
| * | ||
| * 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. | ||
| */ | ||
| package org.spongepowered.api.event.server; | ||
|
|
||
| import com.google.common.base.Optional; | ||
| import org.spongepowered.api.event.GameEvent; | ||
| import org.spongepowered.api.status.Favicon; | ||
| import org.spongepowered.api.status.PlayerProfile; | ||
| import org.spongepowered.api.status.StatusClient; | ||
| import org.spongepowered.api.status.StatusResponse; | ||
| import org.spongepowered.api.text.message.Message; | ||
| import org.spongepowered.api.util.event.Cancellable; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| import javax.annotation.Nullable; | ||
|
|
||
| /** | ||
| * Called when a client pings the server from the server list. | ||
| * <p> | ||
| * If this event gets cancelled, it will close the client connection without | ||
| * sending any response. | ||
| * </p> | ||
| */ | ||
| public interface StatusPingEvent extends GameEvent, Cancellable, StatusResponse { | ||
|
|
||
| /** | ||
| * Gets the client pinging the server. | ||
| * | ||
| * @return The client of the status request | ||
| */ | ||
| StatusClient getClient(); | ||
|
|
||
| /** | ||
| * Sets the description (MOTD) of the status response. | ||
| * | ||
| * @param description The description to display | ||
| */ | ||
| void setDescription(Message description); | ||
|
|
||
| @Override | ||
| Optional<Players> getPlayers(); | ||
|
|
||
| /** | ||
| * Sets whether the player count and the list of players on this server is | ||
| * hidden and doesn't get sent to the client. This will restore | ||
| * {@link #getPlayers()} if the players were previously hidden. | ||
| * <p> | ||
| * Use {@link #getPlayers()}.{@link Optional#isPresent() isPresent()} to | ||
| * check if the players are already hidden. | ||
| * </p> | ||
| * <p> | ||
| * In Vanilla, this will display {@code ???} instead of the player count in | ||
| * the server list. | ||
| * </p> | ||
| * | ||
| * @param hide {@code True} if the players should be hidden | ||
| */ | ||
| void setHidePlayers(boolean hide); | ||
|
|
||
| /** | ||
| * Represents the information about the players on the server, sent after | ||
| * the {@link StatusPingEvent}. | ||
| */ | ||
| interface Players extends StatusResponse.Players { | ||
|
|
||
| /** | ||
| * Sets the amount of online players to display on the client. | ||
| * | ||
| * @param online The amount of online players | ||
| */ | ||
| void setOnline(int online); | ||
|
|
||
| /** | ||
| * Sets the maximum amount of allowed players to display on the client. | ||
| * | ||
| * @param max The maximum amount of players | ||
| */ | ||
| void setMax(int max); | ||
|
|
||
| /** | ||
| * Gets an mutable list of online players on the server to display on | ||
| * the client. | ||
| * | ||
| * @return A mutable list of online players | ||
| */ | ||
| @Override | ||
| List<PlayerProfile> getPlayers(); | ||
| } | ||
|
|
||
| /** | ||
| * Sets the {@link Favicon} to display on the client. | ||
| * | ||
| * @param favicon The favicon, or {@code null} for none | ||
| */ | ||
| void setFavicon(@Nullable Favicon favicon); | ||
|
|
||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| /* | ||
| * This file is part of Sponge, licensed under the MIT License (MIT). | ||
| * | ||
| * Copyright (c) SpongePowered.org <http://www.spongepowered.org> | ||
| * Copyright (c) contributors | ||
| * | ||
| * 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. | ||
| */ | ||
| package org.spongepowered.api.status; | ||
|
|
||
| import org.spongepowered.api.Server; | ||
|
|
||
| import java.awt.image.BufferedImage; | ||
| import java.io.File; | ||
| import java.io.InputStream; | ||
| import java.net.URL; | ||
|
|
||
| /** | ||
| * Represents an icon for the server sent in the {@link StatusResponse}. It can | ||
| * be loaded by calling one of the {@code loadFavicon} methods on {@link Server} | ||
| * . | ||
| * | ||
| * @see Server#loadFavicon(String) | ||
| * @see Server#loadFavicon(File) | ||
| * @see Server#loadFavicon(URL) | ||
| * @see Server#loadFavicon(InputStream) | ||
| */ | ||
| public interface Favicon { | ||
|
|
||
| /** | ||
| * Gets the decoded image of this favicon. | ||
| * | ||
| * @return The decoded image | ||
| */ | ||
| BufferedImage getImage(); | ||
| } |
41 changes: 41 additions & 0 deletions
41
src/main/java/org/spongepowered/api/status/PlayerProfile.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| /* | ||
| * This file is part of Sponge, licensed under the MIT License (MIT). | ||
| * | ||
| * Copyright (c) SpongePowered.org <http://www.spongepowered.org> | ||
| * Copyright (c) contributors | ||
| * | ||
| * 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. | ||
| */ | ||
| package org.spongepowered.api.status; | ||
|
|
||
| import org.spongepowered.api.util.Identifiable; | ||
|
|
||
| /** | ||
| * Holds basic player information about a player for the {@link StatusResponse}. | ||
| */ | ||
| public interface PlayerProfile extends Identifiable { | ||
|
|
||
| /** | ||
| * Gets the player's last known username. | ||
| * | ||
| * @return The player's last known username | ||
| */ | ||
| String getName(); | ||
|
|
||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
throws IOException, FileNotFoundExceptionThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is already included in
IOException(FileNotFoundExceptionis a subclass ofIOException) and IntelliJ IDEA doesn't stop with complaining that it is already defined.