forked from Fascinated/Bat
add a basic event system to clean up scoresaber score receiving
This commit is contained in:
@ -2,13 +2,14 @@ package cc.fascinated.bat.service;
|
||||
|
||||
import cc.fascinated.bat.command.BatCommand;
|
||||
import cc.fascinated.bat.command.BatSubCommand;
|
||||
import cc.fascinated.bat.command.impl.global.beatsaber.scoresaber.LinkSubCommand;
|
||||
import cc.fascinated.bat.command.impl.global.beatsaber.scoresaber.ScoreSaberCommand;
|
||||
import cc.fascinated.bat.command.impl.global.beatsaber.scoresaber.UserSubCommand;
|
||||
import cc.fascinated.bat.command.impl.guild.beatsaber.scoresaber.ScoreFeedChannelCommand;
|
||||
import cc.fascinated.bat.command.impl.guild.beatsaber.scoresaber.ScoreFeedClearUsersCommand;
|
||||
import cc.fascinated.bat.command.impl.guild.beatsaber.scoresaber.ScoreFeedUserCommand;
|
||||
import cc.fascinated.bat.common.EmbedUtils;
|
||||
import cc.fascinated.bat.features.scoresaber.command.scoresaber.LinkSubCommand;
|
||||
import cc.fascinated.bat.features.scoresaber.command.scoresaber.ScoreSaberCommand;
|
||||
import cc.fascinated.bat.features.scoresaber.command.scoresaber.UserSubCommand;
|
||||
import cc.fascinated.bat.features.scoresaber.command.userfeed.ScoreFeedChannelCommand;
|
||||
import cc.fascinated.bat.features.scoresaber.command.userfeed.ScoreFeedClearUsersCommand;
|
||||
import cc.fascinated.bat.features.scoresaber.command.userfeed.ScoreFeedUserCommand;
|
||||
import cc.fascinated.bat.features.scoresaber.command.userfeed.ScoreSaberUserFeedCommand;
|
||||
import cc.fascinated.bat.model.guild.BatGuild;
|
||||
import cc.fascinated.bat.model.user.BatUser;
|
||||
import lombok.NonNull;
|
||||
@ -47,16 +48,10 @@ public class CommandService extends ListenerAdapter {
|
||||
*/
|
||||
private final UserService userService;
|
||||
|
||||
/**
|
||||
* The application context to use
|
||||
*/
|
||||
private final ApplicationContext context;
|
||||
|
||||
@Autowired
|
||||
public CommandService(@NonNull GuildService guildService, @NonNull UserService userService, @NonNull ApplicationContext context) {
|
||||
this.guildService = guildService;
|
||||
this.userService = userService;
|
||||
this.context = context;
|
||||
DiscordService.JDA.addEventListener(this);
|
||||
|
||||
// Guild commands
|
||||
@ -66,9 +61,11 @@ public class CommandService extends ListenerAdapter {
|
||||
registerCommand(context.getBean(ScoreSaberCommand.class)
|
||||
.addSubCommand("link", context.getBean(LinkSubCommand.class))
|
||||
.addSubCommand("user", context.getBean(UserSubCommand.class))
|
||||
.addSubCommand("score-feed-user", context.getBean(ScoreFeedUserCommand.class))
|
||||
.addSubCommand("score-feed-channel", context.getBean(ScoreFeedChannelCommand.class))
|
||||
.addSubCommand("score-feed-clear-users", context.getBean(ScoreFeedClearUsersCommand.class))
|
||||
);
|
||||
registerCommand(context.getBean(ScoreSaberUserFeedCommand.class)
|
||||
.addSubCommand("user", context.getBean(ScoreFeedUserCommand.class))
|
||||
.addSubCommand("channel", context.getBean(ScoreFeedChannelCommand.class))
|
||||
.addSubCommand("clear-users", context.getBean(ScoreFeedClearUsersCommand.class))
|
||||
);
|
||||
|
||||
registerSlashCommands(); // Register all slash commands
|
||||
|
Reference in New Issue
Block a user