blob: 60380b815774147b870036d62c5052cd76004c2d [file] [log] [blame]
/*
* 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 org.netbeans.modules.cloud.oracle.vault;
import com.oracle.bmc.keymanagement.KmsManagementClient;
import com.oracle.bmc.keymanagement.model.Vault;
import com.oracle.bmc.keymanagement.requests.ListKeysRequest;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import org.netbeans.modules.cloud.oracle.ChildrenProvider;
import org.netbeans.modules.cloud.oracle.NodeProvider;
import org.netbeans.modules.cloud.oracle.OCIManager;
import org.netbeans.modules.cloud.oracle.OCINode;
import org.netbeans.modules.cloud.oracle.items.OCID;
import org.openide.nodes.Children;
import org.openide.util.NbBundle;
/**
*
* @author Jan Horvath
*/
@NbBundle.Messages({})
public class KeyNode extends OCINode {
private static final String KEY_ICON = "org/netbeans/modules/cloud/oracle/resources/key.svg"; // NOI18N
private static final Logger LOG = Logger.getLogger(KeyNode.class.getName());
public KeyNode(KeyItem key) {
super(key, Children.LEAF);
setName(key.getName());
setDisplayName(key.getName());
setIconBaseWithExtension(KEY_ICON);
setShortDescription(key.getDescription());
}
public static NodeProvider<KeyItem> createNode() {
return KeyNode::new;
}
/**
* Retrieves list of Keys belonging to a given Vault.
*
* @param compartmentId OCID of the Vault
* @return List of {@code OCIItem} describing Keys in a given
* Vault
*/
public static ChildrenProvider<VaultItem, KeyItem> getKeys() {
return vault -> {
Vault v = Vault.builder()
.compartmentId(vault.compartmentId)
.id(vault.getKey().getValue())
.managementEndpoint(vault.managementEndpoint)
.build();
KmsManagementClient client = KmsManagementClient.builder()
.vault(v)
.build(OCIManager.getDefault().getActiveProfile().getConfigProvider());
ListKeysRequest listKeysRequest = ListKeysRequest.builder()
.compartmentId(vault.getCompartmentId())
.limit(88)
.build();
return client.listKeys(listKeysRequest)
.getItems()
.stream()
.map(d -> new KeyItem(
OCID.of(d.getId(), "Vault/Key"), //NOI18N
d.getDisplayName(),
d.getCompartmentId())
)
.collect(Collectors.toList());
};
}
}