You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.keylesspalace.tusky.entity
|
|
|
|
|
|
|
|
import com.google.gson.annotations.SerializedName
|
|
|
|
import java.util.*
|
|
|
|
|
|
|
|
data class Poll(
|
|
|
|
val id: String,
|
|
|
|
@SerializedName("expires_at") val expiresAt: Date?,
|
|
|
|
val expired: Boolean,
|
|
|
|
val multiple: Boolean,
|
|
|
|
@SerializedName("votes_count") val votesCount: Int,
|
|
|
|
val options: List<PollOption>,
|
|
|
|
val voted: Boolean
|
|
|
|
) {
|
|
|
|
|
|
|
|
fun votedCopy(choices: List<Int>): Poll {
|
|
|
|
val newOptions = options.mapIndexed { index, option ->
|
|
|
|
if(choices.contains(index)) {
|
|
|
|
option.copy(votesCount = option.votesCount + 1)
|
|
|
|
} else {
|
|
|
|
option
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return copy(options = newOptions, votesCount = votesCount + choices.size, voted = true)
|
|
|
|
}
|
|
|
|
|
|
|
|
fun toNewPoll(creationDate: Date) = NewPoll(
|
|
|
|
options.map { it.title },
|
|
|
|
expiresAt?.let {
|
|
|
|
((it.time - creationDate.time) / 1000).toInt() + 1
|
|
|
|
}?: 3600,
|
|
|
|
multiple
|
|
|
|
)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
data class PollOption(
|
|
|
|
val title: String,
|
|
|
|
@SerializedName("votes_count") val votesCount: Int
|
|
|
|
)
|