Skip to content

Commit

Permalink
FIX ITEM-404-retirer-un-mot-de-passe-dans-item-api :
Browse files Browse the repository at this point in the history
     - ajout d'un paramètre dans application-dev.properties, application-test.properties, application-prod.properties
     - ajout d'un paramètre dans TraitementService.java
     - suppression d'un paramètre dans Constant.java
  • Loading branch information
EryneKL committed Nov 29, 2024
1 parent db14421 commit 652a12e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
3 changes: 0 additions & 3 deletions core/src/main/java/fr/abes/item/core/constant/Constant.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,9 +157,6 @@ public class Constant implements Serializable {
public static final String ERR_FILE_ZONEINCOMPLETE = "L'en-tête du fichier est non conforme. Les données d’exemplaires sont incomplètes : il manque une ou plusieurs sous-zones. Merci de consulter la documentation utilisateur à cette adresse : <a href=\"http://documentation.abes.fr/aideitem/index.html\" target=\"_blank\" style=\"color:white\">http://documentation.abes.fr/aideitem/index.html</a>";
public static final String ERR_FILE_CARACTERES = "L'en-tête du fichier est non conforme : il ne contient pas de données d’exemplaires Merci de consulter la documentation utilisateur à cette adresse : <a href=\"http://documentation.abes.fr/aideitem/index.html\" target=\"_blank\" style=\"color:white\">http://documentation.abes.fr/aideitem/index.html</a>";

/**Sudoc pass*/
public static final String PASSSUDOC = "pabnot6";

/**PPN, RCR, EPN max size*/
public static final int TAILLEMAX = 9;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,16 @@ public class TraitementService {
@Getter
private ProcessCBS cbs;

@Value("${sudoc.pass}")
private String passsudoc;

public TraitementService() {
cbs = new ProcessCBS();
}

public void authenticate(String login) throws CBSException, IOException {
this.cbs = new ProcessCBS();
this.cbs.authenticate(serveurSudoc, portSudoc, login, Constant.PASSSUDOC);
this.cbs.authenticate(serveurSudoc, portSudoc, login, passsudoc);
}

/**
Expand Down
1 change: 1 addition & 0 deletions web/src/main/resources/application-dev.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ sudoc.serveur=
sudoc.port=
#login permettant de tester si le CBS répond
sudoc.login=
sudoc.pass=

# Configuration des logs
logging.level.root=INFO
Expand Down
1 change: 1 addition & 0 deletions web/src/main/resources/application-prod.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ sudoc.serveur=
sudoc.port=
#login permettant de tester si le CBS répond
sudoc.login=
sudoc.pass=

# Configuration des logs
logging.level.root=WARN
Expand Down
1 change: 1 addition & 0 deletions web/src/main/resources/application-test.properties
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ sudoc.serveur=
sudoc.port=
#login permettant de tester si le CBS répond
sudoc.login=
sudoc.pass=

# Configuration des logs
logging.level.root=INFO
Expand Down

0 comments on commit 652a12e

Please sign in to comment.