io.gravitee.rest.api.services.sync.ApiManager Maven / Gradle / Ivy
/*
* Copyright © 2015 The Gravitee team (http://gravitee.io)
*
* 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.gravitee.rest.api.services.sync;
import io.gravitee.common.event.EventManager;
import io.gravitee.repository.management.model.Api;
import io.gravitee.repository.management.model.LifecycleState;
import io.gravitee.rest.api.service.event.ApiEvent;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
/**
* @author David BRASSELY (david.brassely at graviteesource.com)
* @author GraviteeSource Team
*/
public class ApiManager {
private final Logger logger = LoggerFactory.getLogger(ApiManager.class);
private final Map apis = new HashMap<>();
@Autowired
private EventManager eventManager;
public void deploy(Api api) {
logger.info("Deployment of {}", api);
apis.put(api.getId(), api);
if (api.getLifecycleState() == LifecycleState.STARTED) {
eventManager.publishEvent(ApiEvent.DEPLOY, api);
} else {
logger.debug("{} is not enabled. Skip deployment.", api);
}
}
public void update(Api api) {
apis.put(api.getId(), api);
eventManager.publishEvent(ApiEvent.UPDATE, api);
}
public void undeploy(String apiId) {
Api currentApi = apis.remove(apiId);
if (currentApi != null) {
logger.info("Undeployment of {}", currentApi);
eventManager.publishEvent(ApiEvent.UNDEPLOY, currentApi);
logger.info("{} has been undeployed", apiId);
}
}
public void setEventManager(EventManager eventManager) {
this.eventManager = eventManager;
}
public Collection apis() {
return apis.values();
}
public Api get(String name) {
return apis.get(name);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy