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

com.axway.apim.actions.UpdateExistingAPI Maven / Gradle / Ivy

package com.axway.apim.actions;

import java.util.List;
import java.util.Vector;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.axway.apim.actions.tasks.ManageClientApps;
import com.axway.apim.actions.tasks.ManageClientOrgs;
import com.axway.apim.actions.tasks.UpdateAPIImage;
import com.axway.apim.actions.tasks.UpdateAPIProxy;
import com.axway.apim.actions.tasks.UpdateAPIStatus;
import com.axway.apim.actions.tasks.UpdateQuotaConfiguration;
import com.axway.apim.actions.tasks.props.VhostPropertyHandler;
import com.axway.apim.lib.AppException;
import com.axway.apim.lib.APIPropertiesExport;
import com.axway.apim.swagger.APIChangeState;
import com.axway.apim.swagger.APIManagerAdapter;

/**
 * This class is used by the {@link APIManagerAdapter#applyChanges(APIChangeState)} to update an existing API. 
 * This happens, when all changes can be applied to the existing API which is quite of the case for an "Unpublished" API.
 * 
 * @author [email protected]
 */
public class UpdateExistingAPI {
	
	static Logger LOG = LoggerFactory.getLogger(UpdateExistingAPI.class);

	public void execute(APIChangeState changes) throws AppException {
		
		List allChanges = new Vector();
		allChanges.addAll(changes.getBreakingChanges());
		allChanges.addAll(changes.getNonBreakingChanges());
		
		try {
		
			VhostPropertyHandler vHostHandler = new VhostPropertyHandler(allChanges);
	
			new UpdateAPIProxy(changes.getDesiredAPI(), changes.getActualAPI()).execute(allChanges);
			
			// If image is include, update it
			if(changes.getNonBreakingChanges().contains("image")) {
				new UpdateAPIImage(changes.getDesiredAPI(), changes.getActualAPI()).execute();
			}
			
			// This is special, as the status is not a property and requires some additional actions!
			UpdateAPIStatus statusUpdate = new UpdateAPIStatus(changes.getDesiredAPI(), changes.getActualAPI());
			if(changes.getNonBreakingChanges().contains("state")) {
				statusUpdate.execute();
			}
			if(changes.getNonBreakingChanges().contains("retirementDate")) {
				statusUpdate.updateRetirementDate(changes);
			}
			
			vHostHandler.handleVHost(changes.getDesiredAPI(), changes.getActualAPI(), statusUpdate.isUpdateVHostRequired());
			
			new UpdateQuotaConfiguration(changes.getDesiredAPI(), changes.getActualAPI()).execute();
			new ManageClientOrgs(changes.getDesiredAPI(), changes.getActualAPI()).execute(false);
			// Handle subscription to applications
			new ManageClientApps(changes.getDesiredAPI(), changes.getActualAPI(), null).execute(false);
		} catch (Exception e) {
			throw e;
		} finally {
			APIPropertiesExport.getInstance().setProperty("feApiId", changes.getActualAPI().getId());
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy