net.dv8tion.jda.internal.entities.SystemMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JDA Show documentation
Show all versions of JDA Show documentation
Java wrapper for the popular chat & VOIP service: Discord https://discord.com
/*
* Copyright 2015 Austin Keener, Michael Ritter, Florian Spieß, and the JDA contributors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.dv8tion.jda.internal.entities;
import net.dv8tion.jda.api.entities.*;
import net.dv8tion.jda.api.entities.channel.concrete.ThreadChannel;
import net.dv8tion.jda.api.entities.channel.middleman.MessageChannel;
import net.dv8tion.jda.api.entities.sticker.StickerItem;
import net.dv8tion.jda.api.interactions.components.LayoutComponent;
import net.dv8tion.jda.api.requests.RestAction;
import net.dv8tion.jda.api.requests.restaction.MessageEditAction;
import net.dv8tion.jda.api.utils.AttachedFile;
import net.dv8tion.jda.api.utils.messages.MessageEditData;
import net.dv8tion.jda.internal.utils.EntityString;
import javax.annotation.Nonnull;
import java.time.OffsetDateTime;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
public class SystemMessage extends ReceivedMessage
{
public SystemMessage(
long id, MessageChannel channel, MessageType type, MessageReference messageReference,
boolean fromWebhook, long applicationId, boolean tts, boolean pinned,
String content, String nonce, User author, Member member, MessageActivity activity, OffsetDateTime editTime,
Mentions mentions, List reactions, List attachments, List embeds,
List stickers, int flags, ThreadChannel startedThread, int position)
{
super(id, channel, type, messageReference, fromWebhook, applicationId, tts, pinned, content, nonce, author, member,
activity, editTime, mentions, reactions, attachments, embeds, stickers, Collections.emptyList(), flags, null, startedThread, position);
}
@Nonnull
@Override
public RestAction pin()
{
throw new UnsupportedOperationException("Cannot pin message of this Message Type. MessageType: " + getType());
}
@Nonnull
@Override
public RestAction unpin()
{
throw new UnsupportedOperationException("Cannot unpin message of this Message Type. MessageType: " + getType());
}
@Nonnull
@Override
public MessageEditAction editMessage(@Nonnull CharSequence newContent)
{
throw new UnsupportedOperationException("Cannot edit message of this Message Type. MessageType: " + getType());
}
@Nonnull
@Override
public MessageEditAction editMessageEmbeds(@Nonnull Collection extends MessageEmbed> embeds)
{
throw new UnsupportedOperationException("Cannot edit message of this Message Type. MessageType: " + getType());
}
@Nonnull
@Override
public MessageEditAction editMessageComponents(@Nonnull Collection extends LayoutComponent> components)
{
throw new UnsupportedOperationException("Cannot edit message of this Message Type. MessageType: " + getType());
}
@Nonnull
@Override
public MessageEditAction editMessageFormat(@Nonnull String format, @Nonnull Object... args)
{
throw new UnsupportedOperationException("Cannot edit message of this Message Type. MessageType: " + getType());
}
@Nonnull
@Override
public MessageEditAction editMessageAttachments(@Nonnull Collection extends AttachedFile> attachments)
{
throw new UnsupportedOperationException("Cannot edit message of this Message Type. MessageType: " + getType());
}
@Nonnull
@Override
public MessageEditAction editMessage(@Nonnull MessageEditData newContent)
{
throw new UnsupportedOperationException("Cannot edit message of this Message Type. MessageType: " + getType());
}
@Override
public String toString()
{
return new EntityString(this)
.setType(type)
.addMetadata("author", author)
.toString();
}
}