summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/commands/Commandtpaccept.java
blob: 9dc6ede85e43b42e906269ba6d9e5676806257d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package net.ess3.commands;

import static net.ess3.I18n._;
import net.ess3.api.ChargeException;
import net.ess3.api.ISettings;
import net.ess3.api.IUser;
import net.ess3.economy.Trade;
import net.ess3.permissions.Permissions;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;


public class Commandtpaccept extends EssentialsCommand
{
	@Override
	public void run(final IUser user, final String commandLabel, final String[] args) throws Exception
	{
		if (user.getTeleportRequester() == null)
		{
			throw new Exception(_("§4You do not have a pending request."));
		}

		final IUser target = user.getTeleportRequester();
		if (target == null || !target.isOnline() || (user.isTpRequestHere() && !Permissions.TPAHERE.isAuthorized(
				target)) || (!user.isTpRequestHere() && !Permissions.TPA.isAuthorized(target) && !Permissions.TPAALL.isAuthorized(target)))
		{
			throw new Exception(_("§4You do not have a pending request."));
		}

		if (args.length > 0 && !target.getName().contains(args[0]))
		{
			throw new Exception(_("§4You do not have a pending request."));
		}


		ISettings settings = ess.getSettings();
		int tpaAcceptCancellation = settings.getData().getCommands().getTeleport().getRequestTimeout();

		if (tpaAcceptCancellation != 0 && (System.currentTimeMillis() - user.getTeleportRequestTime()) / 1000 > tpaAcceptCancellation)
		{
			user.requestTeleport(null, false);
			throw new Exception(_("§4Teleport request has timed out."));
		}

		final Trade charge = new Trade(commandName, ess);
		user.sendMessage(_("§6Teleport request accepted."));
		target.sendMessage(_("§c{0} §6accepted your teleport request.", user.getPlayer().getDisplayName()));

		try
		{
			if (user.isTpRequestHere())
			{
				target.getTeleport().teleportToMe(user, charge, TeleportCause.COMMAND);
			}
			else
			{
				target.getTeleport().teleport(user.getPlayer(), charge, TeleportCause.COMMAND);
			}
		}
		catch (ChargeException ex)
		{
			user.sendMessage(_("§4Pending teleportation request cancelled."));
			//ess.showError(target, ex, commandLabel); TODO: equivalent to ess.showError() could not be found?
		}
		user.requestTeleport(null, false);
		throw new NoChargeException();
	}
}