Skip to content

Commit

Permalink
WFCORE-4613 Add missing validation for the URI of a ServiceURL.
Browse files Browse the repository at this point in the history
  • Loading branch information
pferraro committed Aug 19, 2019
1 parent 466c7e9 commit 91ec904
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 1 deletion.
@@ -0,0 +1,57 @@
/*
* JBoss, Home of Professional Open Source.
* Copyright 2019, Red Hat, Inc., and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/

package org.wildfly.extension.discovery;

import java.net.URI;

import org.jboss.as.controller.OperationFailedException;
import org.jboss.as.controller.operations.validation.ModelTypeValidator;
import org.jboss.dmr.ModelNode;
import org.jboss.dmr.ModelType;
import org.wildfly.discovery.ServiceURL;

/**
* Validates the URI of a ServiceURL.
* @author Paul Ferraro
*/
public class ServiceURIValidator extends ModelTypeValidator {

public ServiceURIValidator() {
super(ModelType.STRING);
}

@Override
public void validateParameter(String parameterName, ModelNode value) throws OperationFailedException {
super.validateParameter(parameterName, value);
if (value.getType() == ModelType.STRING) {
try {
// Ensure this is a valid URI
URI uri = URI.create(value.asString());
// Ensure the URI is a valid for use in a ServiceURL
new ServiceURL.Builder().setUri(uri);
} catch (IllegalArgumentException e) {
throw new OperationFailedException(e);
}
}
}
}
Expand Up @@ -51,7 +51,7 @@ final class StaticDiscoveryProviderDefinition extends SimpleResourceDefinition {

static final SimpleAttributeDefinition ABSTRACT_TYPE = new SimpleAttributeDefinitionBuilder("abstract-type", ModelType.STRING, true).setAllowExpression(true).build();
static final SimpleAttributeDefinition ABSTRACT_TYPE_AUTHORITY = new SimpleAttributeDefinitionBuilder("abstract-type-authority", ModelType.STRING, true).setAllowExpression(true).build();
static final SimpleAttributeDefinition URI = new SimpleAttributeDefinitionBuilder("uri", ModelType.STRING, false).setAllowExpression(true).build();
static final SimpleAttributeDefinition URI = new SimpleAttributeDefinitionBuilder("uri", ModelType.STRING, false).setValidator(new ServiceURIValidator()).setAllowExpression(true).build();
static final SimpleAttributeDefinition URI_SCHEME_AUTHORITY = new SimpleAttributeDefinitionBuilder("uri-scheme-authority", ModelType.STRING, true).setAllowExpression(true).build();

static final SimpleAttributeDefinition NAME = new SimpleAttributeDefinitionBuilder(ModelDescriptionConstants.NAME, ModelType.STRING, false).setAllowExpression(true).build();
Expand Down

0 comments on commit 91ec904

Please sign in to comment.