mirror of
https://github.com/LuckPerms/LuckPerms.git
synced 2024-11-24 11:38:40 +01:00
Format times in /lp log into a shorter form
This commit is contained in:
parent
b65d2262bf
commit
36d292747a
@ -89,7 +89,9 @@ public class LogGroupHistory extends SubCommand<Log> {
|
||||
Message.LOG_HISTORY_GROUP_HEADER.send(sender, name, page, maxPage);
|
||||
|
||||
for (Map.Entry<Integer, LogEntry> e : entries.entrySet()) {
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatDateDiff(e.getValue().getTimestamp()), e.getValue().getFormatted());
|
||||
long time = e.getValue().getTimestamp();
|
||||
long now = DateUtil.unixSecondsNow();
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatTimeShort(now - time), e.getValue().getFormatted());
|
||||
}
|
||||
|
||||
return CommandResult.SUCCESS;
|
||||
|
@ -142,7 +142,9 @@ public class LogRecent extends SubCommand<Log> {
|
||||
}
|
||||
|
||||
for (Map.Entry<Integer, LogEntry> e : entries.entrySet()) {
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatDateDiff(e.getValue().getTimestamp()), e.getValue().getFormatted());
|
||||
long time = e.getValue().getTimestamp();
|
||||
long now = DateUtil.unixSecondsNow();
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatTimeShort(now - time), e.getValue().getFormatted());
|
||||
}
|
||||
return CommandResult.SUCCESS;
|
||||
}
|
||||
|
@ -81,7 +81,9 @@ public class LogSearch extends SubCommand<Log> {
|
||||
Message.LOG_SEARCH_HEADER.send(sender, query, page, maxPage);
|
||||
|
||||
for (Map.Entry<Integer, LogEntry> e : entries.entrySet()) {
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatDateDiff(e.getValue().getTimestamp()), e.getValue().getFormatted());
|
||||
long time = e.getValue().getTimestamp();
|
||||
long now = DateUtil.unixSecondsNow();
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatTimeShort(now - time), e.getValue().getFormatted());
|
||||
}
|
||||
|
||||
return CommandResult.SUCCESS;
|
||||
|
@ -89,7 +89,9 @@ public class LogTrackHistory extends SubCommand<Log> {
|
||||
Message.LOG_HISTORY_TRACK_HEADER.send(sender, name, page, maxPage);
|
||||
|
||||
for (Map.Entry<Integer, LogEntry> e : entries.entrySet()) {
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatDateDiff(e.getValue().getTimestamp()), e.getValue().getFormatted());
|
||||
long time = e.getValue().getTimestamp();
|
||||
long now = DateUtil.unixSecondsNow();
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatTimeShort(now - time), e.getValue().getFormatted());
|
||||
}
|
||||
|
||||
return CommandResult.SUCCESS;
|
||||
|
@ -115,7 +115,9 @@ public class LogUserHistory extends SubCommand<Log> {
|
||||
Message.LOG_HISTORY_USER_HEADER.send(sender, name, page, maxPage);
|
||||
|
||||
for (Map.Entry<Integer, LogEntry> e : entries.entrySet()) {
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatDateDiff(e.getValue().getTimestamp()), e.getValue().getFormatted());
|
||||
long time = e.getValue().getTimestamp();
|
||||
long now = DateUtil.unixSecondsNow();
|
||||
Message.LOG_ENTRY.send(sender, e.getKey(), DateUtil.formatTimeShort(now - time), e.getValue().getFormatted());
|
||||
}
|
||||
|
||||
return CommandResult.SUCCESS;
|
||||
|
@ -74,7 +74,7 @@ public class InfoCommand extends SingleCommand {
|
||||
c.get(ConfigKeys.SERVER),
|
||||
plugin.getPlayerCount(),
|
||||
plugin.getUniqueConnections().size(),
|
||||
DateUtil.formatTime((System.currentTimeMillis() - plugin.getStartTime()) / 1000L),
|
||||
DateUtil.formatTimeShort((System.currentTimeMillis() - plugin.getStartTime()) / 1000L),
|
||||
plugin.getUserManager().getAll().size(),
|
||||
plugin.getGroupManager().getAll().size(),
|
||||
plugin.getTrackManager().getAll().size(),
|
||||
|
@ -158,19 +158,40 @@ public class DateUtil {
|
||||
return diff;
|
||||
}
|
||||
|
||||
public static String formatDateDiff(long unixTime) {
|
||||
Calendar c = new GregorianCalendar();
|
||||
c.setTimeInMillis(unixTime * 1000);
|
||||
public static String formatDateDiff(long seconds) {
|
||||
Calendar now = new GregorianCalendar();
|
||||
return DateUtil.formatDateDiff(now, c);
|
||||
Calendar then = new GregorianCalendar();
|
||||
then.setTimeInMillis(seconds * 1000L);
|
||||
return DateUtil.formatDateDiff(now, then);
|
||||
}
|
||||
|
||||
public static String formatTime(long seconds) {
|
||||
Calendar c = new GregorianCalendar();
|
||||
c.setTimeInMillis(0L);
|
||||
Calendar c2 = new GregorianCalendar();
|
||||
c2.setTimeInMillis(seconds * 1000L);
|
||||
return DateUtil.formatDateDiff(c, c2);
|
||||
public static String formatTimeShort(long seconds) {
|
||||
if (seconds == 0) {
|
||||
return "0s";
|
||||
}
|
||||
|
||||
long minute = seconds / 60;
|
||||
seconds = seconds % 60;
|
||||
long hour = minute / 60;
|
||||
minute = minute % 60;
|
||||
long day = hour / 24;
|
||||
hour = hour % 24;
|
||||
|
||||
StringBuilder time = new StringBuilder();
|
||||
if (day != 0) {
|
||||
time.append(day).append("d ");
|
||||
}
|
||||
if (hour != 0) {
|
||||
time.append(hour).append("h ");
|
||||
}
|
||||
if (minute != 0) {
|
||||
time.append(minute).append("m ");
|
||||
}
|
||||
if (seconds != 0) {
|
||||
time.append(seconds).append("s");
|
||||
}
|
||||
|
||||
return time.toString().trim();
|
||||
}
|
||||
|
||||
private static String formatDateDiff(Calendar fromDate, Calendar toDate) {
|
||||
|
@ -113,7 +113,7 @@ public class VerboseListener {
|
||||
String startDate = DATE_FORMAT.format(new Date(startTime));
|
||||
String endDate = DATE_FORMAT.format(new Date(now));
|
||||
long secondsTaken = (now - startTime) / 1000L;
|
||||
String duration = DateUtil.formatTime(secondsTaken);
|
||||
String duration = DateUtil.formatTimeShort(secondsTaken);
|
||||
|
||||
String filter = this.filter;
|
||||
if (filter == null || filter.equals("")){
|
||||
|
Loading…
Reference in New Issue
Block a user