mirror of
https://github.com/plexusorg/Plex.git
synced 2024-12-23 01:27:37 +00:00
half working
This commit is contained in:
parent
03e5833f0a
commit
41e81449bd
@ -20,7 +20,7 @@ public class SQLNotes
|
|||||||
{
|
{
|
||||||
private static final String SELECT = "SELECT * FROM `notes` WHERE uuid=?";
|
private static final String SELECT = "SELECT * FROM `notes` WHERE uuid=?";
|
||||||
|
|
||||||
private static final String INSERT = "INSERT INTO `notes` (`uuid`, `written_by`, `note`, timestamp`) VALUES(?, ?, ?, ?)";
|
private static final String INSERT = "INSERT INTO `notes` (`uuid`, `written_by`, `note`, `timestamp`) VALUES(?, ?, ?, ?)";
|
||||||
private static final String DELETE = "DELETE FROM `notes` WHERE uuid=? AND note=?";
|
private static final String DELETE = "DELETE FROM `notes` WHERE uuid=? AND note=?";
|
||||||
|
|
||||||
public CompletableFuture<List<Note>> getNotes(UUID uuid)
|
public CompletableFuture<List<Note>> getNotes(UUID uuid)
|
||||||
@ -43,7 +43,8 @@ public class SQLNotes
|
|||||||
);
|
);
|
||||||
notes.add(note);
|
notes.add(note);
|
||||||
}
|
}
|
||||||
} catch (SQLException e)
|
}
|
||||||
|
catch (SQLException e)
|
||||||
{
|
{
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
@ -63,7 +64,8 @@ public class SQLNotes
|
|||||||
statement.setString(3, note.getNote());
|
statement.setString(3, note.getNote());
|
||||||
statement.setLong(4, note.getTimestamp().toInstant(ZoneOffset.UTC).toEpochMilli());
|
statement.setLong(4, note.getTimestamp().toInstant(ZoneOffset.UTC).toEpochMilli());
|
||||||
statement.execute();
|
statement.execute();
|
||||||
} catch (SQLException e)
|
}
|
||||||
|
catch (SQLException e)
|
||||||
{
|
{
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
112
src/main/java/dev/plex/command/impl/NotesCMD.java
Normal file
112
src/main/java/dev/plex/command/impl/NotesCMD.java
Normal file
@ -0,0 +1,112 @@
|
|||||||
|
package dev.plex.command.impl;
|
||||||
|
|
||||||
|
import com.google.common.collect.ImmutableList;
|
||||||
|
import dev.plex.cache.DataUtils;
|
||||||
|
import dev.plex.command.PlexCommand;
|
||||||
|
import dev.plex.command.annotation.CommandParameters;
|
||||||
|
import dev.plex.command.annotation.CommandPermissions;
|
||||||
|
import dev.plex.command.annotation.System;
|
||||||
|
import dev.plex.player.PlexPlayer;
|
||||||
|
import dev.plex.punishment.extra.Note;
|
||||||
|
import dev.plex.rank.enums.Rank;
|
||||||
|
import dev.plex.util.PlexUtils;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.time.format.DateTimeFormatter;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.UUID;
|
||||||
|
import net.kyori.adventure.text.Component;
|
||||||
|
import net.kyori.adventure.text.format.NamedTextColor;
|
||||||
|
import org.apache.commons.lang3.ArrayUtils;
|
||||||
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
import org.bukkit.Bukkit;
|
||||||
|
import org.bukkit.command.CommandSender;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.jetbrains.annotations.NotNull;
|
||||||
|
import org.jetbrains.annotations.Nullable;
|
||||||
|
|
||||||
|
@CommandParameters(name = "notes", description = "Manage notes for a player", usage = "/<command> <player> <list | add <note> | remove <id> | clear>")
|
||||||
|
@CommandPermissions(level = Rank.ADMIN, permission = "plex.notes")
|
||||||
|
public class NotesCMD extends PlexCommand
|
||||||
|
{
|
||||||
|
private static final DateTimeFormatter DATE_FORMAT = DateTimeFormatter.ofPattern("MM/dd/yyyy 'at' hh:mm:ss a");
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected Component execute(@NotNull CommandSender sender, @Nullable Player playerSender, String[] args)
|
||||||
|
{
|
||||||
|
if (args.length < 2)
|
||||||
|
{
|
||||||
|
return usage();
|
||||||
|
}
|
||||||
|
|
||||||
|
Player player = getNonNullPlayer(args[0]);
|
||||||
|
PlexPlayer plexPlayer = getPlexPlayer(player);
|
||||||
|
|
||||||
|
switch (args[1].toLowerCase())
|
||||||
|
{
|
||||||
|
case "list":
|
||||||
|
{
|
||||||
|
Component noteList = Component.text("Player notes for: " + plexPlayer.getName()).color(NamedTextColor.GREEN);
|
||||||
|
int id = 1;
|
||||||
|
for (Note note : plexPlayer.getNotes())
|
||||||
|
{
|
||||||
|
Component noteLine = Component.text(id + ". " + note.getWrittenBy() + ": " + note.getNote()).color(NamedTextColor.GOLD);
|
||||||
|
noteList.append(Component.empty()).append(noteLine);
|
||||||
|
id++;
|
||||||
|
}
|
||||||
|
send(sender, noteList);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
case "add":
|
||||||
|
{
|
||||||
|
if (args.length < 3)
|
||||||
|
{
|
||||||
|
return usage();
|
||||||
|
}
|
||||||
|
String content = StringUtils.join(ArrayUtils.subarray(args, 2, args.length), " ");
|
||||||
|
if (playerSender != null)
|
||||||
|
{
|
||||||
|
Note note = new Note(UUID.fromString(plexPlayer.getUuid()), content, playerSender.getUniqueId(), LocalDateTime.now());
|
||||||
|
plexPlayer.getNotes().add(note);
|
||||||
|
plugin.getSqlNotes().addNote(note);
|
||||||
|
return Component.text("Note added.").color(NamedTextColor.GREEN);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
case "remove":
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
case "clear":
|
||||||
|
{
|
||||||
|
int count = plexPlayer.getNotes().size();
|
||||||
|
final List<Note> notes = plexPlayer.getNotes();
|
||||||
|
for (Note note : notes)
|
||||||
|
{
|
||||||
|
plexPlayer.getNotes().remove(note);
|
||||||
|
count++;
|
||||||
|
}
|
||||||
|
DataUtils.update(plexPlayer);
|
||||||
|
return Component.text("Cleared " + count + " note(s).").color(NamedTextColor.GREEN);
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
{
|
||||||
|
return usage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public @NotNull List<String> tabComplete(@NotNull CommandSender sender, @NotNull String alias, @NotNull String[] args) throws IllegalArgumentException
|
||||||
|
{
|
||||||
|
if (args.length == 1)
|
||||||
|
{
|
||||||
|
return PlexUtils.getPlayerNameList();
|
||||||
|
}
|
||||||
|
if (args.length == 2)
|
||||||
|
{
|
||||||
|
return Arrays.asList("list", "add", "remove", "clear");
|
||||||
|
}
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
}
|
@ -77,6 +77,7 @@ public class SQLConnection extends PlexBase
|
|||||||
"`endDate` BIGINT" +
|
"`endDate` BIGINT" +
|
||||||
");").execute();
|
");").execute();
|
||||||
con.prepareStatement("CREATE TABLE IF NOT EXISTS `notes` (" +
|
con.prepareStatement("CREATE TABLE IF NOT EXISTS `notes` (" +
|
||||||
|
"`id` INT NOT NULL AUTO_INCREMENT, " +
|
||||||
"`uuid` VARCHAR(46) NOT NULL, " +
|
"`uuid` VARCHAR(46) NOT NULL, " +
|
||||||
"`written_by` VARCHAR(16), " +
|
"`written_by` VARCHAR(16), " +
|
||||||
"`note` VARCHAR(2000), " +
|
"`note` VARCHAR(2000), " +
|
||||||
|
Loading…
Reference in New Issue
Block a user