Skip to content
Snippets Groups Projects
Verified Commit 97e4f79c authored by Michael Burgardt's avatar Michael Burgardt Committed by Pierre Wolff
Browse files

ISSUE-205 Reload page after deploying new SSH key

By reloading the page after deploy the key becomes "fully accessable" and immediate deletion is no longer a problem
parent 6f37e77f
No related branches found
No related tags found
No related merge requests found
......@@ -30,6 +30,10 @@ import edu.kit.scc.webreg.service.identity.IdentityService;
import edu.kit.scc.webreg.service.ssh.SshPubKeyService;
import edu.kit.scc.webreg.session.SessionManager;
import edu.kit.scc.webreg.util.FacesMessageGenerator;
import java.io.IOException;
import jakarta.faces.context.ExternalContext;
import jakarta.faces.context.FacesContext;
import jakarta.servlet.http.HttpServletRequest;
@Named
@ViewScoped
......@@ -125,12 +129,17 @@ public class UserSshKeyManagementBean implements Serializable {
newKey = "";
newName = "";
messageGenerator.addResolvedInfoMessage("info", "ssh_key_deployed", true);
ExternalContext ec = FacesContext.getCurrentInstance().getExternalContext();
ec.redirect(((HttpServletRequest) ec.getRequest()).getRequestURI());
} catch (UnsupportedKeyTypeException e) {
logger.warn("An error occured whilst deploying key: " + e.getMessage());
messageGenerator.addResolvedErrorMessage("sshKeyMessage", "error_msg", e.toString(), false);
} catch (SshPubKeyBlacklistedException e) {
logger.warn("User {} tried to deploy blacklisted key", identity.getId());
messageGenerator.addResolvedErrorMessage("sshKeyMessage", "error", "key_blacklisted", true);
} catch (IOException e) {
logger.warn("An error occured trying to reload page after deploying key: " + e.getMessage());
messageGenerator.addResolvedErrorMessage("sshKeyMessage", "error_msg", e.toString(), false);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment