-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #956 from navikt/ef-sak-controller
Stønadsperioder fra EF-Sak
- Loading branch information
Showing
17 changed files
with
564 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/kotlin/no/nav/familie/ef/søknad/infrastruktur/config/SaksbehandlingConfig.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package no.nav.familie.ef.søknad.infrastruktur.config | ||
|
||
import org.springframework.boot.context.properties.ConfigurationProperties | ||
import org.springframework.web.util.UriComponentsBuilder | ||
import java.net.URI | ||
|
||
@ConfigurationProperties("familie.ef.saksbehandling") | ||
data class SaksbehandlingConfig(val uri: URI) { | ||
|
||
internal val hentStønadsperioderUri = byggUri(PATH_HENT_STØNADSPERIODER) | ||
internal val pingUri = byggUri(PATH_PING) | ||
|
||
private fun byggUri(path: String) = UriComponentsBuilder.fromUri(uri).path(path).build().toUri() | ||
|
||
companion object { | ||
|
||
private const val PATH_HENT_STØNADSPERIODER = "/ekstern/minside/stonadsperioder" | ||
private const val PATH_PING = "ping" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/kotlin/no/nav/familie/ef/søknad/minside/SaksbehandlingClient.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package no.nav.familie.ef.søknad.minside | ||
|
||
import no.nav.familie.ef.søknad.infrastruktur.config.SaksbehandlingConfig | ||
import no.nav.familie.ef.søknad.minside.dto.StønadsperioderDto | ||
import no.nav.familie.http.client.AbstractPingableRestClient | ||
import no.nav.familie.kontrakter.felles.Ressurs | ||
import org.springframework.beans.factory.annotation.Qualifier | ||
import org.springframework.stereotype.Service | ||
import org.springframework.web.client.RestOperations | ||
import org.springframework.web.util.UriComponentsBuilder | ||
import java.net.URI | ||
import no.nav.familie.kontrakter.felles.getDataOrThrow | ||
|
||
@Service | ||
class SaksbehandlingClient( | ||
private val config: SaksbehandlingConfig, | ||
@Qualifier("tokenExchange") operations: RestOperations, | ||
) : | ||
AbstractPingableRestClient(operations, "saksbehandling") { | ||
|
||
override val pingUri: URI = config.pingUri | ||
|
||
fun hentStønadsperioderForBruker() = getForEntity<Ressurs<StønadsperioderDto>>( | ||
UriComponentsBuilder.fromUriString("${config.hentStønadsperioderUri}").build().toUri(), | ||
).getDataOrThrow() | ||
} |
19 changes: 19 additions & 0 deletions
19
src/main/kotlin/no/nav/familie/ef/søknad/minside/SaksbehandlingController.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package no.nav.familie.ef.søknad.minside | ||
|
||
import no.nav.familie.sikkerhet.EksternBrukerUtils | ||
import no.nav.security.token.support.core.api.ProtectedWithClaims | ||
import org.springframework.validation.annotation.Validated | ||
import org.springframework.web.bind.annotation.GetMapping | ||
import org.springframework.web.bind.annotation.RequestMapping | ||
import org.springframework.web.bind.annotation.RequestParam | ||
import org.springframework.web.bind.annotation.RestController | ||
import java.time.LocalDate | ||
|
||
@RestController | ||
@RequestMapping("/api/saksbehandling") | ||
@ProtectedWithClaims(issuer = EksternBrukerUtils.ISSUER_TOKENX, claimMap = ["acr=Level4"]) | ||
class SaksbehandlingController(private val saksbehandlingService: SaksbehandlingService) { | ||
|
||
@GetMapping("/stonadsperioder") | ||
fun hentStønadsperioderForBruker() = saksbehandlingService.hentStønadsperioderForBruker() | ||
} |
90 changes: 90 additions & 0 deletions
90
src/main/kotlin/no/nav/familie/ef/søknad/minside/SaksbehandlingService.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
package no.nav.familie.ef.søknad.minside | ||
|
||
import no.nav.familie.ef.søknad.minside.dto.MineStønaderDto | ||
import no.nav.familie.ef.søknad.minside.dto.PeriodeStatus | ||
import no.nav.familie.ef.søknad.minside.dto.Stønad | ||
import no.nav.familie.ef.søknad.minside.dto.StønadsperiodeDto | ||
import no.nav.familie.kontrakter.felles.Datoperiode | ||
import no.nav.familie.kontrakter.felles.erSammenhengende | ||
import org.slf4j.LoggerFactory | ||
import org.springframework.stereotype.Service | ||
import no.nav.familie.ef.søknad.minside.dto.PeriodeStatus.FREMTIDIG_UTEN_OPPHOLD | ||
import no.nav.familie.ef.søknad.minside.dto.PeriodeStatus.INGEN | ||
import no.nav.familie.ef.søknad.minside.dto.PeriodeStatus.LØPENDE_UTEN_OPPHOLD | ||
import no.nav.familie.ef.søknad.minside.dto.PeriodeStatus.TIDLIGERE_ELLER_OPPHOLD | ||
import no.nav.familie.ef.søknad.utils.DatoUtil.dagensDato | ||
|
||
@Service | ||
class SaksbehandlingService(private val saksbehandlingClient: SaksbehandlingClient) { | ||
|
||
private val logger = LoggerFactory.getLogger(javaClass) | ||
private val secureLogger = LoggerFactory.getLogger("secureLogger") | ||
|
||
fun hentStønadsperioderForBruker(): MineStønaderDto { | ||
val stønadsperioder = saksbehandlingClient.hentStønadsperioderForBruker() | ||
|
||
val mineStønaderDto = MineStønaderDto( | ||
overgangsstønad = utledStønad(stønadsperioder.overgangsstønad), | ||
barnetilsyn = utledStønad(stønadsperioder.barnetilsyn), | ||
skolepenger = utledStønad(stønadsperioder.skolepenger), | ||
) | ||
|
||
return mineStønaderDto | ||
} | ||
|
||
private fun utledStønad(stønader: List<StønadsperiodeDto>): Stønad { | ||
val perioderSortertPåDato = stønader.sortedBy { it.fraDato } | ||
|
||
val (periodeStatus, relevantePerioder) = utledPeriodeStatusMedPerioder(perioderSortertPåDato) | ||
val startDato = utledStartDato(periodeStatus, relevantePerioder) | ||
val sluttDato = utledTilDato(periodeStatus, relevantePerioder) | ||
|
||
return Stønad( | ||
periodeStatus = periodeStatus, | ||
startDato = startDato, | ||
sluttDato = sluttDato, | ||
perioder = perioderSortertPåDato, | ||
) | ||
} | ||
|
||
private fun utledTilDato( | ||
periodeStatus: PeriodeStatus, | ||
relevantePerioder: List<StønadsperiodeDto>, | ||
) = | ||
if (periodeStatus === FREMTIDIG_UTEN_OPPHOLD || periodeStatus === LØPENDE_UTEN_OPPHOLD) relevantePerioder.last().tilDato else null | ||
|
||
private fun utledStartDato( | ||
periodeStatus: PeriodeStatus, | ||
relevantePerioder: List<StønadsperiodeDto>, | ||
) = if (periodeStatus === FREMTIDIG_UTEN_OPPHOLD) relevantePerioder.first().fraDato else null | ||
|
||
private fun utledPeriodeStatusMedPerioder(perioder: List<StønadsperiodeDto>): Pair<PeriodeStatus, List<StønadsperiodeDto>> { | ||
if (perioder.isEmpty()) { | ||
return Pair(INGEN, emptyList()) | ||
} | ||
|
||
val perioderMedFremtidigSluttdato = perioder.filter { it.tilDato >= dagensDato() } | ||
val datoPerioderMedFremtidigSluttdato = | ||
perioderMedFremtidigSluttdato.map { Datoperiode(fom = it.fraDato, tom = it.tilDato) } | ||
|
||
val periodeStatus = utledPeriodeStatus(datoPerioderMedFremtidigSluttdato) | ||
|
||
return when (periodeStatus) { | ||
INGEN, TIDLIGERE_ELLER_OPPHOLD -> Pair(periodeStatus, emptyList()) | ||
LØPENDE_UTEN_OPPHOLD, FREMTIDIG_UTEN_OPPHOLD -> Pair(periodeStatus, perioderMedFremtidigSluttdato) | ||
} | ||
} | ||
|
||
private fun utledPeriodeStatus(datoPerioderMedFremtidigSluttdato: List<Datoperiode>): PeriodeStatus { | ||
val harFremtidigePerioderOgErSammenhengende = | ||
datoPerioderMedFremtidigSluttdato.erSammenhengende() && datoPerioderMedFremtidigSluttdato.isNotEmpty() | ||
val inneholderDagensDato = datoPerioderMedFremtidigSluttdato.any { it.inneholder(dagensDato()) } | ||
return if (harFremtidigePerioderOgErSammenhengende && inneholderDagensDato) { | ||
LØPENDE_UTEN_OPPHOLD | ||
} else if (harFremtidigePerioderOgErSammenhengende) { | ||
FREMTIDIG_UTEN_OPPHOLD | ||
} else { | ||
TIDLIGERE_ELLER_OPPHOLD | ||
} | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
src/main/kotlin/no/nav/familie/ef/søknad/minside/dto/MineStønader.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package no.nav.familie.ef.søknad.minside.dto | ||
|
||
import java.time.LocalDate | ||
|
||
data class StønadsperioderDto( | ||
val overgangsstønad: List<StønadsperiodeDto>, | ||
val barnetilsyn: List<StønadsperiodeDto>, | ||
val skolepenger: List<StønadsperiodeDto>, | ||
) | ||
data class StønadsperiodeDto( | ||
val fraDato: LocalDate, | ||
val tilDato: LocalDate, | ||
val beløp: Int, | ||
) | ||
|
||
data class MineStønaderDto( | ||
val overgangsstønad: Stønad, | ||
val barnetilsyn: Stønad, | ||
val skolepenger: Stønad, | ||
) | ||
|
||
data class Stønad( | ||
val periodeStatus: PeriodeStatus, | ||
val startDato: LocalDate?, // Startdato settes der hvor vi har fremtidige perioder uten opphold | ||
val sluttDato: LocalDate?, // Sluttdato settes der hvor vi har fremtidige eller løpende perioder uten opphold | ||
val perioder: List<StønadsperiodeDto>, | ||
) | ||
|
||
enum class PeriodeStatus { | ||
LØPENDE_UTEN_OPPHOLD, | ||
FREMTIDIG_UTEN_OPPHOLD, | ||
TIDLIGERE_ELLER_OPPHOLD, | ||
INGEN, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package no.nav.familie.ef.søknad.utils | ||
|
||
import java.time.LocalDate | ||
|
||
object DatoUtil { | ||
fun dagensDato(): LocalDate = LocalDate.now() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
76 changes: 76 additions & 0 deletions
76
src/test/kotlin/no/nav/familie/ef/søknad/minside/SaksbehandlingClientMock.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
package no.nav.familie.ef.søknad.minside | ||
|
||
import io.mockk.every | ||
import io.mockk.mockk | ||
import no.nav.familie.ef.søknad.minside.dto.StønadsperiodeDto | ||
import no.nav.familie.ef.søknad.minside.dto.StønadsperioderDto | ||
import org.springframework.context.annotation.Bean | ||
import org.springframework.context.annotation.Configuration | ||
import org.springframework.context.annotation.Primary | ||
import org.springframework.context.annotation.Profile | ||
import java.time.LocalDate | ||
|
||
@Configuration | ||
@Profile("mock-saksbehandling") | ||
class SaksbehandlingClientMock { | ||
|
||
@Bean | ||
@Primary | ||
fun saksbehandlingClient(): SaksbehandlingClient { | ||
val saksbehandlingCLient: SaksbehandlingClient = mockk() | ||
|
||
val stønadsperioderDto = StønadsperioderDto( | ||
overgangsstønad = stønadsperioderOvergangsstønad, | ||
barnetilsyn = stønadsperioderBarnetilsyn, | ||
skolepenger = stønadsperioderSkolepenger, | ||
) | ||
|
||
every { saksbehandlingCLient.hentStønadsperioderForBruker() } returns stønadsperioderDto | ||
|
||
return saksbehandlingCLient | ||
} | ||
|
||
private val stønadsperioderOvergangsstønad: List<StønadsperiodeDto> = listOf( | ||
StønadsperiodeDto( | ||
fraDato = LocalDate.of(2024, 1, 1), | ||
tilDato = LocalDate.of(2025, 9, 30), | ||
beløp = 19065, | ||
), | ||
StønadsperiodeDto( | ||
fraDato = LocalDate.of(2023, 12, 1), | ||
tilDato = LocalDate.of(2023, 12, 31), | ||
beløp = 4215, | ||
), | ||
StønadsperiodeDto( | ||
fraDato = LocalDate.of(2023, 11, 1), | ||
tilDato = LocalDate.of(2023, 11, 30), | ||
beløp = 13665, | ||
), | ||
) | ||
|
||
private val stønadsperioderBarnetilsyn: List<StønadsperiodeDto> = listOf( | ||
StønadsperiodeDto( | ||
fraDato = LocalDate.of(2022, 1, 1), | ||
tilDato = LocalDate.of(2023, 9, 30), | ||
beløp = 19065, | ||
), | ||
StønadsperiodeDto( | ||
fraDato = LocalDate.of(2021, 12, 1), | ||
tilDato = LocalDate.of(2021, 12, 31), | ||
beløp = 4215, | ||
), | ||
StønadsperiodeDto( | ||
fraDato = LocalDate.of(2021, 11, 1), | ||
tilDato = LocalDate.of(2021, 11, 30), | ||
beløp = 13665, | ||
), | ||
) | ||
|
||
private val stønadsperioderSkolepenger: List<StønadsperiodeDto> = listOf( | ||
StønadsperiodeDto( | ||
fraDato = LocalDate.of(2024, 3, 1), | ||
tilDato = LocalDate.of(2027, 1, 31), | ||
beløp = 19065, | ||
), | ||
) | ||
} |
Oops, something went wrong.