Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Felix Belzunce Arcos
authored and
Felix Belzunce Arcos
committed
Sep 16, 2015
1 parent
faef845
commit cb8447f
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
src/main/java/org/jenkinsci/plugins/ghprb/GhprbCrumbExclusion.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,33 @@ | ||
| package org.jenkinsci.plugins.ghprb; | ||
|
|
||
| import hudson.Extension; | ||
| import hudson.security.csrf.CrumbExclusion; | ||
|
|
||
| import javax.servlet.FilterChain; | ||
| import javax.servlet.ServletException; | ||
| import javax.servlet.http.HttpServletRequest; | ||
| import javax.servlet.http.HttpServletResponse; | ||
| import java.io.IOException; | ||
|
|
||
| /** | ||
| * Excludes {@link GhprbRootAction} from the CSRF protection. | ||
| * @since 1.28 | ||
| */ | ||
| @Extension | ||
| public class GhprbCrumbExclusion extends CrumbExclusion { | ||
|
|
||
| @Override | ||
| public boolean process(HttpServletRequest req, HttpServletResponse resp, FilterChain chain) | ||
| throws IOException, ServletException { | ||
| final String pathInfo = req.getPathInfo(); | ||
| if (pathInfo != null && pathInfo.startsWith(getExclusionPath())) { | ||
| chain.doFilter(req, resp); | ||
| return true; | ||
| } | ||
| return false; | ||
| } | ||
|
|
||
| public String getExclusionPath() { | ||
| return "/" + GhprbRootAction.URL + "/"; | ||
| } | ||
| } |