处理无法向用户发送私人消息的最佳方法是什么?

时间:2020-04-18 17:01:27

标签: java discord-jda

我正在开发一个不和谐的机器人,该机器人使用私人消息来通知用户是否由主持人警告过。在进行此操作时,我发现机器人在某些极端情况下由于其隐私设置而无法向用户发送消息。如何编写我的代码以打开私人频道,尝试发送消息并处理无法发送的消息?

以下是发送消息的代码:

public static void sendNotification(Warning warning, TextChannel alt) {
    User target = jda.getUserById(warning.getuId());
    if(target == null)
        return;
    target.openPrivateChannel().queue(c -> c.sendMessage(WarningUtil.generateWarningMessage(warning)).queue());
}

1 个答案:

答案 0 :(得分:1)

您可以结合使用flatMaponErrorFlatMap

public RestAction<Message> sendMessage(User user, TextChannel context, String content) {
    return user.openPrivateChannel() // RestAction<PrivateChannel>
        .flatMap((channel) -> channel.sendMessage(content)) // RestAction<Message>
        .onErrorFlatMap(CANNOT_SEND_TO_USER::test,
            (error) -> context.sendMessage("Cannot send direct message to " + user.getAsMention())
        ); // RestAction<Message> (must be the same as above)
}

或者,您也可以使用ErrorHandler

public static void sendMessage(User user, String content) {
    user.openPrivateChannel()
        .flapMap(channel -> channel.sendMessage(content))
        .queue(null, new ErrorHandler()
            .handle(ErrorResponse.CANNOT_SEND_TO_USER,
                (ex) -> System.out.println("Cannot send message to user")));
}