All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dangdang.ddframe.job.lite.console.controller.RegistryCenterController Maven / Gradle / Ivy

/*
 * Copyright 1999-2015 dangdang.com.
 * 

* 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 com.dangdang.ddframe.job.lite.console.controller; import com.dangdang.ddframe.job.lite.console.domain.RegistryCenterConfiguration; import com.dangdang.ddframe.job.lite.console.service.RegistryCenterService; import com.dangdang.ddframe.job.lite.lifecycle.internal.reg.RegistryCenterFactory; import com.dangdang.ddframe.job.reg.exception.RegException; import com.google.common.base.Optional; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; import javax.servlet.http.HttpSession; import java.util.Collection; @RestController @RequestMapping("registry_center") public class RegistryCenterController { public static final String REG_CENTER_CONFIG_KEY = "reg_center_config_key"; @Resource private RegistryCenterService regCenterService; @RequestMapping(method = RequestMethod.GET) public Collection load(final HttpSession session) { Optional regCenterConfig = regCenterService.loadActivated(); if (regCenterConfig.isPresent()) { setRegistryCenterNameToSession(regCenterConfig.get(), session); } return regCenterService.loadAll(); } @RequestMapping(method = RequestMethod.POST) public boolean add(final RegistryCenterConfiguration config) { return regCenterService.add(config); } @RequestMapping(value = "delete", method = RequestMethod.POST) public void delete(final RegistryCenterConfiguration config) { regCenterService.delete(config.getName()); } @RequestMapping(value = "connect", method = RequestMethod.POST) public boolean connect(final RegistryCenterConfiguration config, final HttpSession session) { return setRegistryCenterNameToSession(regCenterService.load(config.getName()), session); } private boolean setRegistryCenterNameToSession(final RegistryCenterConfiguration regCenterConfig, final HttpSession session) { session.setAttribute(REG_CENTER_CONFIG_KEY, regCenterConfig); try { RegistryCenterFactory.createCoordinatorRegistryCenter(regCenterConfig.getZkAddressList(), regCenterConfig.getNamespace(), Optional.fromNullable(regCenterConfig.getDigest())); } catch (final RegException ex) { return false; } return true; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy