-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NIFI-13017: Replace JoltTransformJSON custom UI (#9117)
* NIFI-13017: - Remove old JoltTransformJSON custom UI. - Update build to use new JoltTransformJSON custom UI. - Fix revision query parameter. * NIFI-13017: - Excluding jolt transform json ui in workflow ci. * NIFI-13017: - Excluding jolt nar in workflow ci. * NIFI-13017: - Excluding jolt ui war from code coverage. * NIFI-13017: - Incorporating nifi-web-servlet-shared. - Moving QueryStringToFragmentFilter to nifi-web-servlet-shared. This closes #9117
- Loading branch information
Showing
64 changed files
with
133 additions
and
6,477 deletions.
There are no files selected for viewing
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
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
52 changes: 52 additions & 0 deletions
52
...-shared/src/main/java/org/apache/nifi/web/servlet/filter/QueryStringToFragmentFilter.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,52 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.nifi.web.servlet.filter; | ||
|
||
import jakarta.servlet.Filter; | ||
import jakarta.servlet.FilterChain; | ||
import jakarta.servlet.ServletException; | ||
import jakarta.servlet.ServletRequest; | ||
import jakarta.servlet.ServletResponse; | ||
import jakarta.servlet.http.HttpServletRequest; | ||
import jakarta.servlet.http.HttpServletResponse; | ||
import org.apache.nifi.web.servlet.shared.RequestUriBuilder; | ||
|
||
import java.io.IOException; | ||
import java.net.URI; | ||
|
||
public class QueryStringToFragmentFilter implements Filter { | ||
|
||
@Override | ||
public void doFilter(ServletRequest request, ServletResponse response, FilterChain filterChain) throws IOException, ServletException { | ||
final HttpServletRequest httpServletRequest = (HttpServletRequest) request; | ||
final String queryString = httpServletRequest.getQueryString(); | ||
|
||
if (queryString != null) { | ||
// Some NiFi front ends use hash based routing, so they don't need to know the baseHref. With hash based | ||
// routing query parameters are implemented within the URL fragment. Because of this any query parameters on the | ||
// original URL are not considered. This filter captures those and adds them to the fragment. | ||
final RequestUriBuilder requestUriBuilder = RequestUriBuilder.fromHttpServletRequest(httpServletRequest).path(httpServletRequest.getContextPath()).fragment("/?" + queryString); | ||
final URI redirectUri = requestUriBuilder.build(); | ||
|
||
final HttpServletResponse httpServletResponse = (HttpServletResponse) response; | ||
httpServletResponse.sendRedirect(redirectUri.toString()); | ||
} else { | ||
filterChain.doFilter(request, response); | ||
} | ||
} | ||
} |
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
Oops, something went wrong.