mirror of https://github.com/apache/nifi.git
Merge branch 'develop' of http://git-wip-us.apache.org/repos/asf/incubator-nifi into develop
This commit is contained in:
commit
c201aa1d08
|
@ -0,0 +1,42 @@
|
|||
/*
|
||||
* 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.util;
|
||||
|
||||
public class EscapeUtils {
|
||||
|
||||
/**
|
||||
* Escapes the specified html by replacing &, <, >, ", ', /
|
||||
* with their corresponding html entity. If html is null, null is returned.
|
||||
*
|
||||
* @param html
|
||||
* @return
|
||||
*/
|
||||
public static String escapeHtml(String html) {
|
||||
if (html == null) {
|
||||
return null;
|
||||
}
|
||||
|
||||
html = html.replace("&", "&");
|
||||
html = html.replace("<", "<");
|
||||
html = html.replace(">", ">");
|
||||
html = html.replace("\"", """);
|
||||
html = html.replace("'", "'");
|
||||
html = html.replace("/", "/");
|
||||
|
||||
return html;
|
||||
}
|
||||
}
|
|
@ -26,7 +26,6 @@ import javax.xml.bind.annotation.XmlType;
|
|||
public class DocumentedTypeDTO {
|
||||
|
||||
private String type;
|
||||
private Set<DocumentedTypeDTO> childTypes;
|
||||
private String description;
|
||||
private Set<String> tags;
|
||||
|
||||
|
@ -69,17 +68,4 @@ public class DocumentedTypeDTO {
|
|||
this.tags = tags;
|
||||
}
|
||||
|
||||
/**
|
||||
* Child types for this type.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Set<DocumentedTypeDTO> getChildTypes() {
|
||||
return childTypes;
|
||||
}
|
||||
|
||||
public void setChildTypes(Set<DocumentedTypeDTO> childTypes) {
|
||||
this.childTypes = childTypes;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -34,7 +34,7 @@ public class PropertyDescriptorDTO {
|
|||
private boolean sensitive;
|
||||
private boolean dynamic;
|
||||
private boolean supportsEl;
|
||||
private boolean identifiesControllerService;
|
||||
private String identifiesControllerService;
|
||||
|
||||
/**
|
||||
* The set of allowable values for this property. If empty then the
|
||||
|
@ -158,15 +158,16 @@ public class PropertyDescriptorDTO {
|
|||
}
|
||||
|
||||
/**
|
||||
* Whether this descriptor represents a controller service.
|
||||
* If this property identifies a controller service, this returns the
|
||||
* fully qualified type, null otherwise.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public boolean isIdentifiesControllerService() {
|
||||
public String getIdentifiesControllerService() {
|
||||
return identifiesControllerService;
|
||||
}
|
||||
|
||||
public void setIdentifiesControllerService(boolean identifiesControllerService) {
|
||||
public void setIdentifiesControllerService(String identifiesControllerService) {
|
||||
this.identifiesControllerService = identifiesControllerService;
|
||||
}
|
||||
|
||||
|
|
|
@ -252,9 +252,10 @@ public interface NiFiServiceFacade {
|
|||
/**
|
||||
* Returns the list of controller service types.
|
||||
*
|
||||
* @param serviceType Filters only service types that implement this type
|
||||
* @return The list of available controller types
|
||||
*/
|
||||
Set<DocumentedTypeDTO> getControllerServiceTypes();
|
||||
Set<DocumentedTypeDTO> getControllerServiceTypes(String serviceType);
|
||||
|
||||
/**
|
||||
* Returns the list of reporting task types.
|
||||
|
|
|
@ -121,8 +121,14 @@ public class StandardNiFiContentAccess implements ContentAccess {
|
|||
final String rawDirection = StringUtils.substringAfterLast(eventDetails, "/content/");
|
||||
|
||||
// get the content type
|
||||
final Long eventId = Long.parseLong(rawEventId);
|
||||
final ContentDirection direction = ContentDirection.valueOf(rawDirection.toUpperCase());
|
||||
final Long eventId;
|
||||
final ContentDirection direction;
|
||||
try {
|
||||
eventId = Long.parseLong(rawEventId);
|
||||
direction = ContentDirection.valueOf(rawDirection.toUpperCase());
|
||||
} catch (final IllegalArgumentException iae) {
|
||||
throw new IllegalArgumentException("The specified data reference URI is not valid.");
|
||||
}
|
||||
return serviceFacade.getContent(eventId, request.getDataUri(), direction);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1718,8 +1718,8 @@ public class StandardNiFiServiceFacade implements NiFiServiceFacade {
|
|||
}
|
||||
|
||||
@Override
|
||||
public Set<DocumentedTypeDTO> getControllerServiceTypes() {
|
||||
return controllerFacade.getControllerServiceTypes();
|
||||
public Set<DocumentedTypeDTO> getControllerServiceTypes(final String serviceType) {
|
||||
return controllerFacade.getControllerServiceTypes(serviceType);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -737,6 +737,7 @@ public class ControllerResource extends ApplicationResource {
|
|||
* @param clientId Optional client id. If the client id is not specified, a
|
||||
* new one will be generated. This value (whether specified or generated) is
|
||||
* included in the response.
|
||||
* @param serviceType Returns only services that implement this type
|
||||
* @return A controllerServicesTypesEntity.
|
||||
*/
|
||||
@GET
|
||||
|
@ -744,7 +745,9 @@ public class ControllerResource extends ApplicationResource {
|
|||
@Path("/controller-service-types")
|
||||
@PreAuthorize("hasAnyRole('ROLE_MONITOR', 'ROLE_DFM', 'ROLE_ADMIN')")
|
||||
@TypeHint(ControllerServiceTypesEntity.class)
|
||||
public Response getControllerServiceTypes(@QueryParam(CLIENT_ID) @DefaultValue(StringUtils.EMPTY) ClientIdParameter clientId) {
|
||||
public Response getControllerServiceTypes(
|
||||
@QueryParam(CLIENT_ID) @DefaultValue(StringUtils.EMPTY) ClientIdParameter clientId,
|
||||
@QueryParam("serviceType") String serviceType) {
|
||||
|
||||
// replicate if cluster manager
|
||||
if (properties.isClusterManager()) {
|
||||
|
@ -758,7 +761,7 @@ public class ControllerResource extends ApplicationResource {
|
|||
// create response entity
|
||||
final ControllerServiceTypesEntity entity = new ControllerServiceTypesEntity();
|
||||
entity.setRevision(revision);
|
||||
entity.setControllerServiceTypes(serviceFacade.getControllerServiceTypes());
|
||||
entity.setControllerServiceTypes(serviceFacade.getControllerServiceTypes(serviceType));
|
||||
|
||||
// generate the response
|
||||
return clusterContext(generateOkResponse(entity)).build();
|
||||
|
|
|
@ -0,0 +1,48 @@
|
|||
/*
|
||||
* 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.api.config;
|
||||
|
||||
import com.sun.jersey.api.NotFoundException;
|
||||
import com.sun.jersey.api.Responses;
|
||||
import javax.ws.rs.core.Response;
|
||||
import javax.ws.rs.ext.ExceptionMapper;
|
||||
import javax.ws.rs.ext.Provider;
|
||||
import org.apache.nifi.util.StringUtils;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
/**
|
||||
* Maps not found exceptions into client responses.
|
||||
*/
|
||||
@Provider
|
||||
public class NotFoundExceptionMapper implements ExceptionMapper<NotFoundException> {
|
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(NotFoundExceptionMapper.class);
|
||||
|
||||
@Override
|
||||
public Response toResponse(NotFoundException exception) {
|
||||
// log the error
|
||||
logger.info(String.format("%s. Returning %s response.", exception, Response.Status.NOT_FOUND));
|
||||
|
||||
if (logger.isDebugEnabled()) {
|
||||
logger.debug(StringUtils.EMPTY, exception);
|
||||
}
|
||||
|
||||
return Responses.notFound().entity("The specified resource could not be found.").type("text/plain").build();
|
||||
}
|
||||
|
||||
}
|
|
@ -1383,135 +1383,6 @@ public final class DtoFactory {
|
|||
return types;
|
||||
}
|
||||
|
||||
/**
|
||||
* Identifies all baseTypes for the specified type that are assignable to the specified baseType.
|
||||
*
|
||||
* @param baseType
|
||||
* @param type
|
||||
* @param baseTypes
|
||||
*/
|
||||
private void identifyBaseTypes(final Class baseType, final Class type, final Set<Class> baseTypes, final boolean recurse) {
|
||||
final Class[] interfaces = type.getInterfaces();
|
||||
for (final Class i : interfaces) {
|
||||
if (baseType.isAssignableFrom(i) && !baseType.equals(i)) {
|
||||
baseTypes.add(i);
|
||||
}
|
||||
}
|
||||
|
||||
if (recurse) {
|
||||
if (type.getSuperclass() != null) {
|
||||
identifyBaseTypes(baseType, type.getSuperclass(), baseTypes, recurse);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the DocumentedTypeDTOs from the specified classes for the specified baseClass.
|
||||
*
|
||||
* @param baseClass
|
||||
* @param classes
|
||||
* @return
|
||||
*/
|
||||
public Set<DocumentedTypeDTO> fromDocumentedTypes(final Class baseClass, final Set<Class> classes) {
|
||||
final Set<DocumentedTypeDTO> types = new LinkedHashSet<>();
|
||||
final Set<Class> sortedClasses = new TreeSet<>(CLASS_NAME_COMPARATOR);
|
||||
sortedClasses.addAll(classes);
|
||||
|
||||
// identify all interfaces that extend baseClass for all classes
|
||||
final Set<Class> interfaces = new HashSet<>();
|
||||
for (final Class<?> cls : sortedClasses) {
|
||||
identifyBaseTypes(baseClass, cls, interfaces, true);
|
||||
}
|
||||
|
||||
// build a lookup of all interfaces
|
||||
final Map<Class, DocumentedTypeDTO> lookup = new HashMap<>();
|
||||
|
||||
// convert the interfaces to DTO form
|
||||
for (final Class<?> i : interfaces) {
|
||||
final DocumentedTypeDTO type = new DocumentedTypeDTO();
|
||||
type.setType(i.getName());
|
||||
type.setDescription(getCapabilityDescription(i));
|
||||
type.setTags(getTags(i));
|
||||
type.setChildTypes(new LinkedHashSet<DocumentedTypeDTO>());
|
||||
lookup.put(i, type);
|
||||
}
|
||||
|
||||
// move the interfaces into the appropriate hierarchy
|
||||
final Collection<Class> rootTypes = new ArrayList<>();
|
||||
for (final Class<?> i : interfaces) {
|
||||
rootTypes.add(i);
|
||||
|
||||
// identify the base types
|
||||
final Set<Class> baseTypes = new LinkedHashSet<>();
|
||||
identifyBaseTypes(baseClass, i, baseTypes, false);
|
||||
|
||||
// move this interfaces into the hierarchy where appropriate
|
||||
if (!baseTypes.isEmpty()) {
|
||||
// get the DTO for each base type
|
||||
for (final Class baseType : baseTypes) {
|
||||
final DocumentedTypeDTO parentInteface = lookup.get(baseType);
|
||||
final DocumentedTypeDTO childInterface = lookup.get(i);
|
||||
|
||||
// include all parent tags in the respective children
|
||||
childInterface.getTags().addAll(parentInteface.getTags());
|
||||
|
||||
// update the hierarchy
|
||||
parentInteface.getChildTypes().add(childInterface);
|
||||
}
|
||||
|
||||
// remove this interface from the lookup (this will only
|
||||
// leave the interfaces that are ancestor roots)
|
||||
rootTypes.remove(i);
|
||||
}
|
||||
}
|
||||
|
||||
// include the interfaces
|
||||
sortedClasses.addAll(rootTypes);
|
||||
|
||||
// get the DTO form for all interfaces and classes
|
||||
for (final Class<?> cls : sortedClasses) {
|
||||
boolean add = false;
|
||||
|
||||
final DocumentedTypeDTO type;
|
||||
if (rootTypes.contains(cls)) {
|
||||
type = lookup.get(cls);
|
||||
add = true;
|
||||
} else {
|
||||
type = new DocumentedTypeDTO();
|
||||
type.setType(cls.getName());
|
||||
type.setDescription(getCapabilityDescription(cls));
|
||||
type.setTags(getTags(cls));
|
||||
}
|
||||
|
||||
// identify the base types
|
||||
final Set<Class> baseTypes = new LinkedHashSet<>();
|
||||
identifyBaseTypes(baseClass, cls, baseTypes, false);
|
||||
|
||||
// include this type if it doesn't belong to another hierarchy
|
||||
if (baseTypes.isEmpty()) {
|
||||
add = true;
|
||||
} else {
|
||||
// get the DTO for each base type
|
||||
for (final Class baseType : baseTypes) {
|
||||
final DocumentedTypeDTO parentInterface = lookup.get(baseType);
|
||||
|
||||
// include all parent tags in the respective children
|
||||
type.getTags().addAll(parentInterface.getTags());
|
||||
|
||||
// update the hierarchy
|
||||
parentInterface.getChildTypes().add(type);
|
||||
}
|
||||
}
|
||||
|
||||
// add if appropriate
|
||||
if (add) {
|
||||
types.add(type);
|
||||
}
|
||||
}
|
||||
|
||||
return types;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a ProcessorDTO from the specified ProcessorNode.
|
||||
*
|
||||
|
@ -1958,7 +1829,11 @@ public final class DtoFactory {
|
|||
dto.setDescription(propertyDescriptor.getDescription());
|
||||
dto.setDefaultValue(propertyDescriptor.getDefaultValue());
|
||||
dto.setSupportsEl(propertyDescriptor.isExpressionLanguageSupported());
|
||||
dto.setIdentifiesControllerService(propertyDescriptor.getControllerServiceDefinition() != null);
|
||||
|
||||
// set the identifies controller service is applicable
|
||||
if (propertyDescriptor.getControllerServiceDefinition() != null) {
|
||||
dto.setIdentifiesControllerService(propertyDescriptor.getControllerServiceDefinition().getName());
|
||||
}
|
||||
|
||||
final Class<? extends ControllerService> serviceDefinition = propertyDescriptor.getControllerServiceDefinition();
|
||||
if (propertyDescriptor.getAllowableValues() == null) {
|
||||
|
|
|
@ -108,6 +108,7 @@ import org.apache.nifi.web.api.dto.status.ProcessGroupStatusDTO;
|
|||
import org.apache.nifi.web.api.dto.status.StatusHistoryDTO;
|
||||
import org.apache.nifi.web.DownloadableContent;
|
||||
import org.apache.commons.collections4.CollectionUtils;
|
||||
import org.apache.commons.lang3.ClassUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.apache.nifi.admin.service.UserService;
|
||||
import org.apache.nifi.authorization.DownloadAuthorization;
|
||||
|
@ -347,13 +348,49 @@ public class ControllerFacade {
|
|||
return dtoFactory.fromDocumentedTypes(ExtensionManager.getExtensions(FlowFilePrioritizer.class));
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns whether the specified type implements the specified serviceType.
|
||||
*
|
||||
* @param baseType
|
||||
* @param type
|
||||
* @return
|
||||
*/
|
||||
private boolean implementsServiceType(final String serviceType, final Class type) {
|
||||
final List<Class<?>> interfaces = ClassUtils.getAllInterfaces(type);
|
||||
for (final Class i : interfaces) {
|
||||
if (ControllerService.class.isAssignableFrom(i) && i.getName().equals(serviceType)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the ControllerService types that this controller supports.
|
||||
*
|
||||
* @param serviceType
|
||||
* @return
|
||||
*/
|
||||
public Set<DocumentedTypeDTO> getControllerServiceTypes() {
|
||||
return dtoFactory.fromDocumentedTypes(ControllerService.class, ExtensionManager.getExtensions(ControllerService.class));
|
||||
public Set<DocumentedTypeDTO> getControllerServiceTypes(final String serviceType) {
|
||||
final Set<Class> serviceImplementations = ExtensionManager.getExtensions(ControllerService.class);
|
||||
|
||||
// identify the controller services that implement the specified serviceType if applicable
|
||||
final Set<Class> matchingServiceImplementions;
|
||||
if (serviceType != null) {
|
||||
matchingServiceImplementions = new HashSet<>();
|
||||
|
||||
// check each type and remove those that aren't in the specified ancestry
|
||||
for (final Class type : serviceImplementations) {
|
||||
if (implementsServiceType(serviceType, type)) {
|
||||
matchingServiceImplementions.add(type);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
matchingServiceImplementions = serviceImplementations;
|
||||
}
|
||||
|
||||
return dtoFactory.fromDocumentedTypes(matchingServiceImplementions);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -362,7 +399,7 @@ public class ControllerFacade {
|
|||
* @return
|
||||
*/
|
||||
public Set<DocumentedTypeDTO> getReportingTaskTypes() {
|
||||
return dtoFactory.fromDocumentedTypes(ReportingTask.class, ExtensionManager.getExtensions(ReportingTask.class));
|
||||
return dtoFactory.fromDocumentedTypes(ExtensionManager.getExtensions(ReportingTask.class));
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -222,7 +222,7 @@ public final class SnippetUtils {
|
|||
}
|
||||
|
||||
final PropertyDescriptorDTO propertyDescriptorDto = descriptors.get(propName);
|
||||
if ( propertyDescriptorDto != null && propertyDescriptorDto.isIdentifiesControllerService() ) {
|
||||
if ( propertyDescriptorDto != null && propertyDescriptorDto.getIdentifiesControllerService() != null ) {
|
||||
final ControllerServiceNode serviceNode = flowController.getControllerServiceNode(propValue);
|
||||
if ( serviceNode != null ) {
|
||||
addControllerServicesToSnippet(snippet, serviceNode);
|
||||
|
@ -363,7 +363,7 @@ public final class SnippetUtils {
|
|||
final Map<String, PropertyDescriptorDTO> descriptors = serviceDTO.getDescriptors();
|
||||
if ( properties != null && descriptors != null ) {
|
||||
for ( final PropertyDescriptorDTO descriptor : descriptors.values() ) {
|
||||
if ( descriptor.isIdentifiesControllerService() ) {
|
||||
if ( descriptor.getIdentifiesControllerService() != null ) {
|
||||
final String currentServiceId = properties.get(descriptor.getName());
|
||||
if ( currentServiceId == null ) {
|
||||
continue;
|
||||
|
@ -558,7 +558,7 @@ public final class SnippetUtils {
|
|||
final Map<String, PropertyDescriptorDTO> descriptors = configDto.getDescriptors();
|
||||
if ( properties != null && descriptors != null ) {
|
||||
for ( final PropertyDescriptorDTO descriptor : descriptors.values() ) {
|
||||
if ( descriptor.isIdentifiesControllerService() ) {
|
||||
if ( descriptor.getIdentifiesControllerService() != null ) {
|
||||
final String currentServiceId = properties.get(descriptor.getName());
|
||||
if ( currentServiceId == null ) {
|
||||
continue;
|
||||
|
|
|
@ -270,6 +270,7 @@
|
|||
<bean class="org.apache.nifi.web.api.config.NodeReconnectionExceptionMapper" scope="singleton"/>
|
||||
<bean class="org.apache.nifi.web.api.config.PrimaryRoleAssignmentExceptionMapper" scope="singleton"/>
|
||||
<bean class="org.apache.nifi.web.api.config.ResourceNotFoundExceptionMapper" scope="singleton"/>
|
||||
<bean class="org.apache.nifi.web.api.config.NotFoundExceptionMapper" scope="singleton"/>
|
||||
<bean class="org.apache.nifi.web.api.config.UnknownNodeExceptionMapper" scope="singleton"/>
|
||||
<bean class="org.apache.nifi.web.api.config.ValidationExceptionMapper" scope="singleton"/>
|
||||
<bean class="org.apache.nifi.web.api.config.WebApplicationExceptionMapper" scope="singleton"/>
|
||||
|
|
|
@ -68,10 +68,21 @@ public class ContentViewerController extends HttpServlet {
|
|||
final ServletContext servletContext = request.getServletContext();
|
||||
final ContentAccess contentAccess = (ContentAccess) servletContext.getAttribute("nifi-content-access");
|
||||
|
||||
final ContentRequestContext contentRequest = getContentRequest(request);
|
||||
if (contentRequest.getDataUri() == null) {
|
||||
request.setAttribute("title", "Error");
|
||||
request.setAttribute("messages", "The data reference must be specified.");
|
||||
|
||||
// forward to the error page
|
||||
final ServletContext viewerContext = servletContext.getContext("/nifi");
|
||||
viewerContext.getRequestDispatcher("/message").forward(request, response);
|
||||
return;
|
||||
}
|
||||
|
||||
// get the content
|
||||
final DownloadableContent downloadableContent;
|
||||
try {
|
||||
downloadableContent = contentAccess.getContent(getContentRequest(request));
|
||||
downloadableContent = contentAccess.getContent(contentRequest);
|
||||
} catch (final ResourceNotFoundException rnfe) {
|
||||
request.setAttribute("title", "Error");
|
||||
request.setAttribute("messages", "Unable to find the specified content");
|
||||
|
@ -138,9 +149,6 @@ public class ContentViewerController extends HttpServlet {
|
|||
final String mimeType = mediatype.toString();
|
||||
|
||||
// add attributes needed for the header
|
||||
final StringBuffer requestUrl = request.getRequestURL();
|
||||
request.setAttribute("requestUrl", requestUrl.toString());
|
||||
request.setAttribute("dataRef", request.getParameter("ref"));
|
||||
request.setAttribute("filename", downloadableContent.getFilename());
|
||||
request.setAttribute("contentType", mimeType);
|
||||
|
||||
|
@ -148,8 +156,6 @@ public class ContentViewerController extends HttpServlet {
|
|||
request.getRequestDispatcher("/WEB-INF/jsp/header.jsp").include(request, response);
|
||||
|
||||
// remove the attributes needed for the header
|
||||
request.removeAttribute("requestUrl");
|
||||
request.removeAttribute("dataRef");
|
||||
request.removeAttribute("filename");
|
||||
request.removeAttribute("contentType");
|
||||
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
<script type="text/javascript">
|
||||
var $$ = $.noConflict(true);
|
||||
$$(document).ready(function () {
|
||||
var url = '${requestUrl}';
|
||||
var ref = '${param.ref}';
|
||||
var url = $$('#requestUrl').text();
|
||||
var ref = $$('#ref').text();
|
||||
|
||||
// create the parameters
|
||||
var params = {
|
||||
|
@ -40,14 +40,14 @@
|
|||
};
|
||||
|
||||
// include the cluster node if appropriate
|
||||
var clusterNodeId = '${param.clusterNodeId}';
|
||||
if (clusterNodeId !== null && clusterNodeId !== '') {
|
||||
var clusterNodeId = $$('#clusterNodeId').text();
|
||||
if (clusterNodeId !== '') {
|
||||
params['clusterNodeId'] = clusterNodeId;
|
||||
}
|
||||
|
||||
// determine the appropriate mode to select initially
|
||||
var initialMode = '${param.mode}';
|
||||
if (initialMode === null && initialMode === '') {
|
||||
var initialMode = $$('#mode').text();
|
||||
if (initialMode === '') {
|
||||
initialMode = 'Original';
|
||||
}
|
||||
|
||||
|
@ -85,8 +85,12 @@
|
|||
</script>
|
||||
</head>
|
||||
<body class="message-pane">
|
||||
<span id="ref" class="hidden"><%= org.apache.nifi.util.EscapeUtils.escapeHtml(request.getParameter("ref")) %></span>
|
||||
<span id="clusterNodeId" class="hidden"><%= request.getParameter("clusterNodeId") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getParameter("clusterNodeId")) %></span>
|
||||
<span id="mode" class="hidden"><%= request.getParameter("mode") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getParameter("mode")) %></span>
|
||||
<span id="requestUrl" class="hidden"><%= org.apache.nifi.util.EscapeUtils.escapeHtml(request.getRequestURL().toString()) %></span>
|
||||
<div id="view-as-label">View as</div>
|
||||
<div id="view-as" class="pointer button-normal"></div>
|
||||
<div id="content-filename"><span class="content-label">filename</span>${filename}</div>
|
||||
<div id="content-type"><span class="content-label">content type</span>${contentType}</div>
|
||||
<div id="content-filename"><span class="content-label">filename</span><%= request.getAttribute("filename") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("filename").toString()) %></div>
|
||||
<div id="content-type"><span class="content-label">content type</span><%= request.getAttribute("contentType") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("contentType").toString()) %></div>
|
||||
<div class="message-pane-message-box">
|
|
@ -148,7 +148,7 @@ $(document).ready(function () {
|
|||
|
||||
$("table", div).addClass("hexviewerwindow_table");
|
||||
$("table", div).append("<tr></tr>").addClass("hexviewerwindow");
|
||||
$("table tr:last", div).append("<td>" + (decimal_offset ? ("00000000"+offset).slice(-8) : "0x" + dec_to_hex8(offset)) + "</td>");
|
||||
$("table tr:last", div).append("<td>" + escapeHtml((decimal_offset ? ("00000000"+offset).slice(-8) : "0x" + dec_to_hex8(offset))) + "</td>");
|
||||
$("table tr td:last", div).addClass("hexviewerwindow_offset");
|
||||
|
||||
var runlen = 0;
|
||||
|
@ -162,7 +162,7 @@ $(document).ready(function () {
|
|||
num += dec2_to_hex(line_data.charCodeAt(i+j));
|
||||
}
|
||||
|
||||
$("table tr:last", div).append("<td>" + (hide_0x ? "" : "0x") + num + "</td>");
|
||||
$("table tr:last", div).append("<td>" + escapeHtml((hide_0x ? "" : "0x") + num) + "</td>");
|
||||
|
||||
apply_highlights(offset+i);
|
||||
}
|
||||
|
|
|
@ -26,12 +26,18 @@
|
|||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-nar-utils</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-utils</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>javax.servlet.jsp</groupId>
|
||||
<artifactId>javax.servlet.jsp-api</artifactId>
|
||||
|
|
|
@ -39,6 +39,9 @@ import org.apache.commons.lang3.StringUtils;
|
|||
@WebServlet(name = "DocumenationController", urlPatterns = {"/*"})
|
||||
public class DocumentationController extends HttpServlet {
|
||||
|
||||
private static final int GENERAL_LINK_COUNT = 4;
|
||||
private static final int DEVELOPER_LINK_COUNT = 2;
|
||||
|
||||
// context for accessing the extension mapping
|
||||
private ServletContext servletContext;
|
||||
|
||||
|
@ -82,7 +85,7 @@ public class DocumentationController extends HttpServlet {
|
|||
request.setAttribute("processors", processors);
|
||||
request.setAttribute("controllerServices", controllerServices);
|
||||
request.setAttribute("reportingTasks", reportingTasks);
|
||||
request.setAttribute("totalComponents", processors.size() + controllerServices.size() + reportingTasks.size());
|
||||
request.setAttribute("totalComponents", GENERAL_LINK_COUNT + processors.size() + controllerServices.size() + reportingTasks.size() + DEVELOPER_LINK_COUNT);
|
||||
|
||||
// forward appropriately
|
||||
request.getRequestDispatcher("/WEB-INF/jsp/documentation.jsp").forward(request, response);
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<body id="documentation-body">
|
||||
<div id="banner-header" class="main-banner-header"></div>
|
||||
<div id="banner-footer" class="main-banner-footer"></div>
|
||||
<span id="initial-selection" style="display: none;">${param.select}</span>
|
||||
<span id="initial-selection" style="display: none;"><%= request.getParameter("select") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getParameter("select")) %></span>
|
||||
<div id="documentation-header" class="documentation-header">
|
||||
<div id="nf-title">NiFi Documentation</div>
|
||||
<div id="nf-version"></div>
|
||||
|
@ -55,11 +55,11 @@
|
|||
<div id="processor-links" class="component-links">
|
||||
<c:choose>
|
||||
<c:when test="${not empty processors}">
|
||||
<ul>
|
||||
<c:forEach var="entry" items="${processors}">
|
||||
<ul>
|
||||
<li class="component-item"><a class="component-link" href="components/${entry.value}/index.html" target="component-usage">${entry.key}</a></li>
|
||||
</ul>
|
||||
<li class="component-item"><a class="component-link" href="components/${entry.value}/index.html" target="component-usage">${entry.key}</a></li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
<span class="no-matching no-components hidden">No matching processors</span>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
|
@ -73,11 +73,11 @@
|
|||
<div id="controller-service-links" class="component-links">
|
||||
<c:choose>
|
||||
<c:when test="${not empty controllerServices}">
|
||||
<ul>
|
||||
<c:forEach var="entry" items="${controllerServices}">
|
||||
<ul>
|
||||
<li class="component-item"><a class="component-link" href="components/${entry.value}/index.html" target="component-usage">${entry.key}</a></li>
|
||||
</ul>
|
||||
<li class="component-item"><a class="component-link" href="components/${entry.value}/index.html" target="component-usage">${entry.key}</a></li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
<span class="no-matching no-components hidden">No matching controller services</span>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
|
@ -91,11 +91,11 @@
|
|||
<div id="reporting-task-links" class="component-links">
|
||||
<c:choose>
|
||||
<c:when test="${not empty reportingTasks}">
|
||||
<ul>
|
||||
<c:forEach var="entry" items="${reportingTasks}">
|
||||
<ul>
|
||||
<li class="component-item"><a class="component-link" href="components/${entry.value}/index.html" target="component-usage">${entry.key}</a></li>
|
||||
</ul>
|
||||
<li class="component-item"><a class="component-link" href="components/${entry.value}/index.html" target="component-usage">${entry.key}</a></li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
<span class="no-matching no-components hidden">No matching reporting tasks</span>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
|
|
|
@ -14,6 +14,9 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/* global top */
|
||||
|
||||
$(document).ready(function () {
|
||||
|
||||
var isUndefined = function (obj) {
|
||||
|
@ -139,7 +142,7 @@ $(document).ready(function () {
|
|||
if (isDefinedAndNotNull(response.banners)) {
|
||||
if (isDefinedAndNotNull(response.banners.headerText) && response.banners.headerText !== '') {
|
||||
// update the header text
|
||||
var bannerHeader = $('#banner-header').html(response.banners.headerText).show();
|
||||
var bannerHeader = $('#banner-header').text(response.banners.headerText).show();
|
||||
|
||||
// show the banner
|
||||
var updateTop = function (elementId) {
|
||||
|
@ -155,7 +158,7 @@ $(document).ready(function () {
|
|||
|
||||
if (isDefinedAndNotNull(response.banners.footerText) && response.banners.footerText !== '') {
|
||||
// update the footer text and show it
|
||||
var bannerFooter = $('#banner-footer').html(response.banners.footerText).show();
|
||||
var bannerFooter = $('#banner-footer').text(response.banners.footerText).show();
|
||||
|
||||
var updateBottom = function (elementId) {
|
||||
var element = $('#' + elementId);
|
||||
|
|
|
@ -79,6 +79,7 @@
|
|||
<packageRoot>org.apache.nifi.web.jsp</packageRoot>
|
||||
<keepSources>true</keepSources>
|
||||
<verbose>true</verbose>
|
||||
<useProvidedScope>true</useProvidedScope>
|
||||
<excludes>
|
||||
**/canvas.jsp,
|
||||
**/summary.jsp,
|
||||
|
@ -619,6 +620,11 @@
|
|||
<artifactId>commons-io</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-utils</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.commons</groupId>
|
||||
<artifactId>commons-lang3</artifactId>
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>${title}</title>
|
||||
<title><%= request.getAttribute("title") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("title").toString()) %></title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="shortcut icon" href="images/nifi16.ico"/>
|
||||
<link href="/nifi/css/message-pane.css" rel="stylesheet" type="text/css" />
|
||||
|
@ -27,8 +27,8 @@
|
|||
|
||||
<body class="message-pane">
|
||||
<div class="message-pane-message-box">
|
||||
<p class="message-pane-title">${title}</p>
|
||||
<p class="message-pane-content">${messages}</p>
|
||||
<p class="message-pane-title"><%= request.getAttribute("title") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("title").toString()) %></p>
|
||||
<p class="message-pane-content"><%= request.getAttribute("messages") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("messages").toString()) %></p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -43,21 +43,6 @@
|
|||
cursor: pointer;
|
||||
}
|
||||
|
||||
span.expansion-button {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
float: left;
|
||||
}
|
||||
|
||||
span.ancestor-type {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
span.ancestor-type-rollup {
|
||||
margin-left: 3px;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/* settings tabs */
|
||||
|
||||
#settings-tabs-container {
|
||||
|
|
|
@ -103,6 +103,49 @@ div.new-property-button-container {
|
|||
padding: 0 8px 10px;
|
||||
}
|
||||
|
||||
/*
|
||||
New inline controller service dialog
|
||||
*/
|
||||
|
||||
div.new-inline-controller-service-dialog {
|
||||
z-index: 1301;
|
||||
display: none;
|
||||
padding: 10px;
|
||||
border: 3px solid #365C6A;
|
||||
box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.9);
|
||||
cursor: move;
|
||||
width: 350px;
|
||||
height: 250px;
|
||||
}
|
||||
|
||||
div.new-inline-controller-service-combo {
|
||||
height: 18px;
|
||||
width: 340px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
div.new-inline-controller-service-tags {
|
||||
height: 18px;
|
||||
width: 340px;
|
||||
margin-bottom: 10px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.new-inline-controller-service-description {
|
||||
height: 115px;
|
||||
width: 340px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
div.new-inline-controller-service-button-container {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
padding: 0 8px 10px;
|
||||
}
|
||||
|
||||
/*
|
||||
Styles for the property editor.
|
||||
*/
|
||||
|
|
|
@ -23,7 +23,17 @@
|
|||
*
|
||||
* {
|
||||
* readOnly: true,
|
||||
* newPropertyDialogContainer: 'body'
|
||||
* dialogContainer: 'body',
|
||||
* descriptorDeferred: function () {
|
||||
* return $.Deferred(function (deferred) {
|
||||
* deferred.resolve();
|
||||
* }).promise;
|
||||
* },
|
||||
* goToServiceDeferred: function () {
|
||||
* return $.Deferred(function (deferred) {
|
||||
* deferred.resolve();
|
||||
* }).promise;
|
||||
* }
|
||||
* }
|
||||
*/
|
||||
|
||||
|
@ -443,6 +453,10 @@
|
|||
var gridContainer = $(args.grid.getContainerNode());
|
||||
var descriptors = gridContainer.data('descriptors');
|
||||
propertyDescriptor = descriptors[args.item.property];
|
||||
|
||||
// get the options
|
||||
var propertyContainer = gridContainer.closest('.property-container');
|
||||
var configurationOptions = propertyContainer.data('options');
|
||||
|
||||
// create the wrapper
|
||||
wrapper = $('<div></div>').css({
|
||||
|
@ -490,6 +504,15 @@
|
|||
disabled: true
|
||||
});
|
||||
}
|
||||
|
||||
// if this descriptor identifies a controller service, provide a way to create one
|
||||
if (nf.Common.isDefinedAndNotNull(propertyDescriptor.identifiesControllerService)) {
|
||||
options.push({
|
||||
text: 'Create new service...',
|
||||
value: undefined,
|
||||
optionClass: 'unset'
|
||||
});
|
||||
}
|
||||
|
||||
// determine the max height
|
||||
var position = args.position;
|
||||
|
@ -499,7 +522,16 @@
|
|||
// build the combo field
|
||||
combo = $('<div class="value-combo combo"></div>').combo({
|
||||
options: options,
|
||||
maxHeight: maxHeight
|
||||
maxHeight: maxHeight,
|
||||
select: function (option) {
|
||||
if (typeof option.value === 'undefined') {
|
||||
// cancel the current edit
|
||||
scope.cancel();
|
||||
|
||||
// prompt for the new service type
|
||||
promptForNewControllerService(gridContainer, args.grid, args.item, propertyDescriptor.identifiesControllerService, configurationOptions);
|
||||
}
|
||||
}
|
||||
}).width(position.width - 16).appendTo(wrapper);
|
||||
|
||||
// add buttons for handling user input
|
||||
|
@ -744,6 +776,146 @@
|
|||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Gets the available controller services that implement the specified type and
|
||||
* prompts the user to create one.
|
||||
*
|
||||
* @param {jQuery} gridContainer The grid container
|
||||
* @param {slickgrid} grid The grid
|
||||
* @param {object} item The item
|
||||
* @param {type} serviceType The type of service to create
|
||||
* @param {object} configurationOptions The configuration options
|
||||
*/
|
||||
var promptForNewControllerService = function (gridContainer, grid, item, serviceType, configurationOptions) {
|
||||
$.ajax({
|
||||
type: 'GET',
|
||||
url: '../nifi-api/controller/controller-service-types',
|
||||
data: {
|
||||
serviceType: serviceType
|
||||
},
|
||||
dataType: 'json'
|
||||
}).done(function (response) {
|
||||
var options = [];
|
||||
$.each(response.controllerServiceTypes, function (i, controllerServiceType) {
|
||||
options.push({
|
||||
text: nf.Common.substringAfterLast(controllerServiceType.type, '.'),
|
||||
value: controllerServiceType.type,
|
||||
description: nf.Common.escapeHtml(controllerServiceType.description)
|
||||
});
|
||||
});
|
||||
|
||||
// ensure there are some applicable controller services
|
||||
if (options.length === 0) {
|
||||
nf.Dialog.showOkDialog({
|
||||
dialogContent: 'No controller service types found that are applicable for this property.',
|
||||
overlayBackground: false
|
||||
});
|
||||
} else {
|
||||
var newControllerServiceDialogMarkup =
|
||||
'<div class="new-inline-controller-service-dialog dialog cancellable">' +
|
||||
'<div>' +
|
||||
'<div class="setting-name">Controller Service</div>' +
|
||||
'<div class="setting-field">' +
|
||||
'<div class="new-inline-controller-service-combo"></div>' +
|
||||
'</div>' +
|
||||
'</div>' +
|
||||
'<div>' +
|
||||
'<div class="setting-name">Tags</div>' +
|
||||
'<div class="setting-field">' +
|
||||
'<div class="new-inline-controller-service-tags"></div>' +
|
||||
'</div>' +
|
||||
'</div>' +
|
||||
'<div>' +
|
||||
'<div class="setting-name">Description</div>' +
|
||||
'<div class="setting-field">' +
|
||||
'<div class="new-inline-controller-service-description"></div>' +
|
||||
'</div>' +
|
||||
'</div>' +
|
||||
'<div class="new-inline-controller-service-button-container">' +
|
||||
'<div class="new-inline-controller-service-create button button-normal">Create</div>' +
|
||||
'<div class="new-inline-controller-service-cancel button button-normal">Cancel</div>' +
|
||||
'<div class="clear"></div>' +
|
||||
'</div>' +
|
||||
'</div>';
|
||||
|
||||
var newControllerServiceDialog = $(newControllerServiceDialogMarkup).appendTo(configurationOptions.dialogContainer);
|
||||
var newControllerServiceCombo = newControllerServiceDialog.find('div.new-inline-controller-service-combo');
|
||||
var newControllerServiceTags = newControllerServiceDialog.find('div.new-inline-controller-service-tags');
|
||||
var newControllerServiceDescription = newControllerServiceDialog.find('div.new-inline-controller-service-description');
|
||||
|
||||
// build the combo field
|
||||
newControllerServiceCombo.combo({
|
||||
options: options,
|
||||
select: function (option) {
|
||||
var service;
|
||||
$.each(response.controllerServiceTypes, function (i, controllerServiceType) {
|
||||
if (controllerServiceType.type === option.value) {
|
||||
service = controllerServiceType;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
|
||||
// set the service details
|
||||
newControllerServiceTags.text(service.tags.join(', ')).ellipsis();
|
||||
newControllerServiceDescription.text(service.description);
|
||||
}
|
||||
});
|
||||
|
||||
var create = function () {
|
||||
var newControllerServiceType = newControllerServiceCombo.combo('getSelectedOption').value;
|
||||
|
||||
// create service of the specified type
|
||||
var revision = nf.Client.getRevision();
|
||||
|
||||
// add the new controller service
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: '../nifi-api/controller/controller-services/node',
|
||||
data: {
|
||||
version: revision.version,
|
||||
clientId: revision.clientId,
|
||||
type: newControllerServiceType
|
||||
},
|
||||
dataType: 'json'
|
||||
}).done(function (response) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
|
||||
// load the descriptor and update the property
|
||||
configurationOptions.descriptorDeferred(item.property).done(function(descriptorResponse) {
|
||||
var descriptor = descriptorResponse.propertyDescriptor;
|
||||
|
||||
// store the descriptor for use later
|
||||
var descriptors = gridContainer.data('descriptors');
|
||||
if (!nf.Common.isUndefined(descriptors)) {
|
||||
descriptors[descriptor.name] = descriptor;
|
||||
}
|
||||
|
||||
// add a row for the new property
|
||||
var data = grid.getData();
|
||||
data.updateItem(item.id, $.extend(item, {
|
||||
value: response.controllerService.id
|
||||
}));
|
||||
|
||||
// close the dialog
|
||||
newControllerServiceDialog.hide();
|
||||
});
|
||||
}).fail(nf.Common.handleAjaxError);
|
||||
};
|
||||
|
||||
var cancel = function () {
|
||||
newControllerServiceDialog.hide();
|
||||
};
|
||||
|
||||
// make the new property dialog draggable
|
||||
newControllerServiceDialog.draggable({
|
||||
cancel: 'input, textarea, pre, .button, .' + editorClass,
|
||||
containment: 'body'
|
||||
}).on('click', 'div.new-inline-controller-service-create', create).on('click', 'div.new-inline-controller-service-cancel', cancel).modal('show');
|
||||
}
|
||||
}).fail(nf.Common.handleAjaxError);
|
||||
};
|
||||
|
||||
var initPropertiesTable = function (table, options) {
|
||||
// function for formatting the property name
|
||||
|
@ -826,20 +998,37 @@
|
|||
{id: 'value', field: 'value', name: 'Value', sortable: false, resizable: true, cssClass: 'pointer', rerenderOnResize: true, formatter: valueFormatter}
|
||||
];
|
||||
|
||||
if (options.readOnly !== true) {
|
||||
// custom formatter for the actions column
|
||||
var actionFormatter = function (row, cell, value, columnDef, dataContext) {
|
||||
var markup = '';
|
||||
// custom formatter for the actions column
|
||||
var actionFormatter = function (row, cell, value, columnDef, dataContext) {
|
||||
var markup = '';
|
||||
|
||||
// allow user defined properties to be removed
|
||||
if (dataContext.type === 'userDefined') {
|
||||
markup = '<img src="images/iconDelete.png" title="Delete" class="delete-property pointer" style="margin-top: 2px" />';
|
||||
}
|
||||
// get the property descriptor
|
||||
var descriptors = table.data('descriptors');
|
||||
var propertyDescriptor = descriptors[dataContext.property];
|
||||
|
||||
var identifiesControllerService = nf.Common.isDefinedAndNotNull(propertyDescriptor.identifiesControllerService);
|
||||
var isConfigured = nf.Common.isDefinedAndNotNull(dataContext.value);
|
||||
var isOnCanvas = nf.Common.isDefinedAndNotNull(nf.Canvas);
|
||||
|
||||
// check to see if we should provide a button for going to a controller service
|
||||
if (identifiesControllerService && isConfigured && isOnCanvas) {
|
||||
// ensure the configured value is referencing a valid service
|
||||
$.each(propertyDescriptor.allowableValues, function (_, allowableValue) {
|
||||
if (allowableValue.value === dataContext.value) {
|
||||
markup = '<img src="images/iconGoTo.png" title="Go To" class="go-to-service pointer" style="margin-top: 2px" />';
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
return markup;
|
||||
};
|
||||
propertyColumns.push({id: "actions", name: " ", minWidth: 20, width: 20, formatter: actionFormatter});
|
||||
}
|
||||
// allow user defined properties to be removed
|
||||
if (options.readOnly !== true && dataContext.type === 'userDefined') {
|
||||
markup = '<img src="images/iconDelete.png" title="Delete" class="delete-property pointer" style="margin-top: 2px" />';
|
||||
}
|
||||
|
||||
return markup;
|
||||
};
|
||||
propertyColumns.push({id: "actions", name: " ", minWidth: 20, width: 20, formatter: actionFormatter});
|
||||
|
||||
var propertyConfigurationOptions = {
|
||||
forceFitColumns: true,
|
||||
|
@ -899,6 +1088,39 @@
|
|||
}
|
||||
}
|
||||
};
|
||||
|
||||
var goToControllerService = function (property) {
|
||||
// close the dialog
|
||||
var dialog = table.closest('.dialog');
|
||||
if (dialog.hasClass('modal')) {
|
||||
dialog.modal('hide');
|
||||
} else {
|
||||
dialog.hide();
|
||||
}
|
||||
|
||||
$.Deferred(function (deferred) {
|
||||
if ($('#settings').is(':visible')) {
|
||||
deferred.resolve();
|
||||
} else {
|
||||
// reload the settings and show
|
||||
nf.Settings.loadSettings().done(function () {
|
||||
nf.Settings.showSettings();
|
||||
deferred.resolve();
|
||||
});
|
||||
}
|
||||
}).done(function () {
|
||||
var controllerServiceGrid = $('#controller-services-table').data('gridInstance');
|
||||
var controllerServiceData = controllerServiceGrid.getData();
|
||||
|
||||
// select the desired service
|
||||
var row = controllerServiceData.getRowById(property.value);
|
||||
controllerServiceGrid.setSelectedRows([row]);
|
||||
controllerServiceGrid.scrollRowIntoView(row);
|
||||
|
||||
// select the controller services tab
|
||||
$('#settings-tabs').find('li:eq(1)').click();
|
||||
});
|
||||
};
|
||||
|
||||
// initialize the grid
|
||||
var propertyGrid = new Slick.Grid(table, propertyData, propertyColumns, propertyConfigurationOptions);
|
||||
|
@ -916,10 +1138,11 @@
|
|||
// prevents standard edit logic
|
||||
e.stopImmediatePropagation();
|
||||
} else if (propertyGrid.getColumns()[args.cell].id === 'actions') {
|
||||
var property = propertyData.getItem(args.row);
|
||||
|
||||
var target = $(e.target);
|
||||
if (target.hasClass('delete-property')) {
|
||||
// mark the property in question for removal
|
||||
var property = propertyData.getItem(args.row);
|
||||
property.hidden = true;
|
||||
|
||||
// refresh the table
|
||||
|
@ -927,6 +1150,17 @@
|
|||
|
||||
// prevents standard edit logic
|
||||
e.stopImmediatePropagation();
|
||||
} else if (target.hasClass('go-to-service')) {
|
||||
if (options.readOnly === true) {
|
||||
goToControllerService(property);
|
||||
} else {
|
||||
// load the property descriptor if possible
|
||||
if (typeof options.goToServiceDeferred === 'function') {
|
||||
options.goToServiceDeferred().done(function() {
|
||||
goToControllerService(property);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -1076,8 +1310,8 @@
|
|||
nf.Common.removeAllPropertyDetailDialogs();
|
||||
} else {
|
||||
// clear any existing new property dialogs
|
||||
if (nf.Common.isDefinedAndNotNull(options.newPropertyDialogContainer)) {
|
||||
$(options.newPropertyDialogContainer).children('div.new-property-dialog').hide();
|
||||
if (nf.Common.isDefinedAndNotNull(options.dialogContainer)) {
|
||||
$(options.dialogContainer).children('div.new-property-dialog').hide();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1108,7 +1342,7 @@
|
|||
var propertyTableContainer = $(this);
|
||||
|
||||
// clear any current contents, remote events, and store options
|
||||
propertyTableContainer.empty().unbind().data('options', options);
|
||||
propertyTableContainer.empty().unbind().addClass('property-container').data('options', options);
|
||||
|
||||
// build the component
|
||||
var header = $('<div class="properties-header"></div>').appendTo(propertyTableContainer);
|
||||
|
@ -1118,7 +1352,7 @@
|
|||
var table = $('<div class="property-table"></div>').appendTo(propertyTableContainer);
|
||||
|
||||
// optionally add a add new property button
|
||||
if (options.readOnly !== true && nf.Common.isDefinedAndNotNull(options.newPropertyDialogContainer)) {
|
||||
if (options.readOnly !== true && nf.Common.isDefinedAndNotNull(options.dialogContainer)) {
|
||||
// build the new property dialog
|
||||
var newPropertyDialogMarkup =
|
||||
'<div class="new-property-dialog dialog cancellable">' +
|
||||
|
@ -1135,7 +1369,7 @@
|
|||
'</div>' +
|
||||
'</div>';
|
||||
|
||||
var newPropertyDialog = $(newPropertyDialogMarkup).appendTo(options.newPropertyDialogContainer);
|
||||
var newPropertyDialog = $(newPropertyDialogMarkup).appendTo(options.dialogContainer);
|
||||
var newPropertyNameField = newPropertyDialog.find('input.new-property-name');
|
||||
|
||||
var add = function () {
|
||||
|
@ -1143,37 +1377,35 @@
|
|||
|
||||
// ensure the property name and value is specified
|
||||
if (propertyName !== '') {
|
||||
// load the property descriptor if possible
|
||||
if (typeof options.descriptorDeferred === 'function') {
|
||||
options.descriptorDeferred(propertyName).done(function(response) {
|
||||
var descriptor = response.propertyDescriptor;
|
||||
|
||||
// store the descriptor for use later
|
||||
var descriptors = table.data('descriptors');
|
||||
if (!nf.Common.isUndefined(descriptors)) {
|
||||
descriptors[descriptor.name] = descriptor;
|
||||
}
|
||||
// load the descriptor and add the property
|
||||
options.descriptorDeferred(propertyName).done(function(response) {
|
||||
var descriptor = response.propertyDescriptor;
|
||||
|
||||
// store the descriptor for use later
|
||||
var descriptors = table.data('descriptors');
|
||||
if (!nf.Common.isUndefined(descriptors)) {
|
||||
descriptors[descriptor.name] = descriptor;
|
||||
}
|
||||
|
||||
// add a row for the new property
|
||||
var propertyGrid = table.data('gridInstance');
|
||||
var propertyData = propertyGrid.getData();
|
||||
var id = propertyData.getLength();
|
||||
propertyData.addItem({
|
||||
id: id,
|
||||
hidden: false,
|
||||
property: propertyName,
|
||||
displayName: propertyName,
|
||||
previousValue: null,
|
||||
value: null,
|
||||
type: 'userDefined'
|
||||
});
|
||||
}
|
||||
|
||||
// add a row for the new property
|
||||
var propertyGrid = table.data('gridInstance');
|
||||
var propertyData = propertyGrid.getData();
|
||||
var id = propertyData.getLength();
|
||||
propertyData.addItem({
|
||||
id: id,
|
||||
hidden: false,
|
||||
property: propertyName,
|
||||
displayName: propertyName,
|
||||
previousValue: null,
|
||||
value: null,
|
||||
type: 'userDefined'
|
||||
|
||||
// select the new properties row
|
||||
var row = propertyData.getRowById(id);
|
||||
propertyGrid.setSelectedRows([row]);
|
||||
propertyGrid.scrollRowIntoView(row);
|
||||
});
|
||||
|
||||
// select the new properties row
|
||||
var row = propertyData.getRowById(id);
|
||||
propertyGrid.setSelectedRows([row]);
|
||||
propertyGrid.scrollRowIntoView(row);
|
||||
} else {
|
||||
nf.Dialog.showOkDialog({
|
||||
dialogContent: 'Property name must be specified.',
|
||||
|
@ -1295,8 +1527,9 @@
|
|||
clear(propertyTableContainer);
|
||||
|
||||
// clear any existing new property dialogs
|
||||
if (nf.Common.isDefinedAndNotNull(options.newPropertyDialogContainer)) {
|
||||
$(options.newPropertyDialogContainer).children('div.new-property-dialog').remove();
|
||||
if (nf.Common.isDefinedAndNotNull(options.dialogContainer)) {
|
||||
$(options.dialogContainer).children('div.new-property-dialog').remove();
|
||||
$(options.dialogContainer).children('div.new-inline-controller-service-dialog').remove();
|
||||
}
|
||||
});
|
||||
},
|
||||
|
@ -1372,4 +1605,4 @@
|
|||
return methods.init.apply(this, arguments);
|
||||
}
|
||||
};
|
||||
})(jQuery);
|
||||
})(jQuery);
|
||||
|
|
|
@ -374,6 +374,7 @@ nf.ControllerService = (function () {
|
|||
// select the selected row
|
||||
var row = controllerServiceData.getRowById(referencingComponent.id);
|
||||
controllerServiceGrid.setSelectedRows([row]);
|
||||
controllerServiceGrid.scrollRowIntoView(row);
|
||||
|
||||
// close the dialog and shell
|
||||
referenceContainer.closest('.dialog').modal('hide');
|
||||
|
@ -419,6 +420,7 @@ nf.ControllerService = (function () {
|
|||
// select the selected row
|
||||
var row = reportingTaskData.getRowById(referencingComponent.id);
|
||||
reportingTaskGrid.setSelectedRows([row]);
|
||||
reportingTaskGrid.scrollRowIntoView(row);
|
||||
|
||||
// select the reporting task tab
|
||||
$('#settings-tabs').find('li:last').click();
|
||||
|
@ -1069,6 +1071,83 @@ nf.ControllerService = (function () {
|
|||
}).fail(nf.Common.handleAjaxError);
|
||||
};
|
||||
|
||||
/**
|
||||
* Goes to a service configuration from the property table.
|
||||
*/
|
||||
var goToServiceFromProperty = function () {
|
||||
return $.Deferred(function (deferred) {
|
||||
// close all fields currently being edited
|
||||
$('#controller-service-properties').propertytable('saveRow');
|
||||
|
||||
// determine if changes have been made
|
||||
if (isSaveRequired()) {
|
||||
// see if those changes should be saved
|
||||
nf.Dialog.showYesNoDialog({
|
||||
dialogContent: 'Save changes before going to this Controller Service?',
|
||||
overlayBackground: false,
|
||||
noHandler: function () {
|
||||
deferred.resolve();
|
||||
},
|
||||
yesHandler: function () {
|
||||
var controllerService = $('#controller-service-configuration').data('controllerServiceDetails');
|
||||
saveControllerService(controllerService).done(function () {
|
||||
deferred.resolve();
|
||||
}).fail(function () {
|
||||
deferred.reject();
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
deferred.resolve();
|
||||
}
|
||||
}).promise();
|
||||
};
|
||||
|
||||
var saveControllerService = function (controllerService) {
|
||||
// marshal the settings and properties and update the controller service
|
||||
var updatedControllerService = marshalDetails();
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedControllerService)) {
|
||||
var previouslyReferencedServiceIds = [];
|
||||
$.each(identifyReferencedServiceDescriptors(controllerService), function (_, descriptor) {
|
||||
var modifyingService = !nf.Common.isUndefined(updatedControllerService.controllerService.properties) && !nf.Common.isUndefined(updatedControllerService.controllerService.properties[descriptor.name]);
|
||||
var isCurrentlyConfigured = nf.Common.isDefinedAndNotNull(controllerService.properties[descriptor.name]);
|
||||
|
||||
// if we are attempting to update a controller service reference
|
||||
if (modifyingService && isCurrentlyConfigured) {
|
||||
|
||||
// record the current value if set
|
||||
previouslyReferencedServiceIds.push(controllerService.properties[descriptor.name]);
|
||||
}
|
||||
});
|
||||
|
||||
// update the selected component
|
||||
return $.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedControllerService),
|
||||
url: controllerService.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.controllerService)) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
|
||||
// reload all previously referenced controller services
|
||||
$.each(previouslyReferencedServiceIds, function(_, oldServiceReferenceId) {
|
||||
reloadControllerService(oldServiceReferenceId);
|
||||
});
|
||||
}
|
||||
}).fail(handleControllerServiceConfigurationError);
|
||||
} else {
|
||||
return $.Deferred(function (deferred) {
|
||||
deferred.reject();
|
||||
}).promise();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Identifies the descriptors that identify controller services.
|
||||
*
|
||||
|
@ -1078,7 +1157,7 @@ nf.ControllerService = (function () {
|
|||
var referencedServiceDescriptors = [];
|
||||
|
||||
$.each(component.descriptors, function(_, descriptor) {
|
||||
if (descriptor.identifiesControllerService === true) {
|
||||
if (nf.Common.isDefinedAndNotNull(descriptor.identifiesControllerService)) {
|
||||
referencedServiceDescriptors.push(descriptor);
|
||||
}
|
||||
});
|
||||
|
@ -1180,8 +1259,9 @@ nf.ControllerService = (function () {
|
|||
// initialize the property table
|
||||
$('#controller-service-properties').propertytable({
|
||||
readOnly: false,
|
||||
newPropertyDialogContainer: '#new-controller-service-property-container',
|
||||
descriptorDeferred: getControllerServicePropertyDescriptor
|
||||
dialogContainer: '#new-controller-service-property-container',
|
||||
descriptorDeferred: getControllerServicePropertyDescriptor,
|
||||
goToServiceDeferred: goToServiceFromProperty
|
||||
});
|
||||
|
||||
// initialize the disable service dialog
|
||||
|
@ -1324,8 +1404,9 @@ nf.ControllerService = (function () {
|
|||
// initialize the property table
|
||||
$('#controller-service-properties').propertytable('destroy').propertytable({
|
||||
readOnly: false,
|
||||
newPropertyDialogContainer: '#new-controller-service-property-container',
|
||||
descriptorDeferred: getControllerServicePropertyDescriptor
|
||||
dialogContainer: '#new-controller-service-property-container',
|
||||
descriptorDeferred: getControllerServicePropertyDescriptor,
|
||||
goToServiceDeferred: goToServiceFromProperty
|
||||
});
|
||||
|
||||
// update the mode
|
||||
|
@ -1392,49 +1473,15 @@ nf.ControllerService = (function () {
|
|||
// close all fields currently being edited
|
||||
$('#controller-service-properties').propertytable('saveRow');
|
||||
|
||||
// marshal the settings and properties and update the controller service
|
||||
var updatedControllerService = marshalDetails();
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedControllerService)) {
|
||||
var previouslyReferencedServiceIds = [];
|
||||
$.each(identifyReferencedServiceDescriptors(controllerService), function (_, descriptor) {
|
||||
var modifyingService = !nf.Common.isUndefined(updatedControllerService.controllerService.properties) && !nf.Common.isUndefined(updatedControllerService.controllerService.properties[descriptor.name]);
|
||||
var isCurrentlyConfigured = nf.Common.isDefinedAndNotNull(controllerService.properties[descriptor.name]);
|
||||
|
||||
// if we are attempting to update a controller service reference
|
||||
if (modifyingService && isCurrentlyConfigured) {
|
||||
// record the current value if set
|
||||
previouslyReferencedServiceIds.push(controllerService.properties[descriptor.name]);
|
||||
}
|
||||
});
|
||||
// save the controller service
|
||||
saveControllerService(controllerService).done(function (response) {
|
||||
// reload the controller service
|
||||
renderControllerService(response.controllerService);
|
||||
reloadControllerServiceReferences(response.controllerService);
|
||||
|
||||
// update the selected component
|
||||
$.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedControllerService),
|
||||
url: controllerService.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.controllerService)) {
|
||||
nf.Client.setRevision(response.revision);
|
||||
|
||||
// reload the controller service
|
||||
renderControllerService(response.controllerService);
|
||||
reloadControllerServiceReferences(response.controllerService);
|
||||
|
||||
// reload all previously referenced controller services
|
||||
$.each(previouslyReferencedServiceIds, function(_, oldServiceReferenceId) {
|
||||
reloadControllerService(oldServiceReferenceId);
|
||||
});
|
||||
|
||||
// close the details panel
|
||||
controllerServiceDialog.modal('hide');
|
||||
}
|
||||
}).fail(handleControllerServiceConfigurationError);
|
||||
}
|
||||
// close the details panel
|
||||
controllerServiceDialog.modal('hide');
|
||||
});
|
||||
}
|
||||
}
|
||||
}, {
|
||||
|
@ -1480,47 +1527,10 @@ nf.ControllerService = (function () {
|
|||
overlayBackground: false,
|
||||
noHandler: openCustomUi,
|
||||
yesHandler: function () {
|
||||
// marshal the settings and properties and update the controller service
|
||||
var updatedControllerService = marshalDetails();
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedControllerService)) {
|
||||
var previouslyReferencedServiceIds = [];
|
||||
$.each(identifyReferencedServiceDescriptors(controllerService), function (_, descriptor) {
|
||||
var modifyingService = !nf.Common.isUndefined(updatedControllerService.controllerService.properties) && !nf.Common.isUndefined(updatedControllerService.controllerService.properties[descriptor.name]);
|
||||
var isCurrentlyConfigured = nf.Common.isDefinedAndNotNull(controllerService.properties[descriptor.name]);
|
||||
|
||||
// if we are attempting to update a controller service reference
|
||||
if (modifyingService && isCurrentlyConfigured) {
|
||||
|
||||
// record the current value if set
|
||||
previouslyReferencedServiceIds.push(controllerService.properties[descriptor.name]);
|
||||
}
|
||||
});
|
||||
|
||||
// update the selected component
|
||||
$.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedControllerService),
|
||||
url: controllerService.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.controllerService)) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
|
||||
// reload all previously referenced controller services
|
||||
$.each(previouslyReferencedServiceIds, function(_, oldServiceReferenceId) {
|
||||
reloadControllerService(oldServiceReferenceId);
|
||||
});
|
||||
|
||||
// open the custom ui
|
||||
openCustomUi();
|
||||
}
|
||||
}).fail(handleControllerServiceConfigurationError);
|
||||
}
|
||||
saveControllerService(controllerService).done(function () {
|
||||
// open the custom ui
|
||||
openCustomUi();
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
|
|
|
@ -380,6 +380,70 @@ nf.ProcessorConfiguration = (function () {
|
|||
}
|
||||
});
|
||||
};
|
||||
|
||||
/**
|
||||
* Goes to a service configuration from the property table.
|
||||
*/
|
||||
var goToServiceFromProperty = function () {
|
||||
return $.Deferred(function (deferred) {
|
||||
// close all fields currently being edited
|
||||
$('#processor-properties').propertytable('saveRow');
|
||||
|
||||
// determine if changes have been made
|
||||
if (isSaveRequired()) {
|
||||
// see if those changes should be saved
|
||||
nf.Dialog.showYesNoDialog({
|
||||
dialogContent: 'Save changes before going to this Controller Service?',
|
||||
overlayBackground: false,
|
||||
noHandler: function () {
|
||||
deferred.resolve();
|
||||
},
|
||||
yesHandler: function () {
|
||||
var processor = $('#processor-configuration').data('processorDetails');
|
||||
saveProcessor(processor).done(function () {
|
||||
deferred.resolve();
|
||||
}).fail(function () {
|
||||
deferred.reject();
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
deferred.resolve();
|
||||
}
|
||||
}).promise();
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @param {type} processor
|
||||
* @returns {undefined}
|
||||
*/
|
||||
var saveProcessor = function (processor) {
|
||||
// marshal the settings and properties and update the processor
|
||||
var updatedProcessor = marshalDetails();
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedProcessor)) {
|
||||
// update the selected component
|
||||
return $.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedProcessor),
|
||||
url: processor.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.processor)) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
}
|
||||
}).fail(handleProcessorConfigurationError);
|
||||
} else {
|
||||
return $.Deferred(function (deferred) {
|
||||
deferred.reject();
|
||||
}).promise();
|
||||
}
|
||||
};
|
||||
|
||||
return {
|
||||
/**
|
||||
|
@ -470,7 +534,7 @@ nf.ProcessorConfiguration = (function () {
|
|||
// initialize the property table
|
||||
$('#processor-properties').propertytable({
|
||||
readOnly: false,
|
||||
newPropertyDialogContainer: '#new-processor-property-container',
|
||||
dialogContainer: '#new-processor-property-container',
|
||||
descriptorDeferred: function(propertyName) {
|
||||
var processor = $('#processor-configuration').data('processorDetails');
|
||||
return $.ajax({
|
||||
|
@ -481,7 +545,8 @@ nf.ProcessorConfiguration = (function () {
|
|||
},
|
||||
dataType: 'json'
|
||||
}).fail(nf.Common.handleAjaxError);
|
||||
}
|
||||
},
|
||||
goToServiceDeferred: goToServiceFromProperty
|
||||
});
|
||||
},
|
||||
|
||||
|
@ -625,35 +690,17 @@ nf.ProcessorConfiguration = (function () {
|
|||
// close all fields currently being edited
|
||||
$('#processor-properties').propertytable('saveRow');
|
||||
|
||||
// marshal the settings and properties and update the processor
|
||||
var updatedProcessor = marshalDetails();
|
||||
// save the processor
|
||||
saveProcessor(processor).done(function (response) {
|
||||
// set the new processor state based on the response
|
||||
nf.Processor.set(response.processor);
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedProcessor)) {
|
||||
// update the selected component
|
||||
$.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedProcessor),
|
||||
url: processor.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.processor)) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
// reload the processor's outgoing connections
|
||||
reloadProcessorConnections(processor);
|
||||
|
||||
// set the new processor state based on the response
|
||||
nf.Processor.set(response.processor);
|
||||
|
||||
// reload the processor's outgoing connections
|
||||
reloadProcessorConnections(processor);
|
||||
|
||||
// close the details panel
|
||||
$('#processor-configuration').modal('hide');
|
||||
}
|
||||
}).fail(handleProcessorConfigurationError);
|
||||
}
|
||||
// close the details panel
|
||||
$('#processor-configuration').modal('hide');
|
||||
});
|
||||
}
|
||||
}
|
||||
}, {
|
||||
|
@ -696,29 +743,10 @@ nf.ProcessorConfiguration = (function () {
|
|||
overlayBackground: false,
|
||||
noHandler: openCustomUi,
|
||||
yesHandler: function () {
|
||||
// marshal the settings and properties and update the processor
|
||||
var updatedProcessor = marshalDetails();
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedProcessor)) {
|
||||
// update the selected component
|
||||
$.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedProcessor),
|
||||
url: processor.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.processor)) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
|
||||
// open the custom ui
|
||||
openCustomUi();
|
||||
}
|
||||
}).fail(handleProcessorConfigurationError);
|
||||
}
|
||||
saveProcessor(processor).done(function (deferred) {
|
||||
// open the custom ui
|
||||
openCustomUi();
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
|
|
|
@ -206,6 +206,70 @@ nf.ReportingTask = (function () {
|
|||
}).fail(nf.Common.handleAjaxError);
|
||||
};
|
||||
|
||||
/**
|
||||
* Goes to a service configuration from the property table.
|
||||
*/
|
||||
var goToServiceFromProperty = function () {
|
||||
return $.Deferred(function (deferred) {
|
||||
// close all fields currently being edited
|
||||
$('#reporting-task-properties').propertytable('saveRow');
|
||||
|
||||
// determine if changes have been made
|
||||
if (isSaveRequired()) {
|
||||
// see if those changes should be saved
|
||||
nf.Dialog.showYesNoDialog({
|
||||
dialogContent: 'Save changes before going to this Controller Service?',
|
||||
overlayBackground: false,
|
||||
noHandler: function () {
|
||||
deferred.resolve();
|
||||
},
|
||||
yesHandler: function () {
|
||||
var reportingTask = $('#reporting-task-configuration').data('reportingTaskDetails');
|
||||
saveReportingTask(reportingTask).done(function () {
|
||||
deferred.resolve();
|
||||
}).fail(function () {
|
||||
deferred.reject();
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
deferred.resolve();
|
||||
}
|
||||
}).promise();
|
||||
};
|
||||
|
||||
/**
|
||||
* Saves the specified reporting task.
|
||||
*
|
||||
* @param {type} reportingTask
|
||||
*/
|
||||
var saveReportingTask = function (reportingTask) {
|
||||
// marshal the settings and properties and update the reporting task
|
||||
var updatedReportingTask = marshalDetails();
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedReportingTask)) {
|
||||
// update the selected component
|
||||
return $.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedReportingTask),
|
||||
url: reportingTask.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.reportingTask)) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
}
|
||||
}).fail(handleReportingTaskConfigurationError);
|
||||
} else {
|
||||
return $.Deferred(function (deferred) {
|
||||
deferred.reject();
|
||||
}).promise();
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Gets a property descriptor for the controller service currently being configured.
|
||||
*
|
||||
|
@ -288,8 +352,9 @@ nf.ReportingTask = (function () {
|
|||
// initialize the property table
|
||||
$('#reporting-task-properties').propertytable({
|
||||
readOnly: false,
|
||||
newPropertyDialogContainer: '#new-reporting-task-property-container',
|
||||
deferredDescriptor: getReportingTaskPropertyDescriptor
|
||||
dialogContainer: '#new-reporting-task-property-container',
|
||||
deferredDescriptor: getReportingTaskPropertyDescriptor,
|
||||
goToServiceDeferred: goToServiceFromProperty
|
||||
});
|
||||
},
|
||||
|
||||
|
@ -308,8 +373,9 @@ nf.ReportingTask = (function () {
|
|||
// initialize the property table
|
||||
$('#reporting-task-properties').propertytable('destroy').propertytable({
|
||||
readOnly: false,
|
||||
newPropertyDialogContainer: '#new-reporting-task-property-container',
|
||||
deferredDescriptor: getReportingTaskPropertyDescriptor
|
||||
dialogContainer: '#new-reporting-task-property-container',
|
||||
deferredDescriptor: getReportingTaskPropertyDescriptor,
|
||||
goToServiceDeferred: goToServiceFromProperty
|
||||
});
|
||||
|
||||
// update the mode
|
||||
|
@ -407,33 +473,15 @@ nf.ReportingTask = (function () {
|
|||
// close all fields currently being edited
|
||||
$('#reporting-task-properties').propertytable('saveRow');
|
||||
|
||||
// marshal the settings and properties and update the reporting task
|
||||
var updatedReportingTask = marshalDetails();
|
||||
// save the reporting task
|
||||
saveReportingTask(reportingTask).done(function (response) {
|
||||
// reload the reporting task
|
||||
renderReportingTask(response.reportingTask);
|
||||
nf.ControllerService.reloadReferencedServices(response.reportingTask);
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedReportingTask)) {
|
||||
// update the selected component
|
||||
$.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedReportingTask),
|
||||
url: reportingTask.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.reportingTask)) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
|
||||
// reload the reporting task
|
||||
renderReportingTask(response.reportingTask);
|
||||
nf.ControllerService.reloadReferencedServices(response.reportingTask);
|
||||
|
||||
// close the details panel
|
||||
$('#reporting-task-configuration').modal('hide');
|
||||
}
|
||||
}).fail(handleReportingTaskConfigurationError);
|
||||
}
|
||||
// close the details panel
|
||||
$('#reporting-task-configuration').modal('hide');
|
||||
});
|
||||
}
|
||||
}
|
||||
}, {
|
||||
|
@ -481,29 +529,10 @@ nf.ReportingTask = (function () {
|
|||
overlayBackground: false,
|
||||
noHandler: openCustomUi,
|
||||
yesHandler: function () {
|
||||
// marshal the settings and properties and update the reporting task
|
||||
var updatedReportingTask = marshalDetails();
|
||||
|
||||
// ensure details are valid as far as we can tell
|
||||
if (validateDetails(updatedReportingTask)) {
|
||||
// update the selected component
|
||||
$.ajax({
|
||||
type: 'PUT',
|
||||
data: JSON.stringify(updatedReportingTask),
|
||||
url: reportingTask.uri,
|
||||
dataType: 'json',
|
||||
processData: false,
|
||||
contentType: 'application/json'
|
||||
}).done(function (response) {
|
||||
if (nf.Common.isDefinedAndNotNull(response.reportingTask)) {
|
||||
// update the revision
|
||||
nf.Client.setRevision(response.revision);
|
||||
|
||||
// open the custom ui
|
||||
openCustomUi();
|
||||
}
|
||||
}).fail(handleReportingTaskConfigurationError);
|
||||
}
|
||||
saveReportingTask(reportingTask).done(function () {
|
||||
// open the custom ui
|
||||
openCustomUi();
|
||||
});
|
||||
}
|
||||
});
|
||||
} else {
|
||||
|
|
|
@ -167,34 +167,6 @@ nf.Settings = (function () {
|
|||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines if all of the ancestors of the specified item are expanded.
|
||||
*
|
||||
* @param {type} item
|
||||
* @returns {Boolean}
|
||||
*/
|
||||
var areAncestorsExpanded = function (item) {
|
||||
var documentedType = item;
|
||||
while (documentedType.parent !== null) {
|
||||
if (documentedType.parent.collapsed === true) {
|
||||
return false;
|
||||
}
|
||||
documentedType = documentedType.parent;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
/**
|
||||
* Determines if the specified item is an ancestor.
|
||||
*
|
||||
* @param {type} item
|
||||
* @returns {Boolean}
|
||||
*/
|
||||
var isAncestor = function (item) {
|
||||
return item.children.length > 0;
|
||||
};
|
||||
|
||||
/**
|
||||
* Hides the selected controller service.
|
||||
*/
|
||||
|
@ -232,27 +204,6 @@ nf.Settings = (function () {
|
|||
* @returns {Boolean} Whether or not to include the item
|
||||
*/
|
||||
var filterControllerServiceTypes = function (item, args) {
|
||||
if (!areAncestorsExpanded(item)) {
|
||||
// if this item is currently selected and its parent is not collapsed
|
||||
if ($('#selected-controller-service-type').text() === item['type']) {
|
||||
clearControllerServiceSelection();
|
||||
}
|
||||
|
||||
// update visibility flag
|
||||
item.visible = false;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
// don't allow ancestors to be filtered out (unless any of their ancestors
|
||||
// are collapsed)
|
||||
if (isAncestor(item)) {
|
||||
// update visibility flag
|
||||
item.visible = false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
// determine if the item matches the filter
|
||||
var matchesFilter = matchesRegex(item, args);
|
||||
|
||||
|
@ -274,9 +225,6 @@ nf.Settings = (function () {
|
|||
clearControllerServiceSelection();
|
||||
}
|
||||
|
||||
// update visibility flag
|
||||
item.visible = matches;
|
||||
|
||||
return matches;
|
||||
};
|
||||
|
||||
|
@ -330,64 +278,6 @@ nf.Settings = (function () {
|
|||
return matches;
|
||||
};
|
||||
|
||||
/**
|
||||
* Formats the type by introducing expand/collapse where appropriate.
|
||||
*
|
||||
* @param {type} row
|
||||
* @param {type} cell
|
||||
* @param {type} value
|
||||
* @param {type} columnDef
|
||||
* @param {type} dataContext
|
||||
*/
|
||||
var expandableTypeFormatter = function (row, cell, value, columnDef, dataContext) {
|
||||
var markup = '';
|
||||
|
||||
var indent = 0;
|
||||
var documentedType = dataContext;
|
||||
while (documentedType.parent !== null) {
|
||||
indent += 20;
|
||||
documentedType = documentedType.parent;
|
||||
}
|
||||
|
||||
var padding = 3;
|
||||
|
||||
// create the markup for the row
|
||||
if (dataContext.children.length > 0) {
|
||||
// determine how to render the expansion button
|
||||
var expansionStyle = 'expanded';
|
||||
if (dataContext.collapsed === true) {
|
||||
expansionStyle = 'collapsed';
|
||||
}
|
||||
|
||||
// calculate the number of visible/total children
|
||||
var visibleChildren = 0;
|
||||
var totalChildren = 0;
|
||||
var countChildren = function (item) {
|
||||
$.each(item.children, function (_, child) {
|
||||
if (child.children.length > 0) {
|
||||
countChildren(child);
|
||||
} else {
|
||||
if (child.visible) {
|
||||
visibleChildren++;
|
||||
}
|
||||
totalChildren++;
|
||||
}
|
||||
});
|
||||
};
|
||||
countChildren(dataContext);
|
||||
|
||||
markup += ('<span style="margin-top: 5px; margin-left: ' + indent + 'px;" class="expansion-button ' + expansionStyle + '"></span><span class="ancestor-type" style="margin-left: ' + padding + 'px;">' + value + '</span><span class="ancestor-type-rollup">(' + visibleChildren + ' of ' + totalChildren + ')</span>');
|
||||
} else {
|
||||
if (dataContext.parent === null) {
|
||||
padding = 0;
|
||||
}
|
||||
|
||||
markup += ('<span style="margin-left: ' + (indent + padding) + 'px;">' + value + '</span>');
|
||||
}
|
||||
|
||||
return markup;
|
||||
};
|
||||
|
||||
/**
|
||||
* Adds a new controller service of the specified type.
|
||||
*
|
||||
|
@ -431,6 +321,7 @@ nf.Settings = (function () {
|
|||
// select the new controller service
|
||||
var row = controllerServicesData.getRowById(controllerService.id);
|
||||
controllerServicesGrid.setSelectedRows([row]);
|
||||
controllerServicesGrid.scrollRowIntoView(row);
|
||||
}).fail(nf.Common.handleAjaxError);
|
||||
|
||||
// hide the dialog
|
||||
|
@ -488,7 +379,7 @@ nf.Settings = (function () {
|
|||
|
||||
// initialize the processor type table
|
||||
var controllerServiceTypesColumns = [
|
||||
{id: 'type', name: 'Type', field: 'label', formatter: expandableTypeFormatter, sortable: false, resizable: true},
|
||||
{id: 'type', name: 'Type', field: 'label', sortable: false, resizable: true},
|
||||
{id: 'tags', name: 'Tags', field: 'tags', sortable: false, resizable: true}
|
||||
];
|
||||
|
||||
|
@ -502,32 +393,6 @@ nf.Settings = (function () {
|
|||
property: $('#controller-service-type-filter-options').combo('getSelectedOption').value
|
||||
});
|
||||
controllerServiceTypesData.setFilter(filterControllerServiceTypes);
|
||||
controllerServiceTypesData.getItemMetadata = function (index) {
|
||||
var item = controllerServiceTypesData.getItem(index);
|
||||
if (item && item.children.length > 0) {
|
||||
return {
|
||||
selectable: false,
|
||||
columns: {
|
||||
0: {
|
||||
colspan: '*'
|
||||
}
|
||||
}
|
||||
};
|
||||
} else {
|
||||
return {};
|
||||
}
|
||||
};
|
||||
|
||||
var getVisibleControllerServiceCount = function () {
|
||||
var count = 0;
|
||||
for (var i = 0; i < controllerServiceTypesData.getLength(); i++) {
|
||||
var item = controllerServiceTypesData.getItem(i);
|
||||
if (item.children.length === 0) {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
return count;
|
||||
};
|
||||
|
||||
// initialize the grid
|
||||
var controllerServiceTypesGrid = new Slick.Grid('#controller-service-types-table', controllerServiceTypesData, controllerServiceTypesColumns, gridOptions);
|
||||
|
@ -539,41 +404,20 @@ nf.Settings = (function () {
|
|||
var controllerServiceTypeIndex = args.rows[0];
|
||||
var controllerServiceType = controllerServiceTypesGrid.getDataItem(controllerServiceTypeIndex);
|
||||
|
||||
// only allow selection of service implementations
|
||||
if (controllerServiceType.children.length === 0) {
|
||||
// set the controller service type description
|
||||
if (nf.Common.isBlank(controllerServiceType.description)) {
|
||||
$('#controller-service-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
|
||||
} else {
|
||||
$('#controller-service-type-description').html(controllerServiceType.description).ellipsis();
|
||||
}
|
||||
|
||||
// populate the dom
|
||||
$('#controller-service-type-name').text(controllerServiceType.label).ellipsis();
|
||||
$('#selected-controller-service-name').text(controllerServiceType.label);
|
||||
$('#selected-controller-service-type').text(controllerServiceType.type);
|
||||
|
||||
// show the selected controller service
|
||||
$('#controller-service-description-container').show();
|
||||
}
|
||||
}
|
||||
});
|
||||
controllerServiceTypesGrid.onClick.subscribe(function (e, args) {
|
||||
var item = controllerServiceTypesData.getItem(args.row);
|
||||
if (item && item.children.length > 0) {
|
||||
// update the grid
|
||||
item.collapsed = !item.collapsed;
|
||||
controllerServiceTypesData.updateItem(item.id, item);
|
||||
|
||||
// update any affected ancestors
|
||||
var parent = item.parent;
|
||||
while (parent !== null) {
|
||||
controllerServiceTypesData.updateItem(parent.id, parent);
|
||||
parent = parent.parent;
|
||||
// set the controller service type description
|
||||
if (nf.Common.isBlank(controllerServiceType.description)) {
|
||||
$('#controller-service-type-description').attr('title', '').html('<span class="unset">No description specified</span>');
|
||||
} else {
|
||||
$('#controller-service-type-description').html(controllerServiceType.description).ellipsis();
|
||||
}
|
||||
|
||||
// prevent selection within slickgrid
|
||||
e.stopImmediatePropagation();
|
||||
// populate the dom
|
||||
$('#controller-service-type-name').text(controllerServiceType.label).ellipsis();
|
||||
$('#selected-controller-service-name').text(controllerServiceType.label);
|
||||
$('#selected-controller-service-type').text(controllerServiceType.type);
|
||||
|
||||
// show the selected controller service
|
||||
$('#controller-service-description-container').show();
|
||||
}
|
||||
});
|
||||
controllerServiceTypesGrid.onDblClick.subscribe(function (e, args) {
|
||||
|
@ -587,7 +431,7 @@ nf.Settings = (function () {
|
|||
controllerServiceTypesGrid.render();
|
||||
|
||||
// update the total number of displayed processors
|
||||
$('#displayed-controller-service-types').text(getVisibleControllerServiceCount());
|
||||
$('#displayed-controller-service-types').text(args.current);
|
||||
});
|
||||
controllerServiceTypesData.onRowsChanged.subscribe(function (e, args) {
|
||||
controllerServiceTypesGrid.invalidateRows(args.rows);
|
||||
|
@ -610,46 +454,28 @@ nf.Settings = (function () {
|
|||
// begin the update
|
||||
controllerServiceTypesData.beginUpdate();
|
||||
|
||||
var addType = function (parentItem, documentedType) {
|
||||
var item = {
|
||||
// go through each controller service type
|
||||
$.each(response.controllerServiceTypes, function (i, documentedType) {
|
||||
// add the documented type
|
||||
controllerServiceTypesData.addItem({
|
||||
id: id++,
|
||||
label: nf.Common.substringAfterLast(documentedType.type, '.'),
|
||||
type: documentedType.type,
|
||||
description: nf.Common.escapeHtml(documentedType.description),
|
||||
tags: documentedType.tags.join(', '),
|
||||
parent: parentItem,
|
||||
children: [],
|
||||
collapsed: false,
|
||||
visible: true
|
||||
};
|
||||
|
||||
// add the documented type
|
||||
controllerServiceTypesData.addItem(item);
|
||||
tags: documentedType.tags.join(', ')
|
||||
});
|
||||
|
||||
// count the frequency of each tag for this type
|
||||
$.each(documentedType.tags, function (i, tag) {
|
||||
tags.push(tag.toLowerCase());
|
||||
});
|
||||
|
||||
// add each of its children
|
||||
$.each(documentedType.childTypes, function (_, documentedChildType) {
|
||||
var childItem = addType(item, documentedChildType);
|
||||
item.children.push(childItem);
|
||||
});
|
||||
|
||||
return item;
|
||||
};
|
||||
|
||||
// go through each controller service type
|
||||
$.each(response.controllerServiceTypes, function (i, documentedType) {
|
||||
addType(null, documentedType);
|
||||
});
|
||||
|
||||
// end the udpate
|
||||
controllerServiceTypesData.endUpdate();
|
||||
|
||||
// set the total number of processors
|
||||
$('#total-controller-service-types, #displayed-controller-service-types').text(getVisibleControllerServiceCount());
|
||||
$('#total-controller-service-types, #displayed-controller-service-types').text(response.controllerServiceTypes.length);
|
||||
|
||||
// create the tag cloud
|
||||
$('#controller-service-tag-cloud').tagcloud({
|
||||
|
@ -1098,9 +924,6 @@ nf.Settings = (function () {
|
|||
clearReportingTaskSelection();
|
||||
}
|
||||
|
||||
// update visibility flag
|
||||
item.visible = matches;
|
||||
|
||||
return matches;
|
||||
};
|
||||
|
||||
|
@ -1147,6 +970,7 @@ nf.Settings = (function () {
|
|||
// select the new reporting task
|
||||
var row = reportingTaskData.getRowById(reportingTask.id);
|
||||
reportingTaskGrid.setSelectedRows([row]);
|
||||
reportingTaskGrid.scrollRowIntoView(row);
|
||||
}).fail(nf.Common.handleAjaxError);
|
||||
|
||||
// hide the dialog
|
||||
|
@ -1287,10 +1111,7 @@ nf.Settings = (function () {
|
|||
label: nf.Common.substringAfterLast(documentedType.type, '.'),
|
||||
type: documentedType.type,
|
||||
description: nf.Common.escapeHtml(documentedType.description),
|
||||
tags: documentedType.tags.join(', '),
|
||||
children: [],
|
||||
collapsed: false,
|
||||
visible: true
|
||||
tags: documentedType.tags.join(', ')
|
||||
});
|
||||
|
||||
// count the frequency of each tag for this type
|
||||
|
|
|
@ -28,6 +28,11 @@
|
|||
<artifactId>commons-lang3</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-utils</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>commons-codec</groupId>
|
||||
<artifactId>commons-codec</artifactId>
|
||||
|
|
|
@ -20,13 +20,16 @@
|
|||
<script type="text/javascript" src="../nifi/js/codemirror/lib/codemirror-compressed.js"></script>
|
||||
<script type="text/javascript" src="../nifi/js/jquery/jquery-2.1.1.min.js"></script>
|
||||
|
||||
<textarea id="codemirror-content">${content}</textarea>
|
||||
<textarea id="codemirror-content"><%= request.getAttribute("content") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("content").toString()) %></textarea>
|
||||
<span id="codemirror-mode" style="display: none;"><%= org.apache.nifi.util.EscapeUtils.escapeHtml(request.getAttribute("mode").toString()) %></span>
|
||||
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
var mode = $('#codemirror-mode').text();
|
||||
|
||||
var field = document.getElementById('codemirror-content');
|
||||
var editor = CodeMirror.fromTextArea(field, {
|
||||
mode: '${mode}',
|
||||
mode: mode,
|
||||
lineNumbers: true,
|
||||
matchBrackets: true,
|
||||
foldGutter: true,
|
||||
|
|
|
@ -33,6 +33,11 @@
|
|||
<artifactId>nifi-api</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-utils</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.apache.nifi</groupId>
|
||||
<artifactId>nifi-custom-ui-utilities</artifactId>
|
||||
|
|
|
@ -59,10 +59,10 @@
|
|||
<title>Update Attribute</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="attribute-updater-processor-id" class="hidden">${param.id}</div>
|
||||
<div id="attribute-updater-client-id" class="hidden">${param.clientId}</div>
|
||||
<div id="attribute-updater-revision" class="hidden">${param.revision}</div>
|
||||
<div id="attribute-updater-editable" class="hidden">${param.editable}</div>
|
||||
<div id="attribute-updater-processor-id" class="hidden"><%= request.getParameter("id") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getParameter("id")) %></div>
|
||||
<div id="attribute-updater-client-id" class="hidden"><%= request.getParameter("clientId") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getParameter("clientId")) %></div>
|
||||
<div id="attribute-updater-revision" class="hidden"><%= request.getParameter("revision") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getParameter("revision")) %></div>
|
||||
<div id="attribute-updater-editable" class="hidden"><%= request.getParameter("editable") == null ? "" : org.apache.nifi.util.EscapeUtils.escapeHtml(request.getParameter("editable")) %></div>
|
||||
<div id="update-attributes-content">
|
||||
<div id="rule-list-panel">
|
||||
<div id="flowfile-policy-container">
|
||||
|
|
Loading…
Reference in New Issue