mirror of
https://github.com/AuthMe/AuthMeReloaded.git
synced 2024-10-31 15:49:56 +01:00
commit
cd397c6d44
@ -150,4 +150,38 @@ public class NewAPI {
|
|||||||
plugin.management.performLogin(player, "dontneed", true);
|
plugin.management.performLogin(player, "dontneed", true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Force a player to logout
|
||||||
|
*
|
||||||
|
* @param Player
|
||||||
|
* player
|
||||||
|
*/
|
||||||
|
public void forceLogout(Player player)
|
||||||
|
{
|
||||||
|
plugin.management.performLogout(player);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Force a player to register
|
||||||
|
*
|
||||||
|
* @param Player
|
||||||
|
* player
|
||||||
|
* @param String
|
||||||
|
* password
|
||||||
|
*/
|
||||||
|
public void forceRegister(Player player, String password)
|
||||||
|
{
|
||||||
|
plugin.management.performRegister(player, password, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Force a player to unregister
|
||||||
|
*
|
||||||
|
* @param Player
|
||||||
|
* player
|
||||||
|
*/
|
||||||
|
public void forceUnregister(Player player)
|
||||||
|
{
|
||||||
|
plugin.management.performUnregister(player, "", true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -61,80 +61,8 @@ public class UnregisterCommand implements CommandExecutor {
|
|||||||
m.send(player, "usage_unreg");
|
m.send(player, "usage_unreg");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
plugin.getServer().getScheduler().runTaskAsynchronously(plugin, new Runnable() {
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
try {
|
|
||||||
if (PasswordSecurity.comparePasswordWithHash(args[0], PlayerCache.getInstance().getAuth(name).getHash(), player.getName())) {
|
|
||||||
if (!plugin.database.removeAuth(name)) {
|
|
||||||
player.sendMessage("error");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (Settings.isForcedRegistrationEnabled) {
|
|
||||||
if (Settings.isTeleportToSpawnEnabled && !Settings.noTeleport) {
|
|
||||||
Location spawn = plugin.getSpawnLocation(player);
|
|
||||||
SpawnTeleportEvent tpEvent = new SpawnTeleportEvent(player, player.getLocation(), spawn, false);
|
|
||||||
plugin.getServer().getPluginManager().callEvent(tpEvent);
|
|
||||||
if (!tpEvent.isCancelled()) {
|
|
||||||
player.teleport(tpEvent.getTo());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
player.saveData();
|
plugin.management.performUnregister(player, args[0], false);
|
||||||
PlayerCache.getInstance().removePlayer(player.getName().toLowerCase());
|
|
||||||
if (!Settings.getRegisteredGroup.isEmpty())
|
|
||||||
Utils.setGroup(player, GroupType.UNREGISTERED);
|
|
||||||
LimboCache.getInstance().addLimboPlayer(player);
|
|
||||||
int delay = Settings.getRegistrationTimeout * 20;
|
|
||||||
int interval = Settings.getWarnMessageInterval;
|
|
||||||
BukkitScheduler sched = sender.getServer().getScheduler();
|
|
||||||
if (delay != 0) {
|
|
||||||
BukkitTask id = sched.runTaskLaterAsynchronously(plugin, new TimeoutTask(plugin, name, player), delay);
|
|
||||||
LimboCache.getInstance().getLimboPlayer(name).setTimeoutTaskId(id);
|
|
||||||
}
|
|
||||||
LimboCache.getInstance().getLimboPlayer(name).setMessageTaskId(sched.runTaskAsynchronously(plugin, new MessageTask(plugin, name, m.send("reg_msg"), interval)));
|
|
||||||
m.send(player, "unregistered");
|
|
||||||
ConsoleLogger.info(player.getDisplayName() + " unregistered himself");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!Settings.unRegisteredGroup.isEmpty()) {
|
|
||||||
Utils.setGroup(player, Utils.GroupType.UNREGISTERED);
|
|
||||||
}
|
|
||||||
PlayerCache.getInstance().removePlayer(player.getName().toLowerCase());
|
|
||||||
// check if Player cache File Exist and delete it, preventing
|
|
||||||
// duplication of items
|
|
||||||
if (playerCache.doesCacheExist(player)) {
|
|
||||||
playerCache.removeCache(player);
|
|
||||||
}
|
|
||||||
if (Settings.applyBlindEffect)
|
|
||||||
player.addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, Settings.getRegistrationTimeout * 20, 2));
|
|
||||||
if (!Settings.isMovementAllowed && Settings.isRemoveSpeedEnabled) {
|
|
||||||
player.setWalkSpeed(0.0f);
|
|
||||||
player.setFlySpeed(0.0f);
|
|
||||||
}
|
|
||||||
m.send(player, "unregistered");
|
|
||||||
ConsoleLogger.info(player.getDisplayName() + " unregistered himself");
|
|
||||||
if (Settings.isTeleportToSpawnEnabled && !Settings.noTeleport) {
|
|
||||||
Location spawn = plugin.getSpawnLocation(player);
|
|
||||||
SpawnTeleportEvent tpEvent = new SpawnTeleportEvent(player, player.getLocation(), spawn, false);
|
|
||||||
plugin.getServer().getPluginManager().callEvent(tpEvent);
|
|
||||||
if (!tpEvent.isCancelled()) {
|
|
||||||
if (!tpEvent.getTo().getWorld().getChunkAt(tpEvent.getTo()).isLoaded()) {
|
|
||||||
tpEvent.getTo().getWorld().getChunkAt(tpEvent.getTo()).load();
|
|
||||||
}
|
|
||||||
player.teleport(tpEvent.getTo());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
} else {
|
|
||||||
m.send(player, "wrong_pwd");
|
|
||||||
}
|
|
||||||
} catch (NoSuchAlgorithmException ex) {
|
|
||||||
ConsoleLogger.showError(ex.getMessage());
|
|
||||||
sender.sendMessage("Internal Error please read the server log");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,7 @@ import fr.xephi.authme.process.login.AsyncronousLogin;
|
|||||||
import fr.xephi.authme.process.logout.AsyncronousLogout;
|
import fr.xephi.authme.process.logout.AsyncronousLogout;
|
||||||
import fr.xephi.authme.process.quit.AsyncronousQuit;
|
import fr.xephi.authme.process.quit.AsyncronousQuit;
|
||||||
import fr.xephi.authme.process.register.AsyncronousRegister;
|
import fr.xephi.authme.process.register.AsyncronousRegister;
|
||||||
|
import fr.xephi.authme.process.unregister.AsyncronousUnregister;
|
||||||
import fr.xephi.authme.security.RandomString;
|
import fr.xephi.authme.security.RandomString;
|
||||||
import fr.xephi.authme.settings.Settings;
|
import fr.xephi.authme.settings.Settings;
|
||||||
|
|
||||||
@ -81,4 +82,14 @@ public class Management {
|
|||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void performUnregister(final Player player, final String password, final boolean force) {
|
||||||
|
Bukkit.getScheduler().runTaskAsynchronously(plugin, new Runnable() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
new AsyncronousUnregister(player, password, force, plugin).process();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,119 @@
|
|||||||
|
package fr.xephi.authme.process.unregister;
|
||||||
|
|
||||||
|
import java.security.NoSuchAlgorithmException;
|
||||||
|
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.potion.PotionEffect;
|
||||||
|
import org.bukkit.potion.PotionEffectType;
|
||||||
|
import org.bukkit.scheduler.BukkitScheduler;
|
||||||
|
import org.bukkit.scheduler.BukkitTask;
|
||||||
|
|
||||||
|
import fr.xephi.authme.AuthMe;
|
||||||
|
import fr.xephi.authme.ConsoleLogger;
|
||||||
|
import fr.xephi.authme.Utils;
|
||||||
|
import fr.xephi.authme.Utils.GroupType;
|
||||||
|
import fr.xephi.authme.cache.auth.PlayerCache;
|
||||||
|
import fr.xephi.authme.cache.backup.JsonCache;
|
||||||
|
import fr.xephi.authme.cache.limbo.LimboCache;
|
||||||
|
import fr.xephi.authme.events.SpawnTeleportEvent;
|
||||||
|
import fr.xephi.authme.security.PasswordSecurity;
|
||||||
|
import fr.xephi.authme.settings.Messages;
|
||||||
|
import fr.xephi.authme.settings.Settings;
|
||||||
|
import fr.xephi.authme.task.MessageTask;
|
||||||
|
import fr.xephi.authme.task.TimeoutTask;
|
||||||
|
|
||||||
|
public class AsyncronousUnregister {
|
||||||
|
|
||||||
|
protected Player player;
|
||||||
|
protected String name;
|
||||||
|
private AuthMe plugin;
|
||||||
|
private Messages m = Messages.getInstance();
|
||||||
|
protected String password;
|
||||||
|
protected boolean force;
|
||||||
|
private JsonCache playerCache;
|
||||||
|
|
||||||
|
public AsyncronousUnregister(Player player, String password,
|
||||||
|
boolean force, AuthMe plugin) {
|
||||||
|
this.player = player;
|
||||||
|
this.password = password;
|
||||||
|
this.force = force;
|
||||||
|
name = player.getName().toLowerCase();
|
||||||
|
this.plugin = plugin;
|
||||||
|
this.playerCache = new JsonCache();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected String getIp() {
|
||||||
|
return plugin.getIP(player);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void process() {
|
||||||
|
try {
|
||||||
|
if (force || PasswordSecurity.comparePasswordWithHash(password, PlayerCache.getInstance().getAuth(name).getHash(), player.getName())) {
|
||||||
|
if (!plugin.database.removeAuth(name)) {
|
||||||
|
player.sendMessage("error");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (Settings.isForcedRegistrationEnabled) {
|
||||||
|
if (Settings.isTeleportToSpawnEnabled && !Settings.noTeleport) {
|
||||||
|
Location spawn = plugin.getSpawnLocation(player);
|
||||||
|
SpawnTeleportEvent tpEvent = new SpawnTeleportEvent(player, player.getLocation(), spawn, false);
|
||||||
|
plugin.getServer().getPluginManager().callEvent(tpEvent);
|
||||||
|
if (!tpEvent.isCancelled()) {
|
||||||
|
player.teleport(tpEvent.getTo());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
player.saveData();
|
||||||
|
PlayerCache.getInstance().removePlayer(player.getName().toLowerCase());
|
||||||
|
if (!Settings.getRegisteredGroup.isEmpty())
|
||||||
|
Utils.setGroup(player, GroupType.UNREGISTERED);
|
||||||
|
LimboCache.getInstance().addLimboPlayer(player);
|
||||||
|
int delay = Settings.getRegistrationTimeout * 20;
|
||||||
|
int interval = Settings.getWarnMessageInterval;
|
||||||
|
BukkitScheduler sched = plugin.getServer().getScheduler();
|
||||||
|
if (delay != 0) {
|
||||||
|
BukkitTask id = sched.runTaskLaterAsynchronously(plugin, new TimeoutTask(plugin, name, player), delay);
|
||||||
|
LimboCache.getInstance().getLimboPlayer(name).setTimeoutTaskId(id);
|
||||||
|
}
|
||||||
|
LimboCache.getInstance().getLimboPlayer(name).setMessageTaskId(sched.runTaskAsynchronously(plugin, new MessageTask(plugin, name, m.send("reg_msg"), interval)));
|
||||||
|
m.send(player, "unregistered");
|
||||||
|
ConsoleLogger.info(player.getDisplayName() + " unregistered himself");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!Settings.unRegisteredGroup.isEmpty()) {
|
||||||
|
Utils.setGroup(player, Utils.GroupType.UNREGISTERED);
|
||||||
|
}
|
||||||
|
PlayerCache.getInstance().removePlayer(player.getName().toLowerCase());
|
||||||
|
// check if Player cache File Exist and delete it, preventing
|
||||||
|
// duplication of items
|
||||||
|
if (playerCache.doesCacheExist(player)) {
|
||||||
|
playerCache.removeCache(player);
|
||||||
|
}
|
||||||
|
if (Settings.applyBlindEffect)
|
||||||
|
player.addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, Settings.getRegistrationTimeout * 20, 2));
|
||||||
|
if (!Settings.isMovementAllowed && Settings.isRemoveSpeedEnabled) {
|
||||||
|
player.setWalkSpeed(0.0f);
|
||||||
|
player.setFlySpeed(0.0f);
|
||||||
|
}
|
||||||
|
m.send(player, "unregistered");
|
||||||
|
ConsoleLogger.info(player.getDisplayName() + " unregistered himself");
|
||||||
|
if (Settings.isTeleportToSpawnEnabled && !Settings.noTeleport) {
|
||||||
|
Location spawn = plugin.getSpawnLocation(player);
|
||||||
|
SpawnTeleportEvent tpEvent = new SpawnTeleportEvent(player, player.getLocation(), spawn, false);
|
||||||
|
plugin.getServer().getPluginManager().callEvent(tpEvent);
|
||||||
|
if (!tpEvent.isCancelled()) {
|
||||||
|
if (!tpEvent.getTo().getWorld().getChunkAt(tpEvent.getTo()).isLoaded()) {
|
||||||
|
tpEvent.getTo().getWorld().getChunkAt(tpEvent.getTo()).load();
|
||||||
|
}
|
||||||
|
player.teleport(tpEvent.getTo());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
} else {
|
||||||
|
m.send(player, "wrong_pwd");
|
||||||
|
}
|
||||||
|
} catch (NoSuchAlgorithmException ex) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user