- Move files into components (article) - Split articles routes - Refactoring for remove ktor-voter (ArticleVoter) - Remove mutability - Move DataConversion to separate file (Converter.kt) - Add Schemas for Articles routes - Fix SQL Query for Workgroup roles - rename container_name in docker-compose
56 lines
1.8 KiB
Kotlin
56 lines
1.8 KiB
Kotlin
package fr.dcproject.routes
|
|
|
|
import fr.dcproject.citizen
|
|
import fr.dcproject.component.article.ArticleRef
|
|
import fr.dcproject.entity.Citizen
|
|
import fr.dcproject.entity.FollowForUpdate
|
|
import fr.dcproject.security.voter.FollowVoter.Action.*
|
|
import fr.ktorVoter.assertCan
|
|
import fr.ktorVoter.assertCanAll
|
|
import io.ktor.application.*
|
|
import io.ktor.http.*
|
|
import io.ktor.locations.*
|
|
import io.ktor.response.*
|
|
import io.ktor.routing.*
|
|
import fr.dcproject.repository.FollowArticle as FollowArticleRepository
|
|
|
|
@KtorExperimentalLocationsAPI
|
|
object FollowArticlePaths {
|
|
@Location("/articles/{article}/follows")
|
|
class ArticleFollowRequest(val article: ArticleRef)
|
|
|
|
@Location("/citizens/{citizen}/follows/articles")
|
|
class CitizenFollowArticleRequest(val citizen: Citizen)
|
|
}
|
|
|
|
@KtorExperimentalLocationsAPI
|
|
fun Route.followArticle(repo: FollowArticleRepository) {
|
|
post<FollowArticlePaths.ArticleFollowRequest> {
|
|
val follow = FollowForUpdate(target = it.article, createdBy = this.citizen)
|
|
assertCan(CREATE, follow)
|
|
repo.follow(follow)
|
|
call.respond(HttpStatusCode.Created)
|
|
}
|
|
|
|
delete<FollowArticlePaths.ArticleFollowRequest> {
|
|
val follow = FollowForUpdate(target = it.article, createdBy = this.citizen)
|
|
assertCan(DELETE, follow)
|
|
repo.unfollow(follow)
|
|
call.respond(HttpStatusCode.NoContent)
|
|
}
|
|
|
|
get<FollowArticlePaths.ArticleFollowRequest> {
|
|
repo.findFollow(citizen, it.article)?.let { follow ->
|
|
assertCan(VIEW, follow)
|
|
call.respond(follow)
|
|
} ?: call.respond(HttpStatusCode.NoContent)
|
|
}
|
|
|
|
get<FollowArticlePaths.CitizenFollowArticleRequest> {
|
|
val follows = repo.findByCitizen(it.citizen)
|
|
if (follows.result.isNotEmpty()) {
|
|
assertCanAll(VIEW, follows.result)
|
|
}
|
|
call.respond(follows)
|
|
}
|
|
} |