42 lines
1.5 KiB
Kotlin
42 lines
1.5 KiB
Kotlin
package fr.dcproject.component.vote.routes
|
|
|
|
import fr.dcproject.component.auth.citizen
|
|
import fr.dcproject.component.auth.citizenOrNull
|
|
import fr.dcproject.component.comment.generic.CommentRepository
|
|
import fr.dcproject.component.vote.VoteCommentRepository
|
|
import fr.dcproject.component.vote.VoteVoter
|
|
import fr.dcproject.component.vote.entity.VoteForUpdate
|
|
import fr.dcproject.voter.assert
|
|
import io.ktor.application.call
|
|
import io.ktor.http.HttpStatusCode
|
|
import io.ktor.locations.KtorExperimentalLocationsAPI
|
|
import io.ktor.locations.Location
|
|
import io.ktor.locations.put
|
|
import io.ktor.request.receive
|
|
import io.ktor.response.respond
|
|
import io.ktor.routing.Route
|
|
import java.util.UUID
|
|
|
|
@KtorExperimentalLocationsAPI
|
|
object PutVoteOnComment {
|
|
@Location("/comments/{comment}/vote")
|
|
class CommentVoteRequest(val comment: UUID) {
|
|
data class Content(var note: Int)
|
|
}
|
|
|
|
fun Route.putVoteOnComment(voteCommentRepo: VoteCommentRepository, commentRepo: CommentRepository, voter: VoteVoter) {
|
|
put<CommentVoteRequest> {
|
|
val comment = commentRepo.findById(it.comment)!!
|
|
val content = call.receive<CommentVoteRequest.Content>()
|
|
val vote = VoteForUpdate(
|
|
target = comment,
|
|
note = content.note,
|
|
createdBy = this.citizen
|
|
)
|
|
voter.assert { canCreate(vote, citizenOrNull) }
|
|
val votes = voteCommentRepo.vote(vote)
|
|
call.respond(HttpStatusCode.Created, votes)
|
|
}
|
|
}
|
|
}
|