com.marklogic.appdeployer.command.security.DeployQueryRolesetsCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ml-app-deployer Show documentation
Show all versions of ml-app-deployer Show documentation
Java client for the MarkLogic REST Management API and for deploying applications to MarkLogic
/*
* Copyright (c) 2023 MarkLogic Corporation
*
* 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.marklogic.appdeployer.command.security;
import com.fasterxml.jackson.databind.node.ObjectNode;
import com.marklogic.appdeployer.command.AbstractResourceCommand;
import com.marklogic.appdeployer.command.CommandContext;
import com.marklogic.appdeployer.command.SortOrderConstants;
import com.marklogic.appdeployer.command.SupportsCmaCommand;
import com.marklogic.mgmt.api.configuration.Configuration;
import com.marklogic.mgmt.api.security.queryroleset.QueryRoleset;
import com.marklogic.mgmt.resource.ResourceManager;
import com.marklogic.mgmt.resource.security.QueryRolesetManager;
import java.io.File;
public class DeployQueryRolesetsCommand extends AbstractResourceCommand implements SupportsCmaCommand {
public DeployQueryRolesetsCommand() {
setExecuteSortOrder(SortOrderConstants.DEPLOY_QUERY_ROLESETS);
setUndoSortOrder(SortOrderConstants.DELETE_QUERY_ROLESETS);
setResourceClassType(QueryRoleset.class);
}
@Override
public boolean cmaShouldBeUsed(CommandContext context) {
return context.getAppConfig().getCmaConfig().isDeployQueryRolesets();
}
@Override
public void addResourceToConfiguration(ObjectNode resource, Configuration configuration) {
configuration.addQueryRoleset(resource);
}
@Override
protected void deployConfiguration(CommandContext context, Configuration config) {
if (context.getAppConfig().getCmaConfig().isCombineRequests()) {
logger.info("Adding query rolesets to combined CMA request");
context.addCmaConfigurationToCombinedRequest(config);
} else {
super.deployConfiguration(context, config);
}
}
@Override
protected File[] getResourceDirs(CommandContext context) {
return findResourceDirs(context, configDir -> configDir.getQueryRolesetsDir());
}
@Override
protected ResourceManager getResourceManager(CommandContext context) {
return new QueryRolesetManager(context.getManageClient());
}
}