tgbotapi/src/main/kotlin/com/github/insanusmokrassar/TelegramBotAPI/types/files/PhotoSize.kt

33 lines
853 B
Kotlin

package com.github.insanusmokrassar.TelegramBotAPI.types.files
import com.github.insanusmokrassar.TelegramBotAPI.requests.abstracts.FileId
import com.github.insanusmokrassar.TelegramBotAPI.types.files.abstracts.*
import kotlinx.serialization.*
import kotlinx.serialization.internal.ArrayListSerializer
typealias Photo = List<PhotoSize>
fun Photo.biggest(): PhotoSize? = maxBy {
it.resolution
}
object PhotoSerializer : KSerializer<Photo> by ArrayListSerializer(
PhotoSize.serializer()
)
@Serializable
data class PhotoSize(
@SerialName(fileIdField)
override val fileId: FileId,
@SerialName(fileSizeField)
@Optional
override val fileSize: Long? = null,
override val width: Int,
override val height: Int
) : SizedMediaFile {
@Transient
val resolution: Long by lazy {
width.toLong() * height
}
}