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

com.twosigma.znai.web.WebResource Maven / Gradle / Ivy

There is a newer version: 1.29
Show newest version
/*
 * Copyright 2019 TWO SIGMA OPEN SOURCE, LLC
 *
 * 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.twosigma.znai.web;

import com.twosigma.znai.utils.FileUtils;
import com.twosigma.znai.utils.ResourceUtils;

import java.nio.file.Path;

public class WebResource {
    private final Path originPath;
    private final String path;
    private final byte[] resourceContent;

    private WebResource(final Path originPath, final String path) {
        this.originPath = originPath;
        this.path = path;
        this.resourceContent = null;
    }

    private WebResource(final String resourcePath) {
        this.originPath = null;
        this.path = resourcePath;
        this.resourceContent = ResourceUtils.binaryContent(resourcePath);
    }

    private WebResource(final String path, final byte[] content) {
        this.originPath = null;
        this.path = path;
        this.resourceContent = content;
    }

    public static WebResource withPath(final String path) {
        return new WebResource(null, path);
    }
    
    public static WebResource withPath(final Path originPath, final String webPath) {
        return new WebResource(originPath, webPath);
    }

    public static WebResource fromResource(final String resourcePath) {
        return new WebResource(resourcePath);
    }

    public static WebResource withTextContent(final String path, final String content) {
        return new WebResource(path, content.getBytes());
    }

    public Path getOriginPath() {
        return originPath;
    }

    public String getPath() {
        return path;
    }

    public String generateCssLink(String documentationId) {
        return "";
    }

    public String generateJavaScriptLink(String documentationId) {
        return "";
    }

    private String pathForHtml(String documentationId) {
        return "/" + ((documentationId.isEmpty()) ? "" : documentationId + "/") + path;
    }

    public byte[] getBinaryContent() {
        return resourceContent == null ?
                FileUtils.fileBinaryContent(originPath):
                resourceContent;
    }

    public String getTextContent() {
        return new String(getBinaryContent());
    }

    @Override
    public String toString() {
        return (resourceContent == null ? "FromDisk" : "FromResource") + "{" +
                "originPath=" + originPath +
                ", path='" + path + '\'' +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy