Skip to content

Commit

Permalink
Gjøre resten av lowercasing til upper
Browse files Browse the repository at this point in the history
  • Loading branch information
jolarsen committed Sep 6, 2024
1 parent 2aeec84 commit c902072
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ public AnsattTjeneste(OrganisasjonRepository organisasjonRepository) {
}

public BrukerProfil hentBrukerProfil(String ident) {
if (ANSATT_PROFIL.get(ident.toUpperCase()) == null) {
if (ANSATT_PROFIL.get(ident.trim().toUpperCase()) == null) {
//TODO: Her bør vi egentlig tenke om NOM er ikke riktigere å bruke - bør være raskere å slå opp navn og epost.
// Jeg har sjekket med NOM (01.07.2024) og de støtter en så lenge ikke Z-identer i dev. Men prod brukere er tilgjengelig.
var brukerProfil = mapTilDomene(new AzureBrukerKlient().brukerProfil(ident.toUpperCase()));
ANSATT_PROFIL.put(ident, brukerProfil);
var brukerProfil = mapTilDomene(new AzureBrukerKlient().brukerProfil(ident.trim().toUpperCase()));
ANSATT_PROFIL.put(ident.trim().toUpperCase(), brukerProfil);
}
return ANSATT_PROFIL.get(ident);
return ANSATT_PROFIL.get(ident.trim().toUpperCase());
}

private static BrukerProfil mapTilDomene(AzureBrukerKlient.BrukerProfilResponse klientResponse) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ public AzureBrukerKlient() {
}

public BrukerProfilResponse brukerProfil(String ident) {
var lowercasedIdent = ident.trim().toLowerCase();
var request = RestRequest.newPOSTJson(new BrukerProfilRequest(lowercasedIdent), UriBuilder.fromUri(uri).build(), restConfig);
var request = RestRequest.newPOSTJson(new BrukerProfilRequest(ident), UriBuilder.fromUri(uri).build(), restConfig);
return restClient.send(request, BrukerProfilResponse.class);
}

Expand Down

0 comments on commit c902072

Please sign in to comment.