mirror of https://github.com/usbharu/Hideout.git
style: fix lint
This commit is contained in:
parent
046ca2c155
commit
9943809bfc
|
@ -17,7 +17,9 @@ class NoteApControllerImpl(private val noteApApiService: NoteApApiService) : Not
|
|||
@CurrentSecurityContext context: SecurityContext
|
||||
): ResponseEntity<Note> {
|
||||
val userId =
|
||||
if (context.authentication is PreAuthenticatedAuthenticationToken && context.authentication.details is HttpSignatureUser) {
|
||||
if (context.authentication is PreAuthenticatedAuthenticationToken &&
|
||||
context.authentication.details is HttpSignatureUser
|
||||
) {
|
||||
(context.authentication.details as HttpSignatureUser).id
|
||||
} else {
|
||||
null
|
||||
|
|
|
@ -21,7 +21,6 @@ class NoteQueryServiceImpl(private val postRepository: PostRepository) : NoteQue
|
|||
.leftJoin(Media)
|
||||
.select { Posts.id eq id }
|
||||
.let { it.toNote() to it.toPost().first() }
|
||||
|
||||
}
|
||||
|
||||
private suspend fun ResultRow.toNote(mediaList: List<dev.usbharu.hideout.domain.model.hideout.entity.Media>): Note {
|
||||
|
|
|
@ -18,9 +18,9 @@ class HttpSignatureFilter(private val httpSignatureHeaderParser: SignatureHeader
|
|||
|
||||
val signature = try {
|
||||
httpSignatureHeaderParser.parse(HttpHeaders(headers))
|
||||
} catch (e: IllegalArgumentException) {
|
||||
} catch (_: IllegalArgumentException) {
|
||||
return null
|
||||
} catch (e: RuntimeException) {
|
||||
} catch (_: RuntimeException) {
|
||||
return ""
|
||||
}
|
||||
return signature.keyId
|
||||
|
|
Loading…
Reference in New Issue