Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump com.pinterest.ktlint:ktlint-cli from 1.3.1 to 1.4.1 #1199

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@
<dependency>
<groupId>com.pinterest.ktlint</groupId>
<artifactId>ktlint-cli</artifactId>
<version>1.3.1</version>
<version>1.4.1</version>
</dependency>
<!-- additional 3rd party ruleset(s) can be specified here -->
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ data class PersonIdent(
val id: String,
)

fun Person.harAdresseGradering(): Boolean =
this.adressebeskyttelseGradering.any { it.erFortrolig() || it.erStrengtFortrolig() }
fun Person.harAdresseGradering(): Boolean = this.adressebeskyttelseGradering.any { it.erFortrolig() || it.erStrengtFortrolig() }

fun Person.harBostedsadresse(): Boolean = this.bostedsadresse != null
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,7 @@ class JournalhendelseService(
Pair(kontantstøtteKanalCounter, "kontantstotte.journalhendelse.mottatt")
}

private fun skalBehandleJournalpost(journalpost: Journalpost) =
GYLDIGE_JOURNALPOST_TEMAER.contains(journalpost.tema) && journalpost.journalposttype == Journalposttype.I
private fun skalBehandleJournalpost(journalpost: Journalpost) = GYLDIGE_JOURNALPOST_TEMAER.contains(journalpost.tema) && journalpost.journalposttype == Journalposttype.I

private fun opprettJournalhendelseRutingTask(journalpost: Journalpost) {
val taskType =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,18 +74,15 @@ class LeesahConsumer(
ack.acknowledge()
}

private fun GenericRecord.hentOpplysningstype() =
get("opplysningstype").toString()
private fun GenericRecord.hentOpplysningstype() = get("opplysningstype").toString()

private fun GenericRecord.hentPersonidenter() =
(get("personidenter") as GenericData.Array<*>)
.map { it.toString() }

private fun GenericRecord.hentEndringstype() =
get("endringstype").toString()
private fun GenericRecord.hentEndringstype() = get("endringstype").toString()

private fun GenericRecord.hentHendelseId() =
get("hendelseId").toString()
private fun GenericRecord.hentHendelseId() = get("hendelseId").toString()

private fun GenericRecord.hentDødsdato(): LocalDate? = deserialiserDatofeltFraSubrecord("doedsfall", "doedsdato")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,5 @@ class ArbeidsfordelingClient(
fun hentBehandlendeEnhetPåIdent(
personIdent: String,
tema: Tema,
): Enhet =
hentBehandlendeEnheterPåIdent(personIdent, tema).singleOrNull() ?: throw IllegalStateException("Forventet bare 1 enhet på ident men fantes flere")
): Enhet = hentBehandlendeEnheterPåIdent(personIdent, tema).singleOrNull() ?: throw IllegalStateException("Forventet bare 1 enhet på ident men fantes flere")
}
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,7 @@ object ArkiverDokumentRequestMapper {
private fun genererEksternReferanseId(
id: Long,
dokumenttype: Dokumenttype,
) =
"${id}_${postfixForDokumenttype(dokumenttype)}"
) = "${id}_${postfixForDokumenttype(dokumenttype)}"

private fun postfixForDokumenttype(dokumenttype: Dokumenttype) =
when (dokumenttype) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,45 +53,42 @@ class SøknadStatusService(
private fun lagStatusDto(
tidSidenSisteSøknad: Duration,
søknadstype: Søknadstype,
) =
when {
erTidspunktMedForventetAktivitet() -> lagDagStatus(tidSidenSisteSøknad, søknadstype)
else -> lagNattStatus(tidSidenSisteSøknad, søknadstype)
}
) = when {
erTidspunktMedForventetAktivitet() -> lagDagStatus(tidSidenSisteSøknad, søknadstype)
else -> lagNattStatus(tidSidenSisteSøknad, søknadstype)
}

private fun lagDagStatus(
tidSidenSisteSøknad: Duration,
søknadstype: Søknadstype,
) =
when {
tidSidenSisteSøknad.toHours() >= 12 ->
StatusDto(
status = Plattformstatus.DOWN,
description = "Det er over 12 timer siden sist vi mottok en søknad om ${søknadstype.name.lowercase()}",
)

else -> StatusDto(status = Plattformstatus.OK, description = "Alt er OK", logLink = null)
}
) = when {
tidSidenSisteSøknad.toHours() >= 12 ->
StatusDto(
status = Plattformstatus.DOWN,
description = "Det er over 12 timer siden sist vi mottok en søknad om ${søknadstype.name.lowercase()}",
)

else -> StatusDto(status = Plattformstatus.OK, description = "Alt er OK", logLink = null)
}

private fun lagNattStatus(
tidSidenSisteSøknad: Duration,
søknadstype: Søknadstype,
) =
when {
tidSidenSisteSøknad.toHours() >= 24 ->
StatusDto(
status = Plattformstatus.DOWN,
description = "Det er over 24 timer siden sist vi mottok en søknad om ${søknadstype.name.lowercase()}",
)

tidSidenSisteSøknad.toHours() >= 12 ->
StatusDto(
status = Plattformstatus.ISSUE,
description = "Det er over 12 timer siden sist vi mottok en søknad om ${søknadstype.name.lowercase()}",
)

else -> StatusDto(status = Plattformstatus.OK, description = "Alt er OK", logLink = null)
}
) = when {
tidSidenSisteSøknad.toHours() >= 24 ->
StatusDto(
status = Plattformstatus.DOWN,
description = "Det er over 24 timer siden sist vi mottok en søknad om ${søknadstype.name.lowercase()}",
)

tidSidenSisteSøknad.toHours() >= 12 ->
StatusDto(
status = Plattformstatus.ISSUE,
description = "Det er over 12 timer siden sist vi mottok en søknad om ${søknadstype.name.lowercase()}",
)

else -> StatusDto(status = Plattformstatus.OK, description = "Alt er OK", logLink = null)
}

private fun erHelg() = LocalDateTime.now().dayOfWeek.value in 6..7

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ class BarnetrygdSøknadService(

fun hentDBSøknad(søknadId: Long): DBBarnetrygdSøknad? = søknadRepository.hentDBSøknad(søknadId)

fun finnDBSøknadFraJournalpost(journalpostId: String): DBBarnetrygdSøknad? =
søknadRepository.finnDBSøknadForJournalpost(journalpostId = journalpostId)
fun finnDBSøknadFraJournalpost(journalpostId: String): DBBarnetrygdSøknad? = søknadRepository.finnDBSøknadForJournalpost(journalpostId = journalpostId)

fun hentDBSøknadFraJournalpost(journalpostId: String): DBBarnetrygdSøknad =
søknadRepository.finnDBSøknadForJournalpost(journalpostId = journalpostId)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,12 @@ class KontantstøtteSøknadController(
@PostMapping(value = ["/soknad/v4"], consumes = [MULTIPART_FORM_DATA_VALUE])
fun taImotSøknad(
@RequestPart("søknad") søknad: KontantstøtteSøknadKontraktV4,
): ResponseEntity<Ressurs<Kvittering>> =
mottaVersjonertSøknadOgSendMetrikker(versjonertKontantstøtteSøknad = KontantstøtteSøknadV4(kontantstøtteSøknad = søknad))
): ResponseEntity<Ressurs<Kvittering>> = mottaVersjonertSøknadOgSendMetrikker(versjonertKontantstøtteSøknad = KontantstøtteSøknadV4(kontantstøtteSøknad = søknad))

@PostMapping(value = ["/soknad/v5"], consumes = [MULTIPART_FORM_DATA_VALUE])
fun taImotSøknad(
@RequestPart("søknad") søknad: KontantstøtteSøknadKontraktV5,
): ResponseEntity<Ressurs<Kvittering>> =
mottaVersjonertSøknadOgSendMetrikker(versjonertKontantstøtteSøknad = KontantstøtteSøknadV5(kontantstøtteSøknad = søknad))
): ResponseEntity<Ressurs<Kvittering>> = mottaVersjonertSøknadOgSendMetrikker(versjonertKontantstøtteSøknad = KontantstøtteSøknadV5(kontantstøtteSøknad = søknad))

fun mottaVersjonertSøknadOgSendMetrikker(versjonertKontantstøtteSøknad: VersjonertKontantstøtteSøknad): ResponseEntity<Ressurs<Kvittering>> =
try {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ class KontantstøtteSøknadService(

fun hentDBKontantstøtteSøknad(søknadId: Long): DBKontantstøtteSøknad? = kontantstøtteSøknadRepository.hentSøknad(søknadId)

fun finnDBKontantstøtteSøknadForJournalpost(journalpostId: String): DBKontantstøtteSøknad? =
kontantstøtteSøknadRepository.finnSøknadForJournalpost(journalpostId = journalpostId)
fun finnDBKontantstøtteSøknadForJournalpost(journalpostId: String): DBKontantstøtteSøknad? = kontantstøtteSøknadRepository.finnSøknadForJournalpost(journalpostId = journalpostId)

fun hentDBKontantstøtteSøknadForJournalpost(journalpostId: String): DBKontantstøtteSøknad =
kontantstøtteSøknadRepository.finnSøknadForJournalpost(journalpostId = journalpostId)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -503,8 +503,7 @@ class VurderLivshendelseService(
personErBruker: Boolean,
formatertDato: String,
personIdent: String,
): String =
"${VurderLivshendelseType.SIVILSTAND.beskrivelse}: ${if (personErBruker) "bruker" else "barn $personIdent"} er registrert som gift fra $formatertDato"
): String = "${VurderLivshendelseType.SIVILSTAND.beskrivelse}: ${if (personErBruker) "bruker" else "barn $personIdent"} er registrert som gift fra $formatertDato"

companion object {
const val RESULTAT_INNVILGET = "INNVILGET"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ class ArbeidsfordelingClientTest {
assertThat(response.single().enhetNavn).isEqualTo("NAV Familie- og pensjonsytelser midlertidig enhet")
}

private fun gyldigEnhetResponse() = """
private fun gyldigEnhetResponse() =
"""
{
"data": [
{
Expand Down