org.glassfish.deployment.admin.MTUnprovisionCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2012 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package org.glassfish.deployment.admin;
import java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
import java.util.logging.Logger;
import java.util.logging.Level;
import java.net.URI;
import org.glassfish.api.admin.AdminCommand;
import org.glassfish.api.admin.AdminCommandContext;
import org.glassfish.api.admin.CommandLock;
import org.glassfish.api.admin.RuntimeType;
import org.glassfish.api.ActionReport;
import org.glassfish.api.Param;
import org.glassfish.api.deployment.DeployCommandParameters;
import org.glassfish.api.deployment.DeploymentContext;
import org.glassfish.api.deployment.archive.ReadableArchive;
import org.glassfish.api.deployment.UndeployCommandParameters;
import org.glassfish.internal.data.ApplicationInfo;
import org.glassfish.internal.deployment.Deployment;
import org.glassfish.internal.deployment.ExtendedDeploymentContext;
import org.glassfish.deployment.common.DeploymentUtils;
import javax.inject.Inject;
import org.jvnet.hk2.annotations.Service;
import org.glassfish.hk2.api.PerLookup;
import com.sun.enterprise.config.serverbeans.Application;
import com.sun.enterprise.config.serverbeans.Applications;
import com.sun.enterprise.config.serverbeans.AppTenant;
import com.sun.enterprise.deploy.shared.ArchiveFactory;
import com.sun.enterprise.util.LocalStringManagerImpl;
import java.util.Collection;
import org.glassfish.api.admin.AccessRequired;
import org.glassfish.api.admin.AccessRequired.AccessCheck;
import org.glassfish.api.admin.AdminCommandSecurity;
@Service(name="_mt-unprovision")
@org.glassfish.api.admin.ExecuteOn(value={RuntimeType.DAS})
@PerLookup
@CommandLock(CommandLock.LockType.NONE)
public class MTUnprovisionCommand implements AdminCommand, AdminCommandSecurity.AccessCheckProvider {
@Param(primary=true)
public String appname = null;
@Param
public String tenant = null;
@Inject
Applications applications;
@Inject
Deployment deployment;
@Inject
ArchiveFactory archiveFactory;
private Application app;
private AppTenant appTenant = null;
@Override
public Collection extends AccessCheck> getAccessChecks() {
final List accessChecks = new ArrayList();
app = applications.getApplication(appname);
if (app != null) {
accessChecks.add(new AccessCheck(AccessRequired.Util.resourceNameFromConfigBeanProxy(app), "read"));
if (app.getAppTenants() != null) {
appTenant = app.getAppTenants().getAppTenant(tenant);
if (appTenant != null) {
accessChecks.add(new AccessCheck(AccessRequired.Util.resourceNameFromConfigBeanProxy(appTenant), "unprovision"));
}
}
}
return accessChecks;
}
final private static LocalStringManagerImpl localStrings = new LocalStringManagerImpl(MTUnprovisionCommand.class);
public void execute(AdminCommandContext context) {
final ActionReport report = context.getActionReport();
final Logger logger = context.getLogger();
if (app == null) {
report.setMessage("Application " + appname + " is not deployed");
report.setActionExitCode(ActionReport.ExitCode.FAILURE);
return;
}
if (appTenant == null) {
report.setMessage("Application " + appname + " is not provisioned to tenant " + tenant);
report.setActionExitCode(ActionReport.ExitCode.FAILURE);
return;
}
String internalAppName = DeploymentUtils.getInternalNameForTenant(appname, tenant);
ApplicationInfo appInfo = deployment.get(internalAppName);
ReadableArchive archive = null;
try {
if (appInfo != null) {
archive = appInfo.getSource();
} else {
URI uri = new URI(app.getLocation());
File location = new File(uri);
if (location.exists()) {
archive = archiveFactory.openArchive(location);
} else {
logger.log(Level.WARNING, localStrings.getLocalString("fnf", "File not found", location.getAbsolutePath()));
deployment.unregisterTenantWithAppInDomainXML(appname, tenant);
return;
}
}
UndeployCommandParameters commandParams =
new UndeployCommandParameters();
commandParams.target = DeploymentUtils.DAS_TARGET_NAME;
commandParams.name = internalAppName;
commandParams.origin = DeployCommandParameters.Origin.mt_unprovision;
ExtendedDeploymentContext deploymentContext = deployment.getBuilder(logger, commandParams, report).source(archive).build();
deploymentContext.getAppProps().putAll(
app.getDeployProperties());
deploymentContext.getAppProps().putAll(
appTenant.getDeployProperties());
deploymentContext.setModulePropsMap(
app.getModulePropertiesMap());
deploymentContext.setTenant(tenant, app.getName());
deployment.undeploy(internalAppName, deploymentContext);
deployment.unregisterTenantWithAppInDomainXML(appname, tenant);
// remove context from generated and tenant dir
deploymentContext.clean();
} catch(Throwable e) {
report.setActionExitCode(ActionReport.ExitCode.FAILURE);
report.setMessage(e.getMessage());
report.setFailureCause(e);
} finally {
try {
if (archive != null) {
archive.close();
}
} catch(IOException e) {
// ignore
}
}
}
}