|
| 1 | +/* |
| 2 | + * The MIT License |
| 3 | + * |
| 4 | + * Copyright (c) 2026, CloudBees, Inc. |
| 5 | + * |
| 6 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | + * of this software and associated documentation files (the "Software"), to deal |
| 8 | + * in the Software without restriction, including without limitation the rights |
| 9 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | + * copies of the Software, and to permit persons to whom the Software is |
| 11 | + * furnished to do so, subject to the following conditions: |
| 12 | + * |
| 13 | + * The above copyright notice and this permission notice shall be included in |
| 14 | + * all copies or substantial portions of the Software. |
| 15 | + * |
| 16 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 19 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | + * THE SOFTWARE. |
| 23 | + */ |
| 24 | + |
| 25 | +package jenkins.util; |
| 26 | + |
| 27 | +import hudson.Util; |
| 28 | +import jakarta.servlet.ServletException; |
| 29 | +import java.io.IOException; |
| 30 | +import org.kohsuke.stapler.HttpResponse; |
| 31 | +import org.kohsuke.stapler.StaplerRequest2; |
| 32 | +import org.kohsuke.stapler.StaplerResponse2; |
| 33 | + |
| 34 | +/** |
| 35 | + * An HTTP response that redirects the client to the given URL. |
| 36 | + * Unlike {@link org.kohsuke.stapler.HttpRedirect}, this implements a client-side redirect (using meta tag and/or JavaScript). |
| 37 | + * This allows the redirect to work even when Content Security Policy is enforced in Chrome |
| 38 | + * (which applies {@code form-action} to redirects after form submission). |
| 39 | + * @see <a href="https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Content-Security-Policy/form-action">MDN documentation on form-action</a> |
| 40 | + * @see <a href="https://github.com/w3c/webappsec-csp/issues/8">Content Security Policy issue discussing this behavior</a> |
| 41 | + * @since TODO |
| 42 | + */ |
| 43 | +public record ClientHttpRedirect(String redirectUrl) implements HttpResponse { |
| 44 | + @Override |
| 45 | + public void generateResponse(StaplerRequest2 req, StaplerResponse2 rsp, Object o) throws IOException, ServletException { |
| 46 | + rsp.setContentType("text/html;charset=UTF-8"); |
| 47 | + Util.printRedirect(req.getContextPath(), redirectUrl, redirectUrl, rsp.getWriter()); |
| 48 | + } |
| 49 | +} |
0 commit comments