org.jumpmind.symmetric.web.InfoUriHandler Maven / Gradle / Ivy
/**
* Licensed to JumpMind Inc under one or more contributor
* license agreements. See the NOTICE file distributed
* with this work for additional information regarding
* copyright ownership. JumpMind Inc licenses this file
* to you under the GNU General Public License, version 3.0 (GPLv3)
* (the "License"); you may not use this file except in compliance
* with the License.
*
* You should have received a copy of the GNU General Public License,
* version 3.0 (GPLv3) along with this library; if not, see
* .
*
* 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.jumpmind.symmetric.web;
import java.io.IOException;
import java.util.List;
import java.util.Properties;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.jumpmind.symmetric.common.InfoConstants;
import org.jumpmind.symmetric.common.ParameterConstants;
import org.jumpmind.symmetric.model.Node;
import org.jumpmind.symmetric.model.NodeGroup;
import org.jumpmind.symmetric.service.IConfigurationService;
import org.jumpmind.symmetric.service.INodeService;
import org.jumpmind.symmetric.service.IParameterService;
/**
* Responsible for providing high level information about the node in property
* format
*/
public class InfoUriHandler extends AbstractUriHandler {
private INodeService nodeService;
private IConfigurationService configurationService;
public InfoUriHandler(IParameterService parameterService,
INodeService nodeService,
IConfigurationService configurationService) {
super("/info/*", parameterService);
this.nodeService = nodeService;
this.configurationService = configurationService;
}
public void handle(HttpServletRequest req, HttpServletResponse res) throws IOException,
ServletException {
res.setContentType("text/plain");
Node node = nodeService.findIdentity();
List nodeGroups = configurationService.getNodeGroups();
Properties properties = new Properties();
properties.setProperty(ParameterConstants.EXTERNAL_ID, parameterService.getExternalId());
properties.setProperty(ParameterConstants.NODE_GROUP_ID, parameterService.getNodeGroupId());
properties.setProperty(ParameterConstants.EXTERNAL_ID, parameterService.getExternalId());
if (nodeGroups != null) {
StringBuilder b = new StringBuilder();
for (NodeGroup nodeGroup : nodeGroups) {
b.append(nodeGroup.getNodeGroupId());
b.append(",");
}
properties.setProperty(InfoConstants.NODE_GROUP_IDS, b.substring(0, b.length() - 1));
}
if (node != null) {
properties.setProperty(InfoConstants.NODE_ID, node.getNodeId());
if (node.getDatabaseType() != null) {
properties.setProperty(InfoConstants.DATABASE_TYPE, node.getDatabaseType());
}
if (node.getDatabaseVersion() != null) {
properties.setProperty(InfoConstants.DATABASE_VERSION, node.getDatabaseVersion());
}
if (node.getDeploymentType() != null) {
properties.setProperty(InfoConstants.DEPLOYMENT_TYPE, node.getDeploymentType());
}
if (node.getSymmetricVersion() != null) {
properties.setProperty(InfoConstants.SYMMETRIC_VERSION, node.getSymmetricVersion());
}
}
properties.store(res.getOutputStream(), "SymmetricDS");
res.flushBuffer();
}
}