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

AG-6 Add invalid certificate warning to certificate picker #297

Merged
Show file tree
Hide file tree
Changes from 4 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
5 changes: 5 additions & 0 deletions src/main/java/digital/slovensko/autogram/core/SigningJob.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ private DSSDocument signDocumentAsCAdeS(SigningKey key) {

signatureParameters.setSigningCertificate(key.getCertificate());
signatureParameters.setCertificateChain(key.getCertificateChain());
signatureParameters.setSignWithExpiredCertificate(true);

var dataToSign = service.getDataToSign(getDocument(), signatureParameters);
var signatureValue = key.sign(dataToSign, jobParameters.getDigestAlgorithm());
Expand All @@ -102,6 +103,7 @@ private DSSDocument signDocumentAsAsiCWithXAdeS(SigningKey key) {

signatureParameters.setSigningCertificate(key.getCertificate());
signatureParameters.setCertificateChain(key.getCertificateChain());
signatureParameters.setSignWithExpiredCertificate(true);

var dataToSign = service.getDataToSign(doc, signatureParameters);
var signatureValue = key.sign(dataToSign, getParameters().getDigestAlgorithm());
Expand All @@ -117,6 +119,7 @@ private DSSDocument signDocumentAsXAdeS(SigningKey key) {

signatureParameters.setSigningCertificate(key.getCertificate());
signatureParameters.setCertificateChain(key.getCertificateChain());
signatureParameters.setSignWithExpiredCertificate(true);

var dataToSign = service.getDataToSign(getDocument(), signatureParameters);
var signatureValue = key.sign(dataToSign, jobParameters.getDigestAlgorithm());
Expand All @@ -132,6 +135,7 @@ private DSSDocument signDocumentAsASiCWithCAdeS(SigningKey key) {

signatureParameters.setSigningCertificate(key.getCertificate());
signatureParameters.setCertificateChain(key.getCertificateChain());
signatureParameters.setSignWithExpiredCertificate(true);

var dataToSign = service.getDataToSign(getDocument(), signatureParameters);
var signatureValue = key.sign(dataToSign, jobParameters.getDigestAlgorithm());
Expand All @@ -147,6 +151,7 @@ private DSSDocument signDocumentAsPAdeS(SigningKey key) {

signatureParameters.setSigningCertificate(key.getCertificate());
signatureParameters.setCertificateChain(key.getCertificateChain());
signatureParameters.setSignWithExpiredCertificate(true);

var dataToSign = service.getDataToSign(getDocument(), signatureParameters);
var signatureValue = key.sign(dataToSign, jobParameters.getDigestAlgorithm());
Expand Down
16 changes: 15 additions & 1 deletion src/main/java/digital/slovensko/autogram/core/UserSettings.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,13 @@ public class UserSettings {
private boolean signaturesValidity;
private boolean pdfaCompliance;
private boolean serverEnabled;
private boolean expiredCertsEnabled;
private List<String> trustedList;

private UserSettings(SignatureLevel signatureLevel, String driver, boolean en319132,
boolean signIndividually, boolean correctDocumentDisplay,
boolean signaturesValidity, boolean pdfaCompliance,
boolean serverEnabled, List<String> trustedList) {
boolean serverEnabled, boolean expiredCertsEnabled, List<String> trustedList) {
this.signatureLevel = signatureLevel;
this.driver = driver;
this.en319132 = en319132;
Expand All @@ -32,6 +33,7 @@ private UserSettings(SignatureLevel signatureLevel, String driver, boolean en319
this.signaturesValidity = signaturesValidity;
this.pdfaCompliance = pdfaCompliance;
this.serverEnabled = serverEnabled;
this.expiredCertsEnabled = expiredCertsEnabled;
this.trustedList = trustedList;
}

Expand All @@ -46,6 +48,7 @@ public static UserSettings load() {
var signaturesValidity = prefs.getBoolean("SIGNATURES_VALIDITY", true);
var pdfaCompliance = prefs.getBoolean("PDFA_COMPLIANCE", true);
var serverEnabled = prefs.getBoolean("SERVER_ENABLED", true);
var expiredCertsEnabled = prefs.getBoolean("EXPIRED_CERTS_ENABLED", false);
var trustedList = prefs.get("TRUSTED_LIST", "SK,CZ,AT,PL,HU");

var signatureLevelStringConverter = new SignatureLevelStringConverter();
Expand All @@ -65,6 +68,7 @@ public static UserSettings load() {
signaturesValidity,
pdfaCompliance,
serverEnabled,
expiredCertsEnabled,
trustedList == null ? new ArrayList<>() : new ArrayList<>(List.of(trustedList.split(","))));
}

Expand Down Expand Up @@ -144,6 +148,15 @@ public void setServerEnabled(boolean serverEnabled) {
save();
}

public boolean isExpiredCertsEnabled() {
return expiredCertsEnabled;
}

public void setExpiredCertsEnabled(boolean expiredCertsEnabled) {
this.expiredCertsEnabled = expiredCertsEnabled;
save();
}

public List<String> getTrustedList() {
return trustedList;
}
Expand All @@ -169,6 +182,7 @@ private void save() {
prefs.putBoolean("SIGNATURES_VALIDITY", signaturesValidity);
prefs.putBoolean("PDFA_COMPLIANCE", pdfaCompliance);
prefs.putBoolean("SERVER_ENABLED", serverEnabled);
prefs.putBoolean("EXPIRED_CERTS_ENABLED", expiredCertsEnabled);
prefs.put("TRUSTED_LIST", trustedList.stream().collect(Collectors.joining(",")));
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package digital.slovensko.autogram.core.errors;

public class NoValidKeysDetectedException extends AutogramException {
public NoValidKeysDetectedException() {
super("Nastala chyba", "Nenašli sa žiadne platné podpisové klúče", "Na karte sa pravdepodobne nenachádzajú žiadne platné klúče, ktoré by sa dali použiť na podpisovanie. Boli však nájdené ekspirované kľúče, ktorými je možné podpisovať až po zmene v nastaveniach.\n\nV prípade nového občianskeho preukazu to môže znamenať, že si potrebujete certifikáty na podpisovanie cez občiansky preukaz vydať. Robí sa to pomocou eID klienta.", null);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
super("Nastala chyba", "Nenašli sa žiadne platné podpisové klúče", "Na karte sa pravdepodobne nenachádzajú žiadne platné klúče, ktoré by sa dali použiť na podpisovanie. Boli však nájdené ekspirované kľúče, ktorými je možné podpisovať až po zmene v nastaveniach.\n\nV prípade nového občianskeho preukazu to môže znamenať, že si potrebujete certifikáty na podpisovanie cez občiansky preukaz vydať. Robí sa to pomocou eID klienta.", null);
super("Nastala chyba", "Nenašli sa žiadne platné podpisové certifikáty", "V úložisku certifikátov sa pravdepodobne nenachádzajú žiadne platné podpisové certifikáty, ktoré by sa dali použiť na podpisovanie. Boli však nájdené ekspirované certifikáty, ktorými je možné podpisovať až po zmene v nastaveniach.\n\nV prípade nového občianskeho preukazu to môže znamenať, že si potrebujete certifikáty na podpisovanie cez občiansky preukaz vydať. Robí sa to pomocou obslužného softvéru eID klient.", null);

}
}
16 changes: 9 additions & 7 deletions src/main/java/digital/slovensko/autogram/ui/cli/CliUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,17 @@ public void pickKeyAndThen(List<DSSPrivateKeyEntry> keys, Consumer<DSSPrivateKey
return;
}

var i = new AtomicInteger(1);
System.out.println("Pick Key:");
keys.forEach(key -> {
System.out.print("[" + i + "] ");
System.out.println(parseCN(key.getCertificate().getSubject().getRFC2253()));
i.addAndGet(1);
});
var pickedKey = keys.get(CliUtils.readInteger() - 1);
var i = 1;
for (var key : keys) {
var keyText = parseCN(key.getCertificate().getSubject().getRFC2253());
if (!key.getCertificate().isValidOn(new java.util.Date()))
keyText += " (expired certificate)";

System.out.println("[" + i++ + "] " + keyText);
}

var pickedKey = keys.get(CliUtils.readInteger() - 1);
callback.accept(pickedKey);
}

Expand Down
14 changes: 13 additions & 1 deletion src/main/java/digital/slovensko/autogram/ui/gui/GUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import digital.slovensko.autogram.core.errors.AutogramException;
import digital.slovensko.autogram.core.errors.NoDriversDetectedException;
import digital.slovensko.autogram.core.errors.NoKeysDetectedException;
import digital.slovensko.autogram.core.errors.NoValidKeysDetectedException;
import digital.slovensko.autogram.core.errors.SigningCanceledByUserException;
import digital.slovensko.autogram.core.errors.TokenRemovedException;
import digital.slovensko.autogram.core.visualization.Visualization;
Expand Down Expand Up @@ -178,7 +179,18 @@ public void pickKeyAndThen(List<DSSPrivateKeyEntry> keys, Consumer<DSSPrivateKey
return;
}

var controller = new PickKeyDialogController(keys, callback);
if (!userSettings.isExpiredCertsEnabled())
keys = keys.stream().filter(k -> k.getCertificate().isValidOn(new java.util.Date())).toList();

if (keys.isEmpty()) {
showError(new NoValidKeysDetectedException());
refreshKeyOnAllJobs();
enableSigningOnAllJobs();

return;
}

var controller = new PickKeyDialogController(keys, callback, userSettings.isExpiredCertsEnabled());
var root = GUIUtils.loadFXML(controller, "pick-key-dialog.fxml");

var stage = new Stage();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
import eu.europa.esig.dss.token.DSSPrivateKeyEntry;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.Node;
import javafx.scene.control.RadioButton;
import javafx.scene.control.ToggleGroup;
import javafx.scene.control.Tooltip;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.text.Text;
import javafx.util.Duration;
Expand All @@ -19,6 +21,7 @@
public class PickKeyDialogController {
private final Consumer<DSSPrivateKeyEntry> callback;
private final List<DSSPrivateKeyEntry> keys;
private final boolean expiredCertsEnabled;

@FXML
VBox formGroup;
Expand All @@ -31,20 +34,29 @@ public class PickKeyDialogController {
private ToggleGroup toggleGroup;


public PickKeyDialogController(List<DSSPrivateKeyEntry> keys, Consumer<DSSPrivateKeyEntry> callback) {
public PickKeyDialogController(List<DSSPrivateKeyEntry> keys, Consumer<DSSPrivateKeyEntry> callback, boolean expiredCertsEnabled) {
this.keys = keys;
this.callback = callback;
this.expiredCertsEnabled = expiredCertsEnabled;
}

public void initialize() {
toggleGroup = new ToggleGroup();
for (DSSPrivateKeyEntry key : keys) {
for (var key : keys) {
Node badge = new HBox();
if (!key.getCertificate().isValidOn(new java.util.Date())) {
badge = SignatureBadgeFactory.createInfoBadge("Ekspirovaný certifikát");

if (!expiredCertsEnabled)
continue;
}

var radioButton = new RadioButton(parseCN(key.getCertificate().getSubject().getRFC2253()));
radioButton.setToggleGroup(toggleGroup);
radioButton.setUserData(key);
radios.getChildren().add(radioButton);
radios.getChildren().add(new HBox(radioButton, badge));

Tooltip tooltip = new Tooltip(buildTooltipLabel(key));
var tooltip = new Tooltip(buildTooltipLabel(key));
tooltip.setShowDuration(Duration.seconds(10));
tooltip.setWrapText(true);
tooltip.setPrefWidth(400);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ public class SettingsDialogController {
@FXML
private HBox checkPDFAComplianceRadios;
@FXML
private HBox expiredCertsRadios;
@FXML
private HBox localServerEnabledRadios;
@FXML
private Button saveButton;
Expand All @@ -54,6 +56,7 @@ public void initialize() {
initializeCorrectDocumentDisplayCheckBox();
initializeSignatureValidationCheckBox();
initializeCheckPDFAComplianceCheckBox();
initializeExpiredCertsEnabledCheckBox();
initializeLocalServerEnabledCheckBox();
initializeTrustedCountriesList();
}
Expand Down Expand Up @@ -128,6 +131,11 @@ private void initializeCheckPDFAComplianceCheckBox() {
userSettings.isPdfaCompliance());
}

private void initializeExpiredCertsEnabledCheckBox() {
initializeBooleanRadios(expiredCertsRadios, t -> userSettings.setExpiredCertsEnabled(t),
userSettings.isExpiredCertsEnabled());
}

private void initializeLocalServerEnabledCheckBox() {
initializeBooleanRadios(localServerEnabledRadios, t -> userSettings.setServerEnabled(t),
userSettings.isServerEnabled());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ public static Node createWarningBadge(String label) {
return createBadge(label, "autogram-tag-warning");
}

public static Node createInfoBadge(String label) {
return createBadge(label, "autogram-tag-info");
}

public static Node createBadgeFromQualification(SignatureQualification qualification) {
if (qualification == null)
return createInProgressBadge();
Expand Down
30 changes: 22 additions & 8 deletions src/main/resources/digital/slovensko/autogram/ui/gui/idsk.css
Original file line number Diff line number Diff line change
Expand Up @@ -618,18 +618,17 @@ TextFlow.autogram-body-s {
-fx-padding: 0 -1em 0 0;
}

.autogram-settings-tab-pane AnchorPane {
.autogram-settings-tab-pane ScrollPane {
-fx-border-color: -autogram-input-border-colour;
-fx-border-width: 1px;
-fx-max-width: 52em;
-fx-min-width: 52em;
-fx-max-height: 560px;
-fx-hbar-policy: never;
}

.autogram-settings-tab-pane AnchorPane > VBox,
.autogram-settings-tab-pane .container {
-fx-padding: 2em;
-fx-max-width: 52em;
-fx-min-width: 52em;
.autogram-settings-tab-pane ScrollPane .container {
-fx-padding: 2em 0 2em 2em;
-fx-max-width: 50em;
-fx-min-width: 50em;
}

.autogram-settings-row {
Expand Down Expand Up @@ -882,6 +881,11 @@ TextFlow.autogram-body-s {
-fx-spacing: 10px;
}

.autogram-radios HBox {
-fx-spacing: 1em;
-fx-alignment: center-left;
}

.autogram-actions {
-fx-spacing: 15px;
-fx-alignment: center-left;
Expand Down Expand Up @@ -998,6 +1002,11 @@ TextFlow.autogram-body-s {
-fx-border-color: #FFF7BF;
}

.autogram-tag-info {
-fx-background-color: #eeefef;
-fx-border-color: #eeefef;
}

.autogram-tag-processing Text {
-fx-text-fill: #144E81;
-fx-fill: #144E81;
Expand Down Expand Up @@ -1028,6 +1037,11 @@ TextFlow.autogram-body-s {
-fx-fill: #594D00;
}

.autogram-tag-info Text {
-fx-text-fill: #383f43;
-fx-fill: #383f43;
}

.autogram-progress-bar {
-fx-border-color: -autogram-input-border-colour;
/* -fx-background-color: -autogram-focus-colour; */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<?import javafx.scene.text.TextFlow?>
<VBox xmlns="http://javafx.com/javafx"
xmlns:fx="http://javafx.com/fxml"
prefHeight="200" prefWidth="450" minWidth="450"
prefHeight="200" prefWidth="600"
fx:id="mainBox">

<VBox fx:id="formGroup" styleClass="autogram-form-group">
Expand Down
Loading