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

com.predic8.membrane.core.kubernetes.KubernetesSchemaResolver Maven / Gradle / Ivy

There is a newer version: 5.7.3
Show newest version
/* Copyright 2013 predic8 GmbH, www.predic8.com

   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.predic8.membrane.core.kubernetes;

import com.google.common.collect.Lists;
import com.predic8.membrane.core.kubernetes.client.KubernetesClient;
import com.predic8.membrane.core.kubernetes.client.KubernetesClientFactory;
import com.predic8.membrane.core.resolver.ResourceRetrievalException;
import com.predic8.membrane.core.resolver.SchemaResolver;
import com.predic8.membrane.core.util.functionalInterfaces.ExceptionThrowingConsumer;

import javax.annotation.Nullable;
import java.io.ByteArrayInputStream;
import java.io.InputStream;
import java.util.Base64;
import java.util.List;
import java.util.Map;

public class KubernetesSchemaResolver implements SchemaResolver {

    KubernetesClientFactory kubernetesClientFactory;
    KubernetesClient kc;

    public KubernetesSchemaResolver(@Nullable KubernetesClientFactory kubernetesClientFactory) {
        this.kubernetesClientFactory = kubernetesClientFactory;
    }

    private synchronized KubernetesClient getClient() {
        if (kc == null) {
            if (kubernetesClientFactory == null)
                kubernetesClientFactory = new KubernetesClientFactory(null);
            kc = kubernetesClientFactory.createClient(null);
        }
        return kc;
    }

    @Override
    public List getSchemas() {
        return Lists.newArrayList("kubernetes");
    }

    public InputStream resolve(String url) throws ResourceRetrievalException {
        try {
            if (!url.startsWith("kubernetes:"))
                throw new IllegalArgumentException();
            url = url.substring(11);
            if (url.startsWith("secret:")) {
                url = url.substring(7);
                int p = url.indexOf('/');
                String namespace = url.substring(0, p);
                url = url.substring(p+1);
                p = url.indexOf('/');
                String name = url.substring(0, p);
                String key = url.substring(p+1);

                Map secret = getClient().read("v1", "Secret", namespace, name);
                String res = (String) ((Map)secret.get("data")).get(key);
                return new ByteArrayInputStream(Base64.getDecoder().decode(res));
            }
            throw new ResourceRetrievalException(url);
        } catch (ResourceRetrievalException e) {
            throw e;
        } catch (Exception e) {
            ResourceRetrievalException rre = new ResourceRetrievalException(url, e);
            throw rre;
        }
    }

    @Override
    public void observeChange(String url, ExceptionThrowingConsumer consumer) throws ResourceRetrievalException {
        throw new RuntimeException("not implemented");
    }

    @Override
    public List getChildren(String url) {
        return null;
    }

    @Override
    public long getTimestamp(String url) {
        return 0;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy