io.github.ydwk.ydwk.entities.channel.DmChannel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydwk Show documentation
Show all versions of ydwk Show documentation
YDWK (Yusuf's Discord Wrapper Kotlin) My own Discord Wrapper in Kotlin
/*
* Copyright 2022 YDWK inc.
*
*
* 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 io.github.ydwk.ydwk.entities.channel
import io.github.ydwk.ydwk.entities.User
import io.github.ydwk.ydwk.impl.entities.UserImpl
import io.github.ydwk.ydwk.rest.EndPoint
import io.github.ydwk.ydwk.util.GetterSnowFlake
import java.util.concurrent.CompletableFuture
interface DmChannel : TextChannel {
/**
* The channel's last message id.
*
* @return the channel's last message id.
*/
var lastMessageId: GetterSnowFlake?
/**
* The recipient of the dm.
*
* @return the recipient of the dm.
*/
var recipient: User?
/**
* Retrieves the recipient of the dm.
*
* @return the recipient of the dm.
*/
val retrieveRecipient: CompletableFuture
get() {
return ydwk.restApiManager.get(EndPoint.UserEndpoint.GET_USER, id).execute {
val jsonBody = it.jsonBody
if (jsonBody == null) {
throw IllegalStateException("json body is null")
} else {
UserImpl(jsonBody, jsonBody["id"].asLong(), ydwk)
}
}
}
}