|
1 | 1 | package no.nav.syfo.personstatus.application.oppfolgingsoppgave
|
2 | 2 |
|
3 |
| -import kotlinx.coroutines.Dispatchers |
4 |
| -import kotlinx.coroutines.launch |
5 |
| -import kotlinx.coroutines.runBlocking |
6 |
| -import no.nav.syfo.personstatus.infrastructure.database.DatabaseInterface |
| 3 | +import no.nav.syfo.personstatus.application.IPersonOversiktStatusRepository |
7 | 4 | import no.nav.syfo.personstatus.application.PersonBehandlendeEnhetService
|
8 | 5 | import no.nav.syfo.personstatus.domain.PersonIdent
|
9 |
| -import no.nav.syfo.personstatus.infrastructure.database.queries.createPersonOversiktStatus |
10 | 6 | import no.nav.syfo.personstatus.domain.PersonOversiktStatus
|
11 | 7 | import no.nav.syfo.personstatus.infrastructure.kafka.oppfolgingsoppgave.COUNT_KAFKA_CONSUMER_TRENGER_OPPFOLGING_READ
|
12 |
| -import no.nav.syfo.personstatus.infrastructure.database.queries.getPersonOversiktStatusList |
13 |
| -import no.nav.syfo.personstatus.infrastructure.database.queries.updateOppfolgingsoppgave |
14 | 8 | import org.slf4j.Logger
|
15 | 9 | import org.slf4j.LoggerFactory
|
16 |
| -import kotlin.collections.filter |
17 |
| -import kotlin.collections.firstOrNull |
18 |
| -import kotlin.collections.forEach |
19 | 10 | import kotlin.jvm.java
|
20 |
| -import kotlin.use |
21 | 11 |
|
22 | 12 | class OppfolgingsoppgaveService(
|
23 |
| - private val database: DatabaseInterface, |
24 | 13 | private val personBehandlendeEnhetService: PersonBehandlendeEnhetService,
|
| 14 | + private val personOversiktStatusRepository: IPersonOversiktStatusRepository, |
25 | 15 | ) {
|
26 |
| - fun processOppfolgingsoppgave(records: List<OppfolgingsoppgaveRecord>) { |
27 |
| - createOrUpdatePersonOversiktStatus(records) |
28 |
| - records.filter { it.isActive }.forEach { |
29 |
| - updateBehandlendeEnhet(PersonIdent(it.personIdent)) |
30 |
| - } |
31 |
| - } |
32 |
| - |
33 |
| - private fun createOrUpdatePersonOversiktStatus(records: List<OppfolgingsoppgaveRecord>) { |
34 |
| - database.connection.use { connection -> |
35 |
| - records.forEach { oppfolgingsOppgave -> |
36 |
| - val existingPersonOversiktStatus = connection.getPersonOversiktStatusList( |
37 |
| - fnr = oppfolgingsOppgave.personIdent, |
38 |
| - ).firstOrNull() |
39 |
| - |
40 |
| - if (existingPersonOversiktStatus == null) { |
41 |
| - val personoversiktStatus = PersonOversiktStatus( |
42 |
| - fnr = oppfolgingsOppgave.personIdent, |
43 |
| - isAktivOppfolgingsoppgave = oppfolgingsOppgave.isActive, |
44 |
| - ) |
45 |
| - connection.createPersonOversiktStatus( |
46 |
| - commit = false, |
47 |
| - personOversiktStatus = personoversiktStatus, |
48 |
| - ) |
49 |
| - } else { |
50 |
| - connection.updateOppfolgingsoppgave(oppfolgingsoppgave = oppfolgingsOppgave) |
51 |
| - } |
52 | 16 |
|
53 |
| - log.info("Received oppfolgingsOppgave with uuid=${oppfolgingsOppgave.uuid}") |
54 |
| - COUNT_KAFKA_CONSUMER_TRENGER_OPPFOLGING_READ.increment() |
55 |
| - } |
56 |
| - connection.commit() |
| 17 | + fun createOrUpdatePersonOversiktStatus(personIdent: PersonIdent, isActiveOppfolgingsoppgave: Boolean) { |
| 18 | + val existingPersonOversiktStatus = |
| 19 | + personOversiktStatusRepository.getPersonOversiktStatus(personIdent) |
| 20 | + if (existingPersonOversiktStatus == null) { |
| 21 | + val personoversiktStatus = PersonOversiktStatus( |
| 22 | + fnr = personIdent.value, |
| 23 | + isAktivOppfolgingsoppgave = isActiveOppfolgingsoppgave, |
| 24 | + ) |
| 25 | + personOversiktStatusRepository.createPersonOversiktStatus( |
| 26 | + personOversiktStatus = personoversiktStatus, |
| 27 | + ) |
| 28 | + } else { |
| 29 | + personOversiktStatusRepository.updateOppfolgingsoppgave( |
| 30 | + personIdent = personIdent, |
| 31 | + isActive = isActiveOppfolgingsoppgave, |
| 32 | + ) |
57 | 33 | }
|
| 34 | + |
| 35 | + COUNT_KAFKA_CONSUMER_TRENGER_OPPFOLGING_READ.increment() |
58 | 36 | }
|
59 | 37 |
|
60 |
| - private fun updateBehandlendeEnhet(personIdent: PersonIdent) { |
| 38 | + suspend fun updateBehandlendeEnhet(personIdent: PersonIdent) { |
61 | 39 | try {
|
62 |
| - runBlocking { |
63 |
| - launch(Dispatchers.IO) { |
64 |
| - personBehandlendeEnhetService.updateBehandlendeEnhet(personIdent = personIdent) |
65 |
| - log.info("Updated Behandlende Enhet of person after received active oppfolgingsoppgave") |
66 |
| - } |
67 |
| - } |
| 40 | + personBehandlendeEnhetService.updateBehandlendeEnhet(personIdent = personIdent) |
| 41 | + log.info("Updated Behandlende Enhet of person after received active oppfolgingsoppgave") |
68 | 42 | } catch (ex: Exception) {
|
69 | 43 | log.error(
|
70 | 44 | "Exception caught while attempting to update Behandlende Enhet of person after received active oppfolgingsoppgave",
|
|
0 commit comments