forked from LuckPerms/LuckPerms
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:lucko/LuckPerms
� Conflicts: � api/src/main/java/net/luckperms/api/platform/Platform.java � bukkit/src/main/resources/plugin.bukkit.yml � settings.gradle
- Loading branch information
Showing
190 changed files
with
6,883 additions
and
4,828 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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
86 changes: 86 additions & 0 deletions
86
api/src/main/java/net/luckperms/api/event/player/lookup/UniqueIdDetermineTypeEvent.java
This file contains 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,86 @@ | ||
/* | ||
* This file is part of LuckPerms, licensed under the MIT License. | ||
* | ||
* Copyright (c) lucko (Luck) <[email protected]> | ||
* 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 net.luckperms.api.event.player.lookup; | ||
|
||
import net.luckperms.api.event.LuckPermsEvent; | ||
import net.luckperms.api.event.type.ResultEvent; | ||
import net.luckperms.api.event.util.Param; | ||
|
||
import org.checkerframework.checker.nullness.qual.NonNull; | ||
|
||
import java.util.Objects; | ||
import java.util.UUID; | ||
|
||
/** | ||
* Called when the platform needs to determine the type of a player's {@link UUID unique id}. | ||
* | ||
* @since 5.3 | ||
*/ | ||
public interface UniqueIdDetermineTypeEvent extends LuckPermsEvent, ResultEvent<String> { | ||
|
||
/** | ||
* The players UUID has been obtained by authenticating with the Mojang session servers. | ||
* | ||
* <p>Usually indicated by the UUID being {@link UUID#version() version} 4.</p> | ||
*/ | ||
String TYPE_AUTHENTICATED = "authenticated"; | ||
|
||
/** | ||
* The players UUID has not been obtained through authentication, and instead is likely based | ||
* on the username they connected with. | ||
* | ||
* <p>Usually indicated by the UUID being {@link UUID#version() version} 3.</p> | ||
*/ | ||
String TYPE_UNAUTHENTICATED = "unauthenticated"; | ||
|
||
/** | ||
* Gets the {@link UUID unique id} being queried. | ||
* | ||
* @return the unique id | ||
*/ | ||
@Param(0) | ||
@NonNull UUID getUniqueId(); | ||
|
||
/** | ||
* Gets the current result unique id type. | ||
* | ||
* @return the type | ||
*/ | ||
default @NonNull String getType() { | ||
return result().get(); | ||
} | ||
|
||
/** | ||
* Sets the result unique id type. | ||
* | ||
* @param type the type | ||
*/ | ||
default void setType(@NonNull String type) { | ||
Objects.requireNonNull(type, "type"); | ||
result().set(type); | ||
} | ||
|
||
} |
61 changes: 61 additions & 0 deletions
61
api/src/main/java/net/luckperms/api/event/player/lookup/UniqueIdLookupEvent.java
This file contains 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,61 @@ | ||
/* | ||
* This file is part of LuckPerms, licensed under the MIT License. | ||
* | ||
* Copyright (c) lucko (Luck) <[email protected]> | ||
* 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 net.luckperms.api.event.player.lookup; | ||
|
||
import net.luckperms.api.event.LuckPermsEvent; | ||
import net.luckperms.api.event.type.ResultEvent; | ||
import net.luckperms.api.event.util.Param; | ||
|
||
import org.checkerframework.checker.nullness.qual.NonNull; | ||
import org.checkerframework.checker.nullness.qual.Nullable; | ||
|
||
import java.util.UUID; | ||
|
||
/** | ||
* Called when the platform needs a unique id for a given username. | ||
* | ||
* @since 5.3 | ||
*/ | ||
public interface UniqueIdLookupEvent extends LuckPermsEvent, ResultEvent<UUID> { | ||
|
||
/** | ||
* Gets the username being looked up. | ||
* | ||
* @return the username | ||
*/ | ||
@Param(0) | ||
@NonNull String getUsername(); | ||
|
||
/** | ||
* Sets the result unique id. | ||
* | ||
* @param uniqueId the unique id | ||
*/ | ||
default void setUniqueId(@Nullable UUID uniqueId) { | ||
result().set(uniqueId); | ||
} | ||
|
||
} |
61 changes: 61 additions & 0 deletions
61
api/src/main/java/net/luckperms/api/event/player/lookup/UsernameLookupEvent.java
This file contains 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,61 @@ | ||
/* | ||
* This file is part of LuckPerms, licensed under the MIT License. | ||
* | ||
* Copyright (c) lucko (Luck) <[email protected]> | ||
* 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 net.luckperms.api.event.player.lookup; | ||
|
||
import net.luckperms.api.event.LuckPermsEvent; | ||
import net.luckperms.api.event.type.ResultEvent; | ||
import net.luckperms.api.event.util.Param; | ||
|
||
import org.checkerframework.checker.nullness.qual.NonNull; | ||
import org.checkerframework.checker.nullness.qual.Nullable; | ||
|
||
import java.util.UUID; | ||
|
||
/** | ||
* Called when the platform needs a username for a given unique id. | ||
* | ||
* @since 5.3 | ||
*/ | ||
public interface UsernameLookupEvent extends LuckPermsEvent, ResultEvent<String> { | ||
|
||
/** | ||
* Gets the {@link UUID unique id} being looked up. | ||
* | ||
* @return the unique id | ||
*/ | ||
@Param(0) | ||
@NonNull UUID getUniqueId(); | ||
|
||
/** | ||
* Sets the result username. | ||
* | ||
* @param username the username | ||
*/ | ||
default void setUsername(@Nullable String username) { | ||
result().set(username); | ||
} | ||
|
||
} |
Oops, something went wrong.