|
1 | 1 | /*
|
2 |
| - * Copyright 2002-2024 the original author or authors. |
| 2 | + * Copyright 2002-2025 the original author or authors. |
3 | 3 | *
|
4 | 4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
5 | 5 | * you may not use this file except in compliance with the License.
|
|
42 | 42 | * <a href="https://www.w3.org/TR/cors/">CORS W3C recommendation</a>.
|
43 | 43 | *
|
44 | 44 | * <p>Note that when the supplied {@link CorsConfiguration} is {@code null}, this
|
45 |
| - * implementation does not reject simple or actual requests outright but simply |
46 |
| - * avoids adding CORS headers to the response. CORS processing is also skipped |
47 |
| - * if the response already contains CORS headers. |
| 45 | + * implementation does not reject CORS requests outright but simply avoids adding |
| 46 | + * CORS headers to the response. CORS processing is also skipped if the response |
| 47 | + * already contains CORS headers. |
48 | 48 | *
|
49 | 49 | * @author Sebastien Deleuze
|
50 | 50 | * @author Rossen Stoyanchev
|
@@ -72,6 +72,10 @@ public class DefaultCorsProcessor implements CorsProcessor {
|
72 | 72 | public boolean processRequest(@Nullable CorsConfiguration config, HttpServletRequest request,
|
73 | 73 | HttpServletResponse response) throws IOException {
|
74 | 74 |
|
| 75 | + if (config == null) { |
| 76 | + return true; |
| 77 | + } |
| 78 | + |
75 | 79 | Collection<String> varyHeaders = response.getHeaders(HttpHeaders.VARY);
|
76 | 80 | if (!varyHeaders.contains(HttpHeaders.ORIGIN)) {
|
77 | 81 | response.addHeader(HttpHeaders.VARY, HttpHeaders.ORIGIN);
|
@@ -99,18 +103,8 @@ public boolean processRequest(@Nullable CorsConfiguration config, HttpServletReq
|
99 | 103 | return true;
|
100 | 104 | }
|
101 | 105 |
|
102 |
| - boolean preFlightRequest = CorsUtils.isPreFlightRequest(request); |
103 |
| - if (config == null) { |
104 |
| - if (preFlightRequest) { |
105 |
| - rejectRequest(new ServletServerHttpResponse(response)); |
106 |
| - return false; |
107 |
| - } |
108 |
| - else { |
109 |
| - return true; |
110 |
| - } |
111 |
| - } |
112 |
| - |
113 |
| - return handleInternal(new ServletServerHttpRequest(request), new ServletServerHttpResponse(response), config, preFlightRequest); |
| 106 | + return handleInternal(new ServletServerHttpRequest(request), |
| 107 | + new ServletServerHttpResponse(response), config, CorsUtils.isPreFlightRequest(request)); |
114 | 108 | }
|
115 | 109 |
|
116 | 110 | /**
|
|
0 commit comments