feat: Postのidが同じ時、上書きするように

This commit is contained in:
usbharu 2023-06-03 23:54:13 +09:00
parent 48d44bdd0f
commit cf6e66aa7d
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 40 additions and 24 deletions

View File

@ -29,6 +29,8 @@ class PostRepositoryImpl(database: Database, private val idGenerateService: IdGe
override suspend fun save(post: Post): Post { override suspend fun save(post: Post): Post {
return query { return query {
val singleOrNull = Posts.select { Posts.id eq post.id }.singleOrNull()
if (singleOrNull == null) {
Posts.insert { Posts.insert {
it[id] = post.id it[id] = post.id
it[userId] = post.userId it[userId] = post.userId
@ -42,6 +44,20 @@ class PostRepositoryImpl(database: Database, private val idGenerateService: IdGe
it[sensitive] = post.sensitive it[sensitive] = post.sensitive
it[apId] = post.apId it[apId] = post.apId
} }
} else {
Posts.update({ Posts.id eq post.id }) {
it[userId] = post.userId
it[overview] = post.overview
it[text] = post.text
it[createdAt] = post.createdAt
it[visibility] = post.visibility.ordinal
it[url] = post.url
it[repostId] = post.repostId
it[replyId] = post.replyId
it[sensitive] = post.sensitive
it[apId] = post.apId
}
}
return@query post return@query post
} }
} }