mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2025-02-02 21:41:39 +01:00
Add UUIDFlag
This commit is contained in:
parent
cbb3212082
commit
b6fc9ddd93
@ -0,0 +1,63 @@
|
|||||||
|
/*
|
||||||
|
* WorldGuard, a suite of tools for Minecraft
|
||||||
|
* Copyright (C) sk89q <http://www.sk89q.com>
|
||||||
|
* Copyright (C) WorldGuard team and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU Lesser 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 Lesser General Public License
|
||||||
|
* for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.sk89q.worldguard.protection.flags;
|
||||||
|
|
||||||
|
import javax.annotation.Nullable;
|
||||||
|
import java.util.UUID;
|
||||||
|
|
||||||
|
public class UUIDFlag extends Flag<UUID> {
|
||||||
|
protected UUIDFlag(String name, @Nullable RegionGroup defaultGroup) {
|
||||||
|
super(name, defaultGroup);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected UUIDFlag(String name) {
|
||||||
|
super(name);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UUID parseInput(FlagContext context) throws InvalidFlagFormat {
|
||||||
|
String input = context.getUserInput();
|
||||||
|
if ("self".equalsIgnoreCase(input)) {
|
||||||
|
return context.getSender().getUniqueId();
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
return UUID.fromString(input);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
throw new InvalidFlagFormat("Not a valid uuid: " + input);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UUID unmarshal(@Nullable Object o) {
|
||||||
|
if (!(o instanceof String)) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
return UUID.fromString((String)o);
|
||||||
|
} catch (IllegalArgumentException e) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object marshal(UUID o) {
|
||||||
|
return o.toString();
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user