com.github.twitch4j.helix.webhooks.topics.ChannelBanTopic Maven / Gradle / Ivy
The newest version!
package com.github.twitch4j.helix.webhooks.topics;
import com.github.twitch4j.helix.domain.ModeratorEventList;
import lombok.Getter;
import lombok.NonNull;
import org.jetbrains.annotations.ApiStatus;
import java.util.Optional;
import java.util.TreeMap;
/**
* Notifies when a broadcaster bans or un-bans people in their channel.
*
* @deprecated Twitch decommissioned this API; please migrate to EventSub
*/
@Getter
@Deprecated
@ApiStatus.ScheduledForRemoval(inVersion = "2.0.0")
public class ChannelBanTopic extends TwitchWebhookTopic {
public static final String PATH = "/moderation/banned/events";
private static TreeMap mapParameters(String broadcasterId, String userId) {
TreeMap parameterMap = new TreeMap<>();
parameterMap.put("broadcaster_id", broadcasterId);
parameterMap.put("first", 1);
parameterMap.put("user_id", userId);
return parameterMap;
}
/**
* @return The ID of the channel for which to monitor ban events.
*/
private String broadcasterId;
/**
* @return The user ID of the moderator added or removed.
*/
private Optional userId;
/**
* Notifies when a broadcaster bans or un-bans people in their channel.
*
* @param broadcasterId Required. The ID of the channel for which to monitor ban events.
* @param userId Optional. Specifies the user ID of the moderator added or removed.
* @deprecated Will be decommissioned after 2021-09-16 in favor of EventSub
*/
@Deprecated
public ChannelBanTopic(@NonNull String broadcasterId, String userId) {
super(
PATH,
ModeratorEventList.class,
mapParameters(broadcasterId, userId)
);
this.broadcasterId = broadcasterId;
this.userId = Optional.ofNullable(userId);
}
}