io.syndesis.connector.mqtt.MqttVerifierExtension Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2016 Red Hat, Inc.
*
* Licensed 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 io.syndesis.connector.mqtt;
import java.util.Map;
import org.apache.camel.CamelContext;
import org.apache.camel.component.extension.verifier.DefaultComponentVerifierExtension;
import org.apache.camel.component.extension.verifier.ResultBuilder;
import org.apache.camel.component.extension.verifier.ResultErrorBuilder;
import org.apache.camel.component.extension.verifier.ResultErrorHelper;
import org.apache.camel.util.ObjectHelper;
import org.eclipse.paho.client.mqttv3.MqttClient;
import org.eclipse.paho.client.mqttv3.MqttConnectOptions;
import org.eclipse.paho.client.mqttv3.MqttException;
import io.syndesis.connector.support.util.ConnectorOptions;
public class MqttVerifierExtension extends DefaultComponentVerifierExtension {
protected MqttVerifierExtension(String scheme, CamelContext context) {
super(scheme, context);
}
// *********************************
// Parameters validation
// *********************************
@Override
protected Result verifyParameters(Map parameters) {
return ResultBuilder.withStatusAndScope(Result.Status.OK, Scope.PARAMETERS)
.error(ResultErrorHelper.requiresOption("brokerUrl", parameters))
.build();
}
// *********************************
// Connectivity validation
// *********************************
@Override
protected Result verifyConnectivity(Map parameters) {
return ResultBuilder.withStatusAndScope(Result.Status.OK, Scope.CONNECTIVITY)
.error(parameters, MqttVerifierExtension::verifyCredentials)
.build();
}
private static void verifyCredentials(ResultBuilder builder, Map parameters) {
String brokerUrl = ConnectorOptions.extractOption(parameters, "brokerUrl");
String username = ConnectorOptions.extractOption(parameters, "userName");
String password = ConnectorOptions.extractOption(parameters, "password");
if (ObjectHelper.isNotEmpty(brokerUrl)) {
try {
// Create MQTT client
if (ObjectHelper.isEmpty(username) && ObjectHelper.isEmpty(password)) {
MqttClient client = new MqttClient(brokerUrl, MqttClient.generateClientId());
client.connect();
client.disconnect();
} else {
MqttClient client = new MqttClient(brokerUrl, MqttClient.generateClientId());
MqttConnectOptions connOpts = new MqttConnectOptions();
connOpts.setUserName(username);
connOpts.setPassword(password.toCharArray());
client.connect(connOpts);
client.disconnect();
}
} catch (MqttException e) {
builder.error(
ResultErrorBuilder.withCodeAndDescription(VerificationError.StandardCode.ILLEGAL_PARAMETER_VALUE, "Unable to connect to MQTT broker")
.parameterKey("brokerUrl")
.build()
);
}
} else {
builder.error(
ResultErrorBuilder.withCodeAndDescription(VerificationError.StandardCode.ILLEGAL_PARAMETER_VALUE, "Invalid blank MQTT brokerUrl ")
.parameterKey("brokerUrl")
.build()
);
}
}
}