forked from psi-probe/psi-probe
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First attempt at deleting certificates
- Loading branch information
Showing
3 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
86 changes: 86 additions & 0 deletions
86
...obe-core/src/main/java/psiprobe/controllers/certificates/DeleteCertificateController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/** | ||
* Licensed under the GPL License. You may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.gnu.org/licenses/old-licenses/gpl-2.0.html | ||
* | ||
* THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, | ||
* WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR | ||
* PURPOSE. | ||
*/ | ||
package psiprobe.controllers.certificates; | ||
|
||
import org.springframework.beans.factory.annotation.Value; | ||
import org.springframework.stereotype.Controller; | ||
import org.springframework.web.bind.ServletRequestUtils; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.servlet.ModelAndView; | ||
import org.springframework.web.servlet.mvc.ParameterizableViewController; | ||
import org.springframework.web.servlet.view.RedirectView; | ||
|
||
import java.security.KeyStore; | ||
import javax.servlet.http.HttpServletRequest; | ||
import javax.servlet.http.HttpServletResponse; | ||
|
||
/** | ||
* The Class DeleteCertificateController. | ||
*/ | ||
@Controller | ||
public class DeleteCertificateController extends ParameterizableViewController { | ||
|
||
/** The replace pattern. */ | ||
private String replacePattern; | ||
|
||
/** | ||
* Gets the replace pattern. | ||
* | ||
* @return the replace pattern | ||
*/ | ||
public String getReplacePattern() { | ||
return this.replacePattern; | ||
} | ||
|
||
/** | ||
* Sets the replace pattern. | ||
* | ||
* @param replacePattern the new replace pattern | ||
*/ | ||
@Value("^http(s)?://[a-zA-Z\\-\\.0-9]+(:[0-9]+)?") | ||
public void setReplacePattern(String replacePattern) { | ||
this.replacePattern = replacePattern; | ||
} | ||
|
||
@RequestMapping(path = "/adm/deleteCert.htm") | ||
@Override | ||
public ModelAndView handleRequest(HttpServletRequest request, | ||
HttpServletResponse response) throws Exception { | ||
return super.handleRequest(request, response); | ||
} | ||
|
||
@Override | ||
protected ModelAndView handleRequestInternal(HttpServletRequest request, | ||
HttpServletResponse response) throws Exception { | ||
|
||
String aliasName = ServletRequestUtils.getStringParameter(request, "alias", null); | ||
|
||
// Remove alias here... | ||
KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType()); | ||
keyStore.deleteEntry(aliasName); | ||
|
||
String referer = request.getHeader("Referer"); | ||
String redirectUrl; | ||
if (referer != null) { | ||
redirectUrl = referer.replaceAll(this.replacePattern, ""); | ||
} else { | ||
redirectUrl = request.getContextPath() + getViewName(); | ||
} | ||
return new ModelAndView(new RedirectView(redirectUrl)); | ||
} | ||
|
||
@Value("redirect:/certificates.htm") | ||
@Override | ||
public void setViewName(String viewName) { | ||
super.setViewName(viewName); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters