io.streamthoughts.kafka.specs.command.acls.subcommands.Apply Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kafka-specs Show documentation
Show all versions of kafka-specs Show documentation
Tool to ease and automate Apache Kafka cluster configuration management
The newest version!
/*
* Copyright 2021 StreamThoughts.
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.streamthoughts.kafka.specs.command.acls.subcommands;
import io.streamthoughts.kafka.specs.Description;
import io.streamthoughts.kafka.specs.change.AclChange;
import io.streamthoughts.kafka.specs.change.AclChanges;
import io.streamthoughts.kafka.specs.command.acls.AclsCommand;
import io.streamthoughts.kafka.specs.internal.DescriptionProvider;
import io.streamthoughts.kafka.specs.operation.AclOperation;
import io.streamthoughts.kafka.specs.operation.CreateAclsOperation;
import io.streamthoughts.kafka.specs.operation.DeleteAclsOperation;
import io.streamthoughts.kafka.specs.resources.acl.AccessControlPolicy;
import org.apache.kafka.clients.admin.AdminClient;
import org.jetbrains.annotations.NotNull;
import picocli.CommandLine.Command;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import static io.streamthoughts.kafka.specs.change.Change.OperationType.ADD;
import static io.streamthoughts.kafka.specs.change.Change.OperationType.DELETE;
@Command(name = "apply",
description = "Apply all changes to the Kafka ACLs."
)
public class Apply extends AclsCommand.Base {
public static final DescriptionProvider DESCRIPTION = (r) -> (Description.None) () -> {
return String.format("Unchanged ACL (%s %s to %s %s:%s:%s)",
r.permission(),
r.principal(),
r.operation(),
r.resourceType(),
r.patternType(),
r.resourcePattern());
};
/**
* {@inheritDoc}
*/
@Override
public AclOperation getOperation(@NotNull final AdminClient client) {
return new AclOperation() {
final CreateAclsOperation create = new CreateAclsOperation(client);
final DeleteAclsOperation delete = new DeleteAclsOperation(client);
@Override
public Description getDescriptionFor(final @NotNull AclChange change) {
switch (change.getOperation()) {
case ADD:
return create.getDescriptionFor(change);
case DELETE:
return delete.getDescriptionFor(change);
case NONE:
return DESCRIPTION.getForResource(change.getAccessControlPolicy());
default:
throw new UnsupportedOperationException("Unsupported operation type: " + change.getOperation());
}
}
@Override
public boolean test(final AclChange change) {
return List.of(ADD, DELETE).contains(change.getOperation());
}
@Override
public Map> apply(final @NotNull AclChanges changes) {
HashMap> results = new HashMap<>();
results.putAll(delete.apply(changes));
results.putAll(create.apply(changes));
return results;
}
};
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy