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

Mocker innloggetBrukerInfo for nav-ansatt i Q1. #24

Merged
merged 2 commits into from
Nov 18, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import static no.nav.k9.abac.BeskyttetRessursKoder.APPLIKASJON;
import static no.nav.k9.felles.sikkerhet.abac.BeskyttetRessursActionAttributt.READ;
import static no.nav.k9.felles.sikkerhet.abac.PepImpl.ENV;

import java.util.Collection;

Expand All @@ -23,6 +24,7 @@
import no.nav.k9.felles.konfigurasjon.konfig.KonfigVerdi;
import no.nav.k9.felles.sikkerhet.abac.BeskyttetRessurs;
import no.nav.k9.sikkerhet.context.SubjectHandler;
import org.slf4j.Logger;

@Path("/nav-ansatt")
@ApplicationScoped
Expand All @@ -39,6 +41,8 @@ public class NavAnsattRestTjeneste {
private String gruppenavnKode7;
private boolean skalViseDetaljerteFeilmeldinger;

private static final Logger log = org.slf4j.LoggerFactory.getLogger(NavAnsattRestTjeneste.class);

public NavAnsattRestTjeneste() {
//NOSONAR
}
Expand Down Expand Up @@ -74,6 +78,13 @@ public NavAnsattRestTjeneste(
@BeskyttetRessurs(action = READ, resource = APPLIKASJON, sporingslogg = false)
public InnloggetAnsattDto innloggetBruker() {
String ident = SubjectHandler.getSubjectHandler().getUid();

if (!ENV.isProd()) {
log.info("Kjører i ikke-prod, mocket bruker.");
return mockInnloggetBrukerDto(ident);
}

// FIXME: Erstatt med Microsoft Graph.
LdapBruker ldapBruker = new LdapBrukeroppslag().hentBrukerinformasjon(ident);
return getInnloggetBrukerDto(ident, ldapBruker);
}
Expand All @@ -95,4 +106,20 @@ InnloggetAnsattDto getInnloggetBrukerDto(String ident, LdapBruker ldapBruker) {
.create();
}

InnloggetAnsattDto mockInnloggetBrukerDto(String ident) {
String navn = "Mocket saksbehandler";
return InnloggetAnsattDto.builder()
.setBrukernavn(ident)
.setNavn(navn)
.setKanSaksbehandle(true)
.setKanVeilede(true)
.setKanBeslutte(true)
.setKanOverstyre(true)
.setKanBehandleKodeEgenAnsatt(true)
.setKanBehandleKode6(true)
.setKanBehandleKode7(true)
.skalViseDetaljerteFeilmeldinger(this.skalViseDetaljerteFeilmeldinger)
.create();
}

}
Loading