Essentials/Essentials/src/main/java/com/earth2me/essentials/commands/Commandmail.java

399 lines
18 KiB
Java
Raw Normal View History

package com.earth2me.essentials.commands;
import com.earth2me.essentials.CommandSource;
import com.earth2me.essentials.Console;
import com.earth2me.essentials.User;
import com.earth2me.essentials.messaging.IMessageRecipient;
import com.earth2me.essentials.textreader.SimpleTextPager;
import com.earth2me.essentials.textreader.SimpleTranslatableText;
import com.earth2me.essentials.utils.DateUtil;
2013-06-08 23:31:19 +02:00
import com.earth2me.essentials.utils.FormatUtil;
import com.earth2me.essentials.utils.NumberUtil;
2013-10-11 04:44:41 +02:00
import com.earth2me.essentials.utils.StringUtil;
import com.google.common.collect.Lists;
import net.ess3.api.TranslatableException;
import net.essentialsx.api.v2.services.mail.MailMessage;
2011-11-18 18:42:26 +01:00
import org.bukkit.Server;
import java.util.ArrayList;
import java.util.Collections;
2014-03-08 07:21:50 +01:00
import java.util.List;
import java.util.ListIterator;
2014-04-13 07:53:11 +02:00
import java.util.UUID;
2014-03-08 07:21:50 +01:00
2015-04-15 06:06:16 +02:00
public class Commandmail extends EssentialsCommand {
private static int mailsPerMinute = 0;
private static long timestamp = 0;
public Commandmail() {
super("mail");
}
@Override
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception {
if (args.length >= 1 && "read".equalsIgnoreCase(args[0])) {
final ArrayList<MailMessage> mail = user.getMailMessages();
if (mail == null || mail.size() == 0) {
user.sendTl("noMail");
throw new NoChargeException();
}
final SimpleTranslatableText input = new SimpleTranslatableText();
final ListIterator<MailMessage> iterator = mail.listIterator();
while (iterator.hasNext()) {
final MailMessage mailObj = iterator.next();
if (mailObj.isExpired()) {
iterator.remove();
continue;
}
input.addLine(ess.getMail().getMailTlKey(mailObj), ess.getMail().getMailTlArgs(mailObj));
iterator.set(new MailMessage(true, mailObj.isLegacy(), mailObj.getSenderUsername(),
mailObj.getSenderUUID(), mailObj.getTimeSent(), mailObj.getTimeExpire(), mailObj.getMessage()));
}
if (input.getLines().isEmpty()) {
user.sendTl("noMail");
2015-04-15 06:06:16 +02:00
throw new NoChargeException();
}
final SimpleTextPager pager = new SimpleTextPager(input);
pager.showPage(user.getSource(), args.length > 1 ? args[1] : null, commandLabel + " " + args[0]);
2015-04-15 06:06:16 +02:00
user.sendTl("mailClear");
user.setMailList(mail);
2015-04-15 06:06:16 +02:00
return;
}
if (args.length >= 3 && "send".equalsIgnoreCase(args[0])) {
if (!user.isAuthorized("essentials.mail.send")) {
throw new TranslatableException("noPerm", "essentials.mail.send");
2015-04-15 06:06:16 +02:00
}
if (user.isMuted()) {
2020-10-03 19:46:05 +02:00
final String dateDiff = user.getMuteTimeout() > 0 ? DateUtil.formatDateDiff(user.getMuteTimeout()) : null;
if (dateDiff == null) {
throw new TranslatableException(user.hasMuteReason() ? "voiceSilencedReason" : "voiceSilenced", user.getMuteReason());
}
throw new TranslatableException(user.hasMuteReason() ? "voiceSilencedReasonTime" : "voiceSilencedTime", dateDiff, user.getMuteReason());
2015-04-15 06:06:16 +02:00
}
2020-10-03 19:46:05 +02:00
final User u;
Use playerNeverOnServer message where appropriate (#3489) ### Use `playerNeverOnServer` message where it should be used: ### https://github.com/EssentialsX/Essentials/pull/3489/commits/309e1c470d4bcfe2a2186f9720ce33f26441b802 `playerNeverOnServer=\u00a74Player\u00a7c {0} \u00a74was never on this server.` is currently used in the **Commandmail** class at [Line 61](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L61), [Line 116](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L116) and [Line 129](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L129) however is **not called** as PlayerNotFoundException is thrown by `#getPlayer` breaking current execution (below). ``` Commandmail#run() throws Exception { ... User u = getPlayer(server, args[1], true, true); // throws PlayerNotFoundException if (u == null) { throw new Exception(tl("playerNeverOnServer", args[1])); } ... } ``` Before changes: ![bm](https://user-images.githubusercontent.com/24858857/87236993-6b679180-c3e8-11ea-83a7-002194f5c467.png) After changes: ![mailafter](https://user-images.githubusercontent.com/24858857/87237060-3576dd00-c3e9-11ea-8020-d5a80a958ca0.png) -------------------------- **Commandseen** currently throws the default PlayerNotFoundException `playerNotFound` message for players that have not logged on to the server where it would be more appropriate to use the `playerNeverOnServer` message. ``` Commandseen#run throws Exception { ... AsyncRunnable#run() { User userFromBukkit = ess.getUserMap().getUserFromBukkit(args[0]); <-- *** try { if (userFromBukkit != null) { <--- *** showUserSeen(userFromBukkit); } else { showUserSeen(getPlayer(server, sender, args, 0)); <--- *** } } catch (Exception e) { ess.showError(sender, e, commandLabel); } } private void showUserSeen(User user) throws Exception { if (user == null) { <--- *** throw new PlayerNotFoundException(); } showSeenMessage(server, sender, user, showBan, showIp, showLocation); } ... } ``` **`<-- ***`:** `usersFromBukkit` null check is performed before `#showUserSeen` so there is no need for another null check. `EssentialsCommand#getPlayer` throws **NotEnoughArguementsException** or **PlayerNotFoundException** after [arg checks](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java#L88) and [player checks](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java#L103). https://github.com/EssentialsX/Essentials/pull/3489#issuecomment-657138524 Before changes: ![sb](https://user-images.githubusercontent.com/24858857/87237038-e9c43380-c3e8-11ea-8294-8f91e8b6f25d.png) After changes: ![seenafter](https://user-images.githubusercontent.com/24858857/87237067-53444200-c3e9-11ea-92c5-1784b4dcd739.png) ---------------- ### 725128e Catch more specfic exception `PlayerNotFoundException`. Before changes: ![banbefore](https://user-images.githubusercontent.com/24858857/87237021-c1d4d000-c3e8-11ea-99e4-eb97b5a5ba6d.png) After changes: ![afterunban](https://user-images.githubusercontent.com/24858857/87237081-8d154880-c3e9-11ea-9d35-a25b8c105969.png)
2020-08-04 16:30:05 +02:00
try {
u = getPlayer(server, args[1], true, true);
2020-10-03 19:46:05 +02:00
} catch (final PlayerNotFoundException e) {
throw new TranslatableException("playerNeverOnServer", args[1]);
2015-04-15 06:06:16 +02:00
}
final String msg = FormatUtil.formatMessage(user, "essentials.mail", StringUtil.sanitizeString(FormatUtil.stripFormat(getFinalArg(args, 2))));
if (msg.length() > 1000) {
throw new TranslatableException("mailTooLong");
2015-04-15 06:06:16 +02:00
}
if (!u.isIgnoredPlayer(user)) {
if (Math.abs(System.currentTimeMillis() - timestamp) > 60000) {
timestamp = System.currentTimeMillis();
mailsPerMinute = 0;
}
mailsPerMinute++;
if (mailsPerMinute > ess.getSettings().getMailsPerMinute()) {
throw new TranslatableException("mailDelay", ess.getSettings().getMailsPerMinute());
2015-04-15 06:06:16 +02:00
}
u.sendMail(user, msg);
2015-04-15 06:06:16 +02:00
}
user.sendTl("mailSentTo", u.getDisplayName(), u.getName());
user.sendMessage(msg);
return;
}
if (args.length >= 4 && "sendtemp".equalsIgnoreCase(args[0])) {
if (!user.isAuthorized("essentials.mail.sendtemp")) {
throw new TranslatableException("noPerm", "essentials.mail.sendtemp");
}
if (user.isMuted()) {
final String dateDiff = user.getMuteTimeout() > 0 ? DateUtil.formatDateDiff(user.getMuteTimeout()) : null;
if (dateDiff == null) {
throw new TranslatableException(user.hasMuteReason() ? "voiceSilencedReason" : "voiceSilenced", user.getMuteReason());
}
throw new TranslatableException(user.hasMuteReason() ? "voiceSilencedReasonTime" : "voiceSilencedTime", dateDiff, user.getMuteReason());
}
final User u;
try {
u = getPlayer(server, args[1], true, true);
} catch (final PlayerNotFoundException e) {
throw new TranslatableException("playerNeverOnServer", args[1]);
}
final long dateDiff = DateUtil.parseDateDiff(args[2], true);
final String msg = FormatUtil.formatMessage(user, "essentials.mail", StringUtil.sanitizeString(FormatUtil.stripFormat(getFinalArg(args, 3))));
if (msg.length() > 1000) {
throw new TranslatableException("mailTooLong");
}
if (!u.isIgnoredPlayer(user)) {
if (Math.abs(System.currentTimeMillis() - timestamp) > 60000) {
timestamp = System.currentTimeMillis();
mailsPerMinute = 0;
}
mailsPerMinute++;
if (mailsPerMinute > ess.getSettings().getMailsPerMinute()) {
throw new TranslatableException("mailDelay", ess.getSettings().getMailsPerMinute());
}
u.sendMail(user, msg, dateDiff);
}
user.sendTl("mailSentToExpire", u.getDisplayName(), DateUtil.formatDateDiff(dateDiff), u.getName());
user.sendMessage(msg);
2015-04-15 06:06:16 +02:00
return;
}
if (args.length > 1 && "sendall".equalsIgnoreCase(args[0])) {
if (!user.isAuthorized("essentials.mail.sendall")) {
throw new TranslatableException("noPerm", "essentials.mail.sendall");
2015-04-15 06:06:16 +02:00
}
ess.runTaskAsynchronously(new SendAll(user,
FormatUtil.formatMessage(user, "essentials.mail",
StringUtil.sanitizeString(FormatUtil.stripFormat(getFinalArg(args, 1)))), 0));
user.sendTl("mailSent");
return;
}
if (args.length >= 3 && "sendtempall".equalsIgnoreCase(args[0])) {
if (!user.isAuthorized("essentials.mail.sendtempall")) {
throw new TranslatableException("noPerm", "essentials.mail.sendtempall");
}
ess.runTaskAsynchronously(new SendAll(user,
FormatUtil.formatMessage(user, "essentials.mail",
StringUtil.sanitizeString(FormatUtil.stripFormat(getFinalArg(args, 2)))), DateUtil.parseDateDiff(args[1], true)));
user.sendTl("mailSent");
2015-04-15 06:06:16 +02:00
return;
}
if (args.length >= 1 && "clear".equalsIgnoreCase(args[0])) {
User mailUser = user;
int toRemove = -1;
if (args.length > 1) {
if (NumberUtil.isPositiveInt(args[1])) {
toRemove = Integer.parseInt(args[1]);
} else if (!user.isAuthorized("essentials.mail.clear.others")) {
throw new TranslatableException("noPerm", "essentials.mail.clear.others");
} else {
mailUser = getPlayer(ess.getServer(), user, args, 1, true);
if (args.length > 2 && NumberUtil.isPositiveInt(args[2])) {
toRemove = Integer.parseInt(args[2]);
}
}
}
final ArrayList<MailMessage> mails = mailUser.getMailMessages();
if (mails == null || mails.isEmpty()) {
user.sendTl(mailUser == user ? "noMail" : "noMailOther", mailUser.getDisplayName());
throw new NoChargeException();
}
if (toRemove > 0) {
if (toRemove > mails.size()) {
user.sendTl("mailClearIndex", mails.size());
throw new NoChargeException();
}
mails.remove(toRemove - 1);
mailUser.setMailList(mails);
} else {
mailUser.setMailList(null);
}
user.sendTl("mailCleared");
2015-04-15 06:06:16 +02:00
return;
}
if (args.length >= 1 && "clearall".equalsIgnoreCase(args[0])){
if (!user.isAuthorized("essentials.mail.clearall")) {
throw new TranslatableException("noPerm", "essentials.mail.clearall");
}
ess.runTaskAsynchronously(new ClearAll());
user.sendTl("mailClearedAll");
return;
}
2015-04-15 06:06:16 +02:00
throw new NotEnoughArgumentsException();
}
@Override
2020-10-03 19:46:05 +02:00
protected void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception {
2015-04-15 06:06:16 +02:00
if (args.length >= 1 && "read".equalsIgnoreCase(args[0])) {
throw new TranslatableException("onlyPlayers", commandLabel + " read");
} else if (args.length > 1 && "clear".equalsIgnoreCase(args[0])) {
final User mailUser = getPlayer(server, args[1], true, true);
final int toRemove = args.length > 2 ? NumberUtil.isPositiveInt(args[2]) ? Integer.parseInt(args[2]) : -1 : -1;
final ArrayList<MailMessage> mails = mailUser.getMailMessages();
if (mails == null || mails.isEmpty()) {
sender.sendTl("noMailOther", mailUser.getDisplayName());
throw new NoChargeException();
}
if (toRemove > 0) {
if (toRemove > mails.size()) {
sender.sendTl("mailClearIndex", mails.size());
throw new NoChargeException();
}
mails.remove(toRemove - 1);
mailUser.setMailList(mails);
} else {
mailUser.setMailList(null);
}
sender.sendTl("mailCleared");
return;
} else if (args.length >= 1 && "clearall".equalsIgnoreCase(args[0])){
ess.runTaskAsynchronously(new ClearAll());
sender.sendTl("mailClearedAll");
return;
2015-04-15 06:06:16 +02:00
} else if (args.length >= 3 && "send".equalsIgnoreCase(args[0])) {
2020-10-03 19:46:05 +02:00
final User u;
Use playerNeverOnServer message where appropriate (#3489) ### Use `playerNeverOnServer` message where it should be used: ### https://github.com/EssentialsX/Essentials/pull/3489/commits/309e1c470d4bcfe2a2186f9720ce33f26441b802 `playerNeverOnServer=\u00a74Player\u00a7c {0} \u00a74was never on this server.` is currently used in the **Commandmail** class at [Line 61](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L61), [Line 116](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L116) and [Line 129](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L129) however is **not called** as PlayerNotFoundException is thrown by `#getPlayer` breaking current execution (below). ``` Commandmail#run() throws Exception { ... User u = getPlayer(server, args[1], true, true); // throws PlayerNotFoundException if (u == null) { throw new Exception(tl("playerNeverOnServer", args[1])); } ... } ``` Before changes: ![bm](https://user-images.githubusercontent.com/24858857/87236993-6b679180-c3e8-11ea-83a7-002194f5c467.png) After changes: ![mailafter](https://user-images.githubusercontent.com/24858857/87237060-3576dd00-c3e9-11ea-8020-d5a80a958ca0.png) -------------------------- **Commandseen** currently throws the default PlayerNotFoundException `playerNotFound` message for players that have not logged on to the server where it would be more appropriate to use the `playerNeverOnServer` message. ``` Commandseen#run throws Exception { ... AsyncRunnable#run() { User userFromBukkit = ess.getUserMap().getUserFromBukkit(args[0]); <-- *** try { if (userFromBukkit != null) { <--- *** showUserSeen(userFromBukkit); } else { showUserSeen(getPlayer(server, sender, args, 0)); <--- *** } } catch (Exception e) { ess.showError(sender, e, commandLabel); } } private void showUserSeen(User user) throws Exception { if (user == null) { <--- *** throw new PlayerNotFoundException(); } showSeenMessage(server, sender, user, showBan, showIp, showLocation); } ... } ``` **`<-- ***`:** `usersFromBukkit` null check is performed before `#showUserSeen` so there is no need for another null check. `EssentialsCommand#getPlayer` throws **NotEnoughArguementsException** or **PlayerNotFoundException** after [arg checks](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java#L88) and [player checks](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java#L103). https://github.com/EssentialsX/Essentials/pull/3489#issuecomment-657138524 Before changes: ![sb](https://user-images.githubusercontent.com/24858857/87237038-e9c43380-c3e8-11ea-8294-8f91e8b6f25d.png) After changes: ![seenafter](https://user-images.githubusercontent.com/24858857/87237067-53444200-c3e9-11ea-92c5-1784b4dcd739.png) ---------------- ### 725128e Catch more specfic exception `PlayerNotFoundException`. Before changes: ![banbefore](https://user-images.githubusercontent.com/24858857/87237021-c1d4d000-c3e8-11ea-99e4-eb97b5a5ba6d.png) After changes: ![afterunban](https://user-images.githubusercontent.com/24858857/87237081-8d154880-c3e9-11ea-9d35-a25b8c105969.png)
2020-08-04 16:30:05 +02:00
try {
u = getPlayer(server, args[1], true, true);
2020-10-03 19:46:05 +02:00
} catch (final PlayerNotFoundException e) {
throw new TranslatableException("playerNeverOnServer", args[1]);
2015-04-15 06:06:16 +02:00
}
u.sendMail(Console.getInstance(), FormatUtil.replaceFormat(getFinalArg(args, 2)));
sender.sendTl("mailSent");
return;
} else if (args.length >= 4 && "sendtemp".equalsIgnoreCase(args[0])) {
final User u;
try {
u = getPlayer(server, args[1], true, true);
} catch (final PlayerNotFoundException e) {
throw new TranslatableException("playerNeverOnServer", args[1]);
}
final long dateDiff = DateUtil.parseDateDiff(args[2], true);
u.sendMail(Console.getInstance(), FormatUtil.replaceFormat(getFinalArg(args, 3)), dateDiff);
sender.sendTl("mailSent");
2015-04-15 06:06:16 +02:00
return;
} else if (args.length >= 2 && "sendall".equalsIgnoreCase(args[0])) {
ess.runTaskAsynchronously(new SendAll(Console.getInstance(), FormatUtil.replaceFormat(getFinalArg(args, 1)), 0));
sender.sendTl("mailSent");
return;
} else if (args.length >= 3 && "sendtempall".equalsIgnoreCase(args[0])) {
final long dateDiff = DateUtil.parseDateDiff(args[1], true);
ess.runTaskAsynchronously(new SendAll(Console.getInstance(), FormatUtil.replaceFormat(getFinalArg(args, 2)), dateDiff));
sender.sendTl("mailSent");
2015-04-15 06:06:16 +02:00
return;
} else if (args.length >= 2) {
//allow sending from console without "send" argument, since it's the only thing the console can do
2020-10-03 19:46:05 +02:00
final User u;
Use playerNeverOnServer message where appropriate (#3489) ### Use `playerNeverOnServer` message where it should be used: ### https://github.com/EssentialsX/Essentials/pull/3489/commits/309e1c470d4bcfe2a2186f9720ce33f26441b802 `playerNeverOnServer=\u00a74Player\u00a7c {0} \u00a74was never on this server.` is currently used in the **Commandmail** class at [Line 61](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L61), [Line 116](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L116) and [Line 129](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/Commandmail.java#L129) however is **not called** as PlayerNotFoundException is thrown by `#getPlayer` breaking current execution (below). ``` Commandmail#run() throws Exception { ... User u = getPlayer(server, args[1], true, true); // throws PlayerNotFoundException if (u == null) { throw new Exception(tl("playerNeverOnServer", args[1])); } ... } ``` Before changes: ![bm](https://user-images.githubusercontent.com/24858857/87236993-6b679180-c3e8-11ea-83a7-002194f5c467.png) After changes: ![mailafter](https://user-images.githubusercontent.com/24858857/87237060-3576dd00-c3e9-11ea-8020-d5a80a958ca0.png) -------------------------- **Commandseen** currently throws the default PlayerNotFoundException `playerNotFound` message for players that have not logged on to the server where it would be more appropriate to use the `playerNeverOnServer` message. ``` Commandseen#run throws Exception { ... AsyncRunnable#run() { User userFromBukkit = ess.getUserMap().getUserFromBukkit(args[0]); <-- *** try { if (userFromBukkit != null) { <--- *** showUserSeen(userFromBukkit); } else { showUserSeen(getPlayer(server, sender, args, 0)); <--- *** } } catch (Exception e) { ess.showError(sender, e, commandLabel); } } private void showUserSeen(User user) throws Exception { if (user == null) { <--- *** throw new PlayerNotFoundException(); } showSeenMessage(server, sender, user, showBan, showIp, showLocation); } ... } ``` **`<-- ***`:** `usersFromBukkit` null check is performed before `#showUserSeen` so there is no need for another null check. `EssentialsCommand#getPlayer` throws **NotEnoughArguementsException** or **PlayerNotFoundException** after [arg checks](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java#L88) and [player checks](https://github.com/EssentialsX/Essentials/blob/2.x/Essentials/src/com/earth2me/essentials/commands/EssentialsCommand.java#L103). https://github.com/EssentialsX/Essentials/pull/3489#issuecomment-657138524 Before changes: ![sb](https://user-images.githubusercontent.com/24858857/87237038-e9c43380-c3e8-11ea-8294-8f91e8b6f25d.png) After changes: ![seenafter](https://user-images.githubusercontent.com/24858857/87237067-53444200-c3e9-11ea-92c5-1784b4dcd739.png) ---------------- ### 725128e Catch more specfic exception `PlayerNotFoundException`. Before changes: ![banbefore](https://user-images.githubusercontent.com/24858857/87237021-c1d4d000-c3e8-11ea-99e4-eb97b5a5ba6d.png) After changes: ![afterunban](https://user-images.githubusercontent.com/24858857/87237081-8d154880-c3e9-11ea-9d35-a25b8c105969.png)
2020-08-04 16:30:05 +02:00
try {
u = getPlayer(server, args[0], true, true);
2020-10-03 19:46:05 +02:00
} catch (final PlayerNotFoundException e) {
throw new TranslatableException("playerNeverOnServer", args[0]);
2015-04-15 06:06:16 +02:00
}
u.sendMail(Console.getInstance(), FormatUtil.replaceFormat(getFinalArg(args, 1)));
sender.sendTl("mailSent");
2015-04-15 06:06:16 +02:00
return;
}
throw new NotEnoughArgumentsException();
}
private class SendAll implements Runnable {
private final IMessageRecipient messageRecipient;
private final String message;
private final long dateDiff;
SendAll(IMessageRecipient messageRecipient, String message, long dateDiff) {
this.messageRecipient = messageRecipient;
this.message = message;
this.dateDiff = dateDiff;
}
@Override
public void run() {
for (final UUID u : ess.getUsers().getAllUserUUIDs()) {
final User user = ess.getUsers().loadUncachedUser(u);
if (user != null) {
user.sendMail(messageRecipient, message, dateDiff);
}
}
}
}
@Override
protected List<String> getTabCompleteOptions(final Server server, final User user, final String commandLabel, final String[] args) {
if (args.length == 1) {
2020-10-03 19:46:05 +02:00
final List<String> options = Lists.newArrayList("read", "clear");
if (user.isAuthorized("essentials.mail.send")) {
options.add("send");
}
if (user.isAuthorized("essentials.mail.sendtemp")) {
options.add("sendtemp");
}
if (user.isAuthorized("essentials.mail.sendall")) {
options.add("sendall");
}
if (user.isAuthorized("essentials.mail.sendtempall")) {
options.add("sendtempall");
}
if (user.isAuthorized("essentials.mail.clearall")){
options.add("clearall");
}
return options;
} else if (args.length == 2) {
if ((args[0].equalsIgnoreCase("send") && user.isAuthorized("essentials.mail.send")) || (args[0].equalsIgnoreCase("sendtemp") && user.isAuthorized("essentials.mail.sendtemp")) || ((args[0].equalsIgnoreCase("clear"))&& user.isAuthorized("essentials.mail.clear.others"))) {
return getPlayers(server, user);
} else if (args[0].equalsIgnoreCase("sendtempall") && user.isAuthorized("essentials.mail.sendtempall")) {
return COMMON_DATE_DIFFS;
} else if (args[0].equalsIgnoreCase("read")) {
final ArrayList<MailMessage> mail = user.getMailMessages();
final int pages = mail != null ? (mail.size() / 9 + (mail.size() % 9 > 0 ? 1 : 0)) : 0;
if (pages == 0) {
return Lists.newArrayList("0");
} else {
final List<String> options = new ArrayList<>();
for (int i = 0; i < pages; i++) {
options.add(String.valueOf(i + 1));
}
return options;
}
} else if (args[0].equalsIgnoreCase("clear")) {
final ArrayList<MailMessage> mail = user.getMailMessages();
// We show up to 9 mails on a page, we don't need to autocomplete more than that...
if (mail.size() >= 9) {
return Lists.newArrayList("1", "2", "3", "4", "5", "6", "7", "8", "9");
} else {
final List<String> options = new ArrayList<>();
for (int i = 0; i < mail.size(); i++) {
options.add(String.valueOf(i + 1));
}
return options;
}
}
} else if (args.length == 3 && args[0].equalsIgnoreCase("sendtemp") && user.isAuthorized("essentials.mail.sendtemp")) {
return COMMON_DATE_DIFFS;
}
return Collections.emptyList();
}
@Override
protected List<String> getTabCompleteOptions(final Server server, final CommandSource sender, final String commandLabel, final String[] args) {
if (args.length == 1) {
return Lists.newArrayList("send", "sendall", "sendtemp", "sendtempall", "clearall", "clear");
} else if (args.length == 2) {
if (args[0].equalsIgnoreCase("send") || args[0].equalsIgnoreCase("sendtemp") || args[0].equalsIgnoreCase("clear")) {
return getPlayers(server, sender);
} else if (args[0].equalsIgnoreCase("sendtempall")) {
return COMMON_DATE_DIFFS;
}
2021-07-01 21:22:48 +02:00
} else if (args.length == 3 && args[0].equalsIgnoreCase("sendtemp")) {
return COMMON_DATE_DIFFS;
}
return Collections.emptyList();
}
private class ClearAll implements Runnable {
@Override
public void run() {
for (UUID u : ess.getUsers().getAllUserUUIDs()) {
final User user = ess.getUsers().loadUncachedUser(u);
if (user != null) {
user.setMailList(null);
}
}
}
}
}