mirror of https://github.com/usbharu/Hideout.git
commit
60d71e1eb2
|
@ -46,7 +46,7 @@ jobs:
|
|||
gradle-home-cache-cleanup: true
|
||||
|
||||
- name: Build
|
||||
run: ./gradlew :hideout-core:classes
|
||||
run: ./hideout-core/gradlew :hideout-core:classes --no-daemon
|
||||
|
||||
unit-test:
|
||||
name: Unit Test
|
||||
|
@ -69,7 +69,7 @@ jobs:
|
|||
gradle-home-cache-cleanup: true
|
||||
|
||||
- name: Unit Test
|
||||
run: ./gradlew :hideout-core:koverXmlReport
|
||||
run: ./hideout-core/gradlew :hideout-core:koverXmlReport
|
||||
|
||||
- name: Add coverage report to PR
|
||||
if: always()
|
||||
|
@ -94,9 +94,13 @@ jobs:
|
|||
name: Lint
|
||||
needs: [ setup ]
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
ref: ${{ github.head_ref }}
|
||||
|
||||
- name: Set up JDK 21
|
||||
uses: actions/setup-java@v4
|
||||
|
@ -111,7 +115,7 @@ jobs:
|
|||
gradle-home-cache-cleanup: true
|
||||
|
||||
- name: Build with Gradle
|
||||
run: ./gradlew :hideout-core:detektMain
|
||||
run: ./hideout-core/gradlew :hideout-core:detektMain
|
||||
|
||||
- name: Auto Commit
|
||||
if: ${{ always() }}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
org.gradle.parallel=true
|
||||
org.gradle.configureondemand=true
|
||||
org.gradle.caching=true
|
||||
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED -XX:TieredStopAtLevel=1 -noverify
|
||||
org.gradle.jvmargs=-Xmx4096m -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC --add-opens=java.base/java.util.concurrent.locks=ALL-UNNAMED
|
|
@ -103,7 +103,7 @@ dependencies {
|
|||
implementation(libs.flyway.core)
|
||||
runtimeOnly(libs.flyway.postgresql)
|
||||
|
||||
implementation("dev.usbharu:owl-common-serialize-jackson:0.0.1")
|
||||
implementation(libs.owl.common.serialize.jackson)
|
||||
|
||||
implementation(libs.javacv) {
|
||||
exclude(module = "opencv")
|
||||
|
@ -122,8 +122,8 @@ dependencies {
|
|||
implementation(variantOf(libs.javacv.ffmpeg) { classifier("linux-x86_64") })
|
||||
}
|
||||
|
||||
implementation("dev.usbharu:http-signature:1.0.0")
|
||||
implementation("dev.usbharu:emoji-kt:2.0.0")
|
||||
implementation(libs.http.signature)
|
||||
implementation(libs.emoji.kt)
|
||||
|
||||
|
||||
|
||||
|
@ -132,16 +132,13 @@ dependencies {
|
|||
testImplementation(libs.coroutines.test)
|
||||
testImplementation(libs.ktor.client.mock)
|
||||
testImplementation(libs.h2db)
|
||||
testImplementation("org.mockito.kotlin:mockito-kotlin:5.4.0")
|
||||
testImplementation("org.mockito:mockito-inline:5.2.0")
|
||||
testImplementation("nl.jqno.equalsverifier:equalsverifier:3.16.1")
|
||||
testImplementation("com.jparams:to-string-verifier:1.4.8")
|
||||
testImplementation(libs.mockito.kotlin)
|
||||
|
||||
}
|
||||
|
||||
detekt {
|
||||
parallel = true
|
||||
config = files("../detekt.yml")
|
||||
config.setFrom(files("../detekt.yml"))
|
||||
buildUponDefaultConfig = true
|
||||
basePath = "${rootDir.absolutePath}/src/main/kotlin"
|
||||
autoCorrect = true
|
||||
|
|
|
@ -58,13 +58,15 @@ class MigrationLocalActorApplicationService(
|
|||
if (canAccountMigration.canMigration) {
|
||||
fromActor.moveTo = toActorId
|
||||
actorRepository.save(fromActor)
|
||||
} else when (canAccountMigration) {
|
||||
is AlreadyMoved -> throw IllegalArgumentException(canAccountMigration.message)
|
||||
is CanAccountMigration -> throw InternalServerException()
|
||||
is CircularReferences -> throw IllegalArgumentException(canAccountMigration.message)
|
||||
is SelfReferences -> throw IllegalArgumentException("Self references are not supported")
|
||||
is AlsoKnownAsNotFound -> throw IllegalArgumentException(canAccountMigration.message)
|
||||
is MigrationCoolDown -> throw IllegalArgumentException(canAccountMigration.message)
|
||||
} else {
|
||||
when (canAccountMigration) {
|
||||
is AlreadyMoved -> throw IllegalArgumentException(canAccountMigration.message)
|
||||
is CanAccountMigration -> throw InternalServerException()
|
||||
is CircularReferences -> throw IllegalArgumentException(canAccountMigration.message)
|
||||
is SelfReferences -> throw IllegalArgumentException("Self references are not supported")
|
||||
is AlsoKnownAsNotFound -> throw IllegalArgumentException(canAccountMigration.message)
|
||||
is MigrationCoolDown -> throw IllegalArgumentException(canAccountMigration.message)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -91,7 +91,6 @@ class RegisterApplicationApplicationService(
|
|||
)
|
||||
}
|
||||
|
||||
|
||||
companion object {
|
||||
private val logger = LoggerFactory.getLogger(RegisterApplicationApplicationService::class.java)
|
||||
}
|
||||
|
|
|
@ -36,15 +36,13 @@ class TimelineRelationshipFollowSubscriber(
|
|||
relationship.targetActorId,
|
||||
Visible.FOLLOWERS
|
||||
)
|
||||
), it.body.principal
|
||||
),
|
||||
it.body.principal
|
||||
)
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
companion object {
|
||||
private val logger = LoggerFactory.getLogger(TimelineRelationshipFollowSubscriber::class.java)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,4 +11,4 @@ class InternalServerException : RuntimeException {
|
|||
enableSuppression,
|
||||
writableStackTrace
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -11,4 +11,4 @@ class PermissionDeniedException : RuntimeException {
|
|||
enableSuppression,
|
||||
writableStackTrace
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -37,7 +37,6 @@ class UserRegisterFilterApplicationService(
|
|||
) {
|
||||
|
||||
override suspend fun internalExecute(command: RegisterFilter, principal: LocalUser): Filter {
|
||||
|
||||
val filter = dev.usbharu.hideout.core.domain.model.filter.Filter.create(
|
||||
id = FilterId(idGenerateService.generateId()),
|
||||
userDetailId = principal.userDetailId,
|
||||
|
|
|
@ -16,18 +16,20 @@ class GetLocalInstanceApplicationService(
|
|||
transaction: Transaction
|
||||
) :
|
||||
AbstractApplicationService<Unit, Instance>(
|
||||
transaction, logger
|
||||
transaction,
|
||||
logger
|
||||
) {
|
||||
var cachedInstance: Instance? = null
|
||||
|
||||
override suspend fun internalExecute(command: Unit, principal: Principal): Instance {
|
||||
|
||||
if (cachedInstance != null) {
|
||||
return cachedInstance!!
|
||||
}
|
||||
|
||||
val instance = (instanceRepository.findByUrl(applicationConfig.url.toURI())
|
||||
?: throw InternalServerException("Local instance not found."))
|
||||
val instance = (
|
||||
instanceRepository.findByUrl(applicationConfig.url.toURI())
|
||||
?: throw InternalServerException("Local instance not found.")
|
||||
)
|
||||
|
||||
cachedInstance = Instance.of(instance)
|
||||
return cachedInstance!!
|
||||
|
@ -36,4 +38,4 @@ class GetLocalInstanceApplicationService(
|
|||
companion object {
|
||||
private val logger = LoggerFactory.getLogger(GetLocalInstanceApplicationService::class.java)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,7 +7,10 @@ data class Instance(val id: Long, val name: String, val url: URI, val descriptio
|
|||
companion object {
|
||||
fun of(instance: Instance): dev.usbharu.hideout.core.application.instance.Instance {
|
||||
return Instance(
|
||||
instance.id.instanceId, instance.name.name, instance.url, instance.description.description
|
||||
instance.id.instanceId,
|
||||
instance.name.name,
|
||||
instance.url,
|
||||
instance.description.description
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package dev.usbharu.hideout.core.application.post
|
||||
|
||||
|
||||
import dev.usbharu.hideout.core.domain.model.actor.Actor
|
||||
import dev.usbharu.hideout.core.domain.model.instance.Instance
|
||||
import dev.usbharu.hideout.core.domain.model.media.Media
|
||||
|
@ -32,4 +31,4 @@ data class ActorDetail(
|
|||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -29,7 +29,8 @@ import org.springframework.stereotype.Service
|
|||
@Service
|
||||
class DeleteLocalPostApplicationService(
|
||||
private val postRepository: PostRepository,
|
||||
private val actorRepository: ActorRepository, transaction: Transaction,
|
||||
private val actorRepository: ActorRepository,
|
||||
transaction: Transaction,
|
||||
) : LocalUserAbstractApplicationService<DeleteLocalPost, Unit>(transaction, logger) {
|
||||
|
||||
override suspend fun internalExecute(command: DeleteLocalPost, principal: LocalUser) {
|
||||
|
|
|
@ -25,7 +25,8 @@ class GetPostDetailApplicationService(
|
|||
private val mediaRepository: MediaRepository,
|
||||
private val iPostReadAccessControl: IPostReadAccessControl
|
||||
) : AbstractApplicationService<GetPostDetail, PostDetail>(
|
||||
transaction, logger
|
||||
transaction,
|
||||
logger
|
||||
) {
|
||||
override suspend fun internalExecute(command: GetPostDetail, principal: Principal): PostDetail {
|
||||
val post = postRepository.findById(PostId(command.postId))
|
||||
|
@ -79,12 +80,15 @@ class GetPostDetailApplicationService(
|
|||
|
||||
val mediaList = mediaRepository.findByIds(post.mediaIds)
|
||||
return PostDetail.of(
|
||||
post, first, second, third, mediaList
|
||||
post,
|
||||
first,
|
||||
second,
|
||||
third,
|
||||
mediaList
|
||||
)
|
||||
|
||||
}
|
||||
|
||||
companion object {
|
||||
private val logger = LoggerFactory.getLogger(GetPostDetailApplicationService::class.java)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,4 +25,4 @@ data class MediaDetail(
|
|||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -35,7 +35,6 @@ class UserAcceptFollowRequestApplicationService(
|
|||
) :
|
||||
LocalUserAbstractApplicationService<AcceptFollowRequest, Unit>(transaction, logger) {
|
||||
override suspend fun internalExecute(command: AcceptFollowRequest, principal: LocalUser) {
|
||||
|
||||
val actor = actorRepository.findById(principal.actorId)
|
||||
?: throw InternalServerException("Actor ${principal.actorId} not found")
|
||||
|
||||
|
|
|
@ -36,8 +36,6 @@ class UserBlockApplicationService(
|
|||
) :
|
||||
LocalUserAbstractApplicationService<Block, Unit>(transaction, logger) {
|
||||
override suspend fun internalExecute(command: Block, principal: LocalUser) {
|
||||
|
||||
|
||||
val actor = actorRepository.findById(principal.actorId)
|
||||
?: throw IllegalStateException("Actor ${principal.actorId} not found")
|
||||
|
||||
|
|
|
@ -46,14 +46,14 @@ class GetRelationshipApplicationService(
|
|||
val target = actorRepository.findById(targetId)
|
||||
?: throw IllegalArgumentException("Actor ${command.targetActorId} not found.")
|
||||
val relationship = (
|
||||
relationshipRepository.findByActorIdAndTargetId(actor.id, targetId)
|
||||
?: dev.usbharu.hideout.core.domain.model.relationship.Relationship.default(actor.id, targetId)
|
||||
)
|
||||
relationshipRepository.findByActorIdAndTargetId(actor.id, targetId)
|
||||
?: dev.usbharu.hideout.core.domain.model.relationship.Relationship.default(actor.id, targetId)
|
||||
)
|
||||
|
||||
val relationship1 = (
|
||||
relationshipRepository.findByActorIdAndTargetId(targetId, actor.id)
|
||||
?: dev.usbharu.hideout.core.domain.model.relationship.Relationship.default(targetId, actor.id)
|
||||
)
|
||||
relationshipRepository.findByActorIdAndTargetId(targetId, actor.id)
|
||||
?: dev.usbharu.hideout.core.domain.model.relationship.Relationship.default(targetId, actor.id)
|
||||
)
|
||||
|
||||
val actorInstanceRelationship =
|
||||
actorInstanceRelationshipRepository.findByActorIdAndInstanceId(actor.id, target.instance)
|
||||
|
|
|
@ -15,4 +15,4 @@ abstract class LocalUserAbstractApplicationService<T : Any, R>(transaction: Tran
|
|||
}
|
||||
|
||||
protected abstract suspend fun internalExecute(command: T, principal: LocalUser): R
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,7 +13,8 @@ class UserAddTimelineRelationshipApplicationService(
|
|||
transaction: Transaction
|
||||
) :
|
||||
LocalUserAbstractApplicationService<AddTimelineRelationship, Unit>(
|
||||
transaction, logger
|
||||
transaction,
|
||||
logger
|
||||
) {
|
||||
override suspend fun internalExecute(command: AddTimelineRelationship, principal: LocalUser) {
|
||||
timelineRelationshipRepository.save(command.timelineRelationship)
|
||||
|
@ -22,4 +23,4 @@ class UserAddTimelineRelationshipApplicationService(
|
|||
companion object {
|
||||
private val logger = LoggerFactory.getLogger(UserAddTimelineRelationshipApplicationService::class.java)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,4 +24,4 @@ data class ApplicationConfig(
|
|||
val url: URL,
|
||||
val private: Boolean = true,
|
||||
val keySize: Int = 2048,
|
||||
)
|
||||
)
|
||||
|
|
|
@ -69,7 +69,6 @@ class Filter(
|
|||
return id.hashCode()
|
||||
}
|
||||
|
||||
|
||||
companion object {
|
||||
fun isAllow(user: UserDetail, action: Action, resource: Filter): Boolean {
|
||||
return when (action) {
|
||||
|
|
|
@ -241,25 +241,25 @@ class Post(
|
|||
|
||||
override fun toString(): String {
|
||||
return "Post(" +
|
||||
"id=$id, " +
|
||||
"createdAt=$createdAt, " +
|
||||
"url=$url, " +
|
||||
"repostId=$repostId, " +
|
||||
"replyId=$replyId, " +
|
||||
"apId=$apId, " +
|
||||
"actorId=$actorId, " +
|
||||
"visibility=$visibility, " +
|
||||
"visibleActors=$visibleActors, " +
|
||||
"content=$content, " +
|
||||
"overview=$overview, " +
|
||||
"sensitive=$sensitive, " +
|
||||
"text='$text', " +
|
||||
"emojiIds=$emojiIds, " +
|
||||
"mediaIds=$mediaIds, " +
|
||||
"deleted=$deleted, " +
|
||||
"hide=$hide, " +
|
||||
"moveTo=$moveTo" +
|
||||
")"
|
||||
"id=$id, " +
|
||||
"createdAt=$createdAt, " +
|
||||
"url=$url, " +
|
||||
"repostId=$repostId, " +
|
||||
"replyId=$replyId, " +
|
||||
"apId=$apId, " +
|
||||
"actorId=$actorId, " +
|
||||
"visibility=$visibility, " +
|
||||
"visibleActors=$visibleActors, " +
|
||||
"content=$content, " +
|
||||
"overview=$overview, " +
|
||||
"sensitive=$sensitive, " +
|
||||
"text='$text', " +
|
||||
"emojiIds=$emojiIds, " +
|
||||
"mediaIds=$mediaIds, " +
|
||||
"deleted=$deleted, " +
|
||||
"hide=$hide, " +
|
||||
"moveTo=$moveTo" +
|
||||
")"
|
||||
}
|
||||
|
||||
companion object {
|
||||
|
@ -315,6 +315,5 @@ class Post(
|
|||
post.addDomainEvent(PostDomainEventFactory(post).createEvent(PostEvent.CREATE))
|
||||
return post
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,4 +2,4 @@ package dev.usbharu.hideout.core.domain.model.support.principal
|
|||
|
||||
import dev.usbharu.hideout.core.domain.model.actor.ActorId
|
||||
|
||||
data object Anonymous : Principal(ActorId.ghost, null, null)
|
||||
data object Anonymous : Principal(ActorId.ghost, null, null)
|
||||
|
|
|
@ -12,4 +12,4 @@ class LocalUser(
|
|||
actorId,
|
||||
userDetailId,
|
||||
acct
|
||||
)
|
||||
)
|
||||
|
|
|
@ -4,4 +4,4 @@ import dev.usbharu.hideout.core.domain.model.actor.ActorId
|
|||
import dev.usbharu.hideout.core.domain.model.support.acct.Acct
|
||||
import dev.usbharu.hideout.core.domain.model.userdetails.UserDetailId
|
||||
|
||||
sealed class Principal(open val actorId: ActorId, open val userDetailId: UserDetailId?, open val acct: Acct?)
|
||||
sealed class Principal(open val actorId: ActorId, open val userDetailId: UserDetailId?, open val acct: Acct?)
|
||||
|
|
|
@ -2,4 +2,4 @@ package dev.usbharu.hideout.core.domain.model.support.principal
|
|||
|
||||
interface PrincipalContextHolder {
|
||||
suspend fun getPrincipal(): Principal
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@ class TimelineObject(
|
|||
lastUpdatedAt: Instant,
|
||||
var warnFilters: List<TimelineObjectWarnFilter>,
|
||||
|
||||
) {
|
||||
) {
|
||||
var isPureRepost = isPureRepost
|
||||
private set
|
||||
var visibleActors = visibleActors
|
||||
|
@ -125,9 +125,9 @@ class TimelineObject(
|
|||
repostActorId = repost.actorId,
|
||||
visibility = post.visibility,
|
||||
isPureRepost = repost.mediaIds.isEmpty() &&
|
||||
repost.overview == null &&
|
||||
repost.content == PostContent.empty &&
|
||||
repost.replyId == null,
|
||||
repost.overview == null &&
|
||||
repost.content == PostContent.empty &&
|
||||
repost.replyId == null,
|
||||
mediaIds = post.mediaIds,
|
||||
emojiIds = post.emojiIds,
|
||||
visibleActors = post.visibleActors.toList(),
|
||||
|
|
|
@ -16,36 +16,37 @@ interface IPostReadAccessControl {
|
|||
class DefaultPostReadAccessControl(private val relationshipRepository: RelationshipRepository) :
|
||||
IPostReadAccessControl {
|
||||
override suspend fun isAllow(post: Post, principal: Principal): Boolean {
|
||||
|
||||
//ポスト主は無条件で見れる
|
||||
// ポスト主は無条件で見れる
|
||||
if (post.actorId == principal.actorId) {
|
||||
return true
|
||||
}
|
||||
|
||||
val relationship = (relationshipRepository.findByActorIdAndTargetId(post.actorId, principal.actorId)
|
||||
?: Relationship.default(post.actorId, principal.actorId))
|
||||
val relationship = (
|
||||
relationshipRepository.findByActorIdAndTargetId(post.actorId, principal.actorId)
|
||||
?: Relationship.default(post.actorId, principal.actorId)
|
||||
)
|
||||
|
||||
//ブロックされてたら見れない
|
||||
// ブロックされてたら見れない
|
||||
if (relationship.blocking) {
|
||||
return false
|
||||
}
|
||||
|
||||
//PublicかUnlistedなら見れる
|
||||
// PublicかUnlistedなら見れる
|
||||
if (post.visibility == Visibility.PUBLIC || post.visibility == Visibility.UNLISTED) {
|
||||
return true
|
||||
}
|
||||
|
||||
//principalがAnonymousなら見れない
|
||||
// principalがAnonymousなら見れない
|
||||
if (principal is Anonymous) {
|
||||
return false
|
||||
}
|
||||
|
||||
//DirectでvisibleActorsに含まれていたら見れる
|
||||
// DirectでvisibleActorsに含まれていたら見れる
|
||||
if (post.visibility == Visibility.DIRECT && post.visibleActors.contains(principal.actorId)) {
|
||||
return true
|
||||
}
|
||||
|
||||
//Followersでフォロワーなら見れる
|
||||
// Followersでフォロワーなら見れる
|
||||
if (post.visibility == Visibility.FOLLOWERS) {
|
||||
val inverseRelationship =
|
||||
relationshipRepository.findByActorIdAndTargetId(principal.actorId, post.actorId) ?: return false
|
||||
|
@ -53,8 +54,7 @@ class DefaultPostReadAccessControl(private val relationshipRepository: Relations
|
|||
return inverseRelationship.following
|
||||
}
|
||||
|
||||
//その他の場合は見れない
|
||||
// その他の場合は見れない
|
||||
return false
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -34,4 +34,4 @@ class ExposedPrincipalQueryService : PrincipalQueryService, AbstractRepository()
|
|||
companion object {
|
||||
private val logger: Logger = LoggerFactory.getLogger(ExposedPrincipalQueryService::class.java)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -22,7 +22,6 @@ class SpringSecurityFormLoginPrincipalContextHolder(
|
|||
SecurityContextHolder.getContext().authentication?.principal as? HideoutUserDetails ?: return Anonymous
|
||||
|
||||
return transaction.transaction {
|
||||
|
||||
val userDetail = principalQueryService.findByUserDetailId(UserDetailId(hideoutUserDetails.userDetailsId))
|
||||
LocalUser(
|
||||
userDetail.actorId,
|
||||
|
@ -30,6 +29,5 @@ class SpringSecurityFormLoginPrincipalContextHolder(
|
|||
Acct(userDetail.username, userDetail.host)
|
||||
)
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,4 +33,4 @@ class SpringSecurityOauth2PrincipalContextHolder(
|
|||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,4 +30,4 @@ data class InternalTimelineObjectOption(
|
|||
val localOnly: Boolean? = null,
|
||||
val remoteOnly: Boolean? = null,
|
||||
val mediaOnly: Boolean? = null
|
||||
)
|
||||
)
|
||||
|
|
|
@ -38,7 +38,8 @@ class AuthController(
|
|||
suspend fun signUp(@Validated @ModelAttribute signUpForm: SignUpForm, request: HttpServletRequest): String {
|
||||
val registerLocalActor = RegisterLocalActor(signUpForm.username, signUpForm.password)
|
||||
val uri = registerLocalActorApplicationService.execute(
|
||||
registerLocalActor, Anonymous
|
||||
registerLocalActor,
|
||||
Anonymous
|
||||
)
|
||||
request.login(signUpForm.username, signUpForm.password)
|
||||
return "redirect:$uri"
|
||||
|
|
|
@ -30,7 +30,6 @@ import org.springframework.web.bind.annotation.PathVariable
|
|||
import java.nio.file.Path
|
||||
import kotlin.io.path.name
|
||||
|
||||
|
||||
@Controller
|
||||
@ConditionalOnProperty("hideout.storage.type", havingValue = "local", matchIfMissing = true)
|
||||
class LocalFileController(
|
||||
|
@ -64,4 +63,4 @@ class LocalFileController(
|
|||
.contentLength(pathResource.contentLength())
|
||||
.body(pathResource)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,4 +31,4 @@ class PostsController(
|
|||
|
||||
return "postById"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,6 +55,6 @@ class PublishController(
|
|||
)
|
||||
val id = userRegisterLocalPostApplicationService.execute(command, principal)
|
||||
|
||||
return "redirect:/users/${principal.acct?.userpart}/posts/${id}"
|
||||
return "redirect:/users/${principal.acct?.userpart}/posts/$id"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,4 +3,4 @@ package dev.usbharu.hideout.core.query.principal
|
|||
import dev.usbharu.hideout.core.domain.model.actor.ActorId
|
||||
import dev.usbharu.hideout.core.domain.model.userdetails.UserDetailId
|
||||
|
||||
data class PrincipalDTO(val userDetailId: UserDetailId, val actorId: ActorId, val username: String, val host: String)
|
||||
data class PrincipalDTO(val userDetailId: UserDetailId, val actorId: ActorId, val username: String, val host: String)
|
||||
|
|
|
@ -4,4 +4,4 @@ import dev.usbharu.hideout.core.domain.model.userdetails.UserDetailId
|
|||
|
||||
interface PrincipalQueryService {
|
||||
suspend fun findByUserDetailId(userDetailId: UserDetailId): PrincipalDTO
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,11 +7,12 @@ javacv-ffmpeg = "6.1.1-1.5.10"
|
|||
detekt = "1.23.6"
|
||||
coroutines = "1.8.1"
|
||||
swagger = "2.2.22"
|
||||
serialization = "1.7.1"
|
||||
kjob = "0.6.0"
|
||||
tika = "2.9.2"
|
||||
owl = "0.0.1"
|
||||
jackson = "2.17.2"
|
||||
protobuf = "4.27.3"
|
||||
grpc-java = "1.66.0"
|
||||
grpc-kotlin = "1.4.1"
|
||||
|
||||
[libraries]
|
||||
|
||||
|
@ -20,9 +21,9 @@ exposed-jdbc = { module = "org.jetbrains.exposed:exposed-jdbc", version.ref = "e
|
|||
exposed-spring = { module = "org.jetbrains.exposed:exposed-spring-boot-starter", version.ref = "exposed" }
|
||||
exposed-java-time = { module = "org.jetbrains.exposed:exposed-java-time", version.ref = "exposed" }
|
||||
|
||||
cotoutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
|
||||
cotoutines-reactor = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-reactor", version.ref = "coroutines" }
|
||||
cotoutines-slf4j = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-slf4j", version.ref = "coroutines" }
|
||||
coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "coroutines" }
|
||||
coroutines-reactor = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-reactor", version.ref = "coroutines" }
|
||||
coroutines-slf4j = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-slf4j", version.ref = "coroutines" }
|
||||
coroutines-test = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-test", version.ref = "coroutines" }
|
||||
|
||||
javacv = { module = "org.bytedeco:javacv", version = "1.5.10" }
|
||||
|
@ -49,20 +50,15 @@ jakarta-annotation = { module = "jakarta.annotation:jakarta.annotation-api", ver
|
|||
swagger-annotations = { module = "io.swagger.core.v3:swagger-annotations", version.ref = "swagger" }
|
||||
swagger-models = { module = "io.swagger.core.v3:swagger-models", version.ref = "swagger" }
|
||||
|
||||
serialization-core = { module = "org.jetbrains.kotlinx:kotlinx-serialization-core", version.ref = "serialization" }
|
||||
serialization-json = { module = "org.jetbrains.kotlinx:kotlinx-serialization-json", version.ref = "serialization" }
|
||||
|
||||
apache-tika-core = { module = "org.apache.tika:tika-core", version.ref = "tika" }
|
||||
apache-tika-parsers = { module = "org.apache.tika:tika-parsers", version.ref = "tika" }
|
||||
|
||||
kjon-core = { module = "org.drewcarlson:kjob-core", version.ref = "kjob" }
|
||||
kjon-mongo = { module = "org.drewcarlson:kjob-mongo", version.ref = "kjob" }
|
||||
|
||||
owl-producer-api = { module = "dev.usbharu:owl-producer-api", version.ref = "owl" }
|
||||
owl-producer-default = { module = "dev.usbharu:owl-producer-default", version.ref = "owl" }
|
||||
owl-producer-embedded = { module = "dev.usbharu:owl-producer-embedded", version.ref = "owl" }
|
||||
owl-broker = { module = "dev.usbharu:owl-broker", version.ref = "owl" }
|
||||
owl-broker-mongodb = { module = "dev.usbharu:owl-broker-mongodb", version.ref = "owl" }
|
||||
owl-common-serialize-jackson = { module = "dev.usbharu:owl-common-serialize-jackson", version.ref = "owl" }
|
||||
|
||||
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" }
|
||||
jackson-module-kotlin = { module = "com.fasterxml.jackson.module:jackson-module-kotlin", version.ref = "jackson" }
|
||||
|
@ -88,20 +84,40 @@ h2db = { module = "com.h2database:h2", version = "2.3.232" }
|
|||
|
||||
kotlin-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
|
||||
|
||||
grpc-kotlin-stub = { module = "io.grpc:grpc-kotlin-stub", version.ref = "grpc-kotlin" }
|
||||
grpc-protobuf = { module = "io.grpc:grpc-protobuf", version.ref = "grpc-java" }
|
||||
grpc-netty = { module = "io.grpc:grpc-netty", version.ref = "grpc-java" }
|
||||
protoc-gen-grpc-java = { module = "io.grpc:protoc-gen-grpc-java", version.ref = "grpc-java" }
|
||||
protoc-gen-grpc-kotlin = { module = "io.grpc:protoc-gen-grpc-kotlin", version.ref = "grpc-kotlin" }
|
||||
|
||||
protobuf-kotlin = { module = "com.google.protobuf:protobuf-kotlin", version.ref = "protobuf" }
|
||||
protoc = { module = "com.google.protobuf:protoc", version.ref = "protobuf" }
|
||||
|
||||
koin-bom = { module = "io.insert-koin:koin-bom", version = "3.5.6" }
|
||||
koin-core = { module = "io.insert-koin:koin-core" }
|
||||
|
||||
log4j2-slf4j = { module = "org.apache.logging.log4j:log4j-slf4j2-impl", version = "2.23.1" }
|
||||
|
||||
mongodb-kotlin-coroutine = { module = "org.mongodb:mongodb-driver-kotlin-coroutine", version = "5.1.3" }
|
||||
|
||||
mockito-kotlin = { module = "org.mockito.kotlin:mockito-kotlin", version = "5.4.0" }
|
||||
|
||||
http-signature = { module = "dev.usbharu:http-signature", version = "1.0.0" }
|
||||
emoji-kt = { module = "dev.usbharu:emoji-kt", version = "2.0.0" }
|
||||
|
||||
[bundles]
|
||||
|
||||
exposed = ["exposed-core", "exposed-java-time", "exposed-jdbc", "exposed-spring"]
|
||||
coroutines = ["cotoutines-core", "cotoutines-reactor", "cotoutines-slf4j"]
|
||||
coroutines = ["coroutines-core", "coroutines-reactor", "coroutines-slf4j"]
|
||||
ktor-client = ["ktor-client-cio", "ktor-client-content-negotiation", "ktor-client-core", "ktor-client-logging-jvm", "ktor-serialization-jackson"]
|
||||
spring-boot-oauth2 = ["spring-boot-oauth2-authorization", "spring-boot-oauth2-jose", "spring-boot-oauth2-resource"]
|
||||
spring-boot-data-mongodb = ["spring-boot-data-mongodb", "spring-boot-data-mongodb-reactive"]
|
||||
openapi = ["jakarta-annotation", "jakarta-validation", "swagger-annotations", "swagger-models"]
|
||||
serialization = ["serialization-core", "serialization-json"]
|
||||
apache-tika = ["apache-tika-core", "apache-tika-parsers"]
|
||||
kjob = ["kjon-core", "kjon-mongo"]
|
||||
owl-producer = ["owl-producer-api", "owl-producer-default", "owl-producer-embedded"]
|
||||
owl-broker = ["owl-broker", "owl-broker-mongodb"]
|
||||
jackson = ["jackson-databind", "jackson-module-kotlin"]
|
||||
grpc-kotlin = ["grpc-kotlin-stub", "grpc-netty", "grpc-protobuf", "protobuf-kotlin"]
|
||||
|
||||
[plugins]
|
||||
|
||||
|
@ -111,4 +127,5 @@ detekt = { id = "io.gitlab.arturbosch.detekt", version.ref = "detekt" }
|
|||
kotlin-spring = { id = "org.jetbrains.kotlin.plugin.spring", version.ref = "kotlin" }
|
||||
kover = { id = "org.jetbrains.kotlinx.kover", version = "0.8.3" }
|
||||
openapi-generator = { id = "org.openapi.generator", version = "7.7.0" }
|
||||
license-report = { id = "com.github.jk1.dependency-license-report", version = "2.8" }
|
||||
license-report = { id = "com.github.jk1.dependency-license-report", version = "2.8" }
|
||||
protobuf-plugin = { id = "com.google.protobuf", version = "0.9.4" }
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
alias(libs.plugins.kotlin.jvm)
|
||||
id("com.google.protobuf") version "0.9.4"
|
||||
alias(libs.plugins.protobuf.plugin)
|
||||
}
|
||||
|
||||
|
||||
|
@ -11,15 +11,12 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("io.grpc:grpc-kotlin-stub:1.4.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.66.0")
|
||||
implementation("com.google.protobuf:protobuf-kotlin:4.27.3")
|
||||
implementation("io.grpc:grpc-netty:1.66.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
|
||||
implementation(libs.bundles.grpc.kotlin)
|
||||
implementation(libs.coroutines.core)
|
||||
implementation(project(":owl-common"))
|
||||
implementation("org.apache.logging.log4j:log4j-slf4j2-impl:2.23.1")
|
||||
implementation(platform("io.insert-koin:koin-bom:3.5.6"))
|
||||
implementation("io.insert-koin:koin-core")
|
||||
implementation(libs.log4j2.slf4j)
|
||||
implementation(platform(libs.koin.bom))
|
||||
implementation(libs.koin.core)
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
|
@ -31,14 +28,14 @@ kotlin {
|
|||
|
||||
protobuf {
|
||||
protoc {
|
||||
artifact = "com.google.protobuf:protoc:4.27.3"
|
||||
artifact = libs.protoc.asProvider().get().toString()
|
||||
}
|
||||
plugins {
|
||||
create("grpc") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.66.0"
|
||||
artifact = libs.protoc.gen.grpc.java.get().toString()
|
||||
}
|
||||
create("grpckt") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-kotlin:1.4.1:jdk8@jar"
|
||||
artifact = libs.protoc.gen.grpc.kotlin.get().toString() + "jdk8@jar"
|
||||
}
|
||||
}
|
||||
generateProtoTasks {
|
||||
|
|
|
@ -10,12 +10,11 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("org.mongodb:mongodb-driver-kotlin-coroutine:5.1.3")
|
||||
implementation(libs.mongodb.kotlin.coroutine)
|
||||
implementation(project(":owl-broker"))
|
||||
implementation(project(":owl-common"))
|
||||
implementation(platform("io.insert-koin:koin-bom:3.5.6"))
|
||||
implementation(platform("io.insert-koin:koin-annotations-bom:1.3.1"))
|
||||
implementation("io.insert-koin:koin-core")
|
||||
implementation(platform(libs.koin.bom))
|
||||
implementation(libs.koin.core)
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
|
|
|
@ -9,7 +9,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||||
testImplementation(libs.kotlin.junit)
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
alias(libs.plugins.kotlin.jvm)
|
||||
id("com.google.protobuf") version "0.9.4"
|
||||
alias(libs.plugins.protobuf.plugin)
|
||||
}
|
||||
|
||||
group = "dev.usbharu"
|
||||
|
@ -10,12 +10,9 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||||
implementation("io.grpc:grpc-kotlin-stub:1.4.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.66.0")
|
||||
implementation("com.google.protobuf:protobuf-kotlin:4.27.3")
|
||||
implementation("io.grpc:grpc-netty:1.66.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
|
||||
testImplementation(libs.kotlin.junit)
|
||||
implementation(libs.bundles.grpc.kotlin)
|
||||
implementation(libs.coroutines.core)
|
||||
implementation(project(":owl-common"))
|
||||
protobuf(files(project(":owl-broker").dependencyProject.projectDir.toString() + "/src/main/proto"))
|
||||
}
|
||||
|
@ -29,14 +26,14 @@ kotlin {
|
|||
|
||||
protobuf {
|
||||
protoc {
|
||||
artifact = "com.google.protobuf:protoc:4.27.3"
|
||||
artifact = libs.protoc.asProvider().get().toString()
|
||||
}
|
||||
plugins {
|
||||
create("grpc") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.66.0"
|
||||
artifact = libs.protoc.gen.grpc.java.get().toString()
|
||||
}
|
||||
create("grpckt") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-kotlin:1.4.1:jdk8@jar"
|
||||
artifact = libs.protoc.gen.grpc.kotlin.get().toString() + "jdk8@jar"
|
||||
}
|
||||
}
|
||||
generateProtoTasks {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
plugins {
|
||||
alias(libs.plugins.kotlin.jvm)
|
||||
id("com.google.protobuf") version "0.9.4"
|
||||
alias(libs.plugins.protobuf.plugin)
|
||||
}
|
||||
|
||||
group = "dev.usbharu"
|
||||
|
@ -10,13 +10,10 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||||
testImplementation(libs.kotlin.junit)
|
||||
api(project(":owl-producer:owl-producer-api"))
|
||||
implementation("io.grpc:grpc-kotlin-stub:1.4.1")
|
||||
implementation("io.grpc:grpc-protobuf:1.66.0")
|
||||
implementation("com.google.protobuf:protobuf-kotlin:4.27.3")
|
||||
implementation("io.grpc:grpc-netty:1.66.0")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
|
||||
implementation(libs.bundles.grpc.kotlin)
|
||||
implementation(libs.coroutines.core)
|
||||
implementation(project(":owl-common"))
|
||||
protobuf(files(project(":owl-broker").dependencyProject.projectDir.toString() + "/src/main/proto"))
|
||||
}
|
||||
|
@ -30,14 +27,14 @@ kotlin {
|
|||
|
||||
protobuf {
|
||||
protoc {
|
||||
artifact = "com.google.protobuf:protoc:4.27.3"
|
||||
artifact = libs.protoc.asProvider().get().toString()
|
||||
}
|
||||
plugins {
|
||||
create("grpc") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-java:1.66.0"
|
||||
artifact = libs.protoc.gen.grpc.java.get().toString()
|
||||
}
|
||||
create("grpckt") {
|
||||
artifact = "io.grpc:protoc-gen-grpc-kotlin:1.4.1:jdk8@jar"
|
||||
artifact = libs.protoc.gen.grpc.kotlin.get().toString() + "jdk8@jar"
|
||||
}
|
||||
}
|
||||
generateProtoTasks {
|
||||
|
|
|
@ -12,9 +12,9 @@ dependencies {
|
|||
testImplementation(kotlin("test"))
|
||||
implementation(project(":owl-producer:owl-producer-api"))
|
||||
implementation(project(":owl-broker"))
|
||||
implementation(platform("io.insert-koin:koin-bom:3.5.6"))
|
||||
implementation("io.insert-koin:koin-core")
|
||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1")
|
||||
implementation(platform(libs.koin.bom))
|
||||
implementation(libs.koin.core)
|
||||
implementation(libs.coroutines.core)
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
|
|
Loading…
Reference in New Issue