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

net.codestory.http.templating.YamlFrontMatter Maven / Gradle / Ivy

/**
 * Copyright (C) 2013 [email protected]
 *
 * 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 net.codestory.http.templating;

import static net.codestory.http.io.Strings.*;

import java.io.*;
import java.nio.charset.*;
import java.nio.file.*;
import java.util.*;

import net.codestory.http.io.*;

public class YamlFrontMatter {
  private static final String SEPARATOR = "---\n";

  private final Path path;
  private final String content;
  private final Map variables;

  private YamlFrontMatter(Path path, String content, Map variables) {
    this.path = path;
    this.content = content;
    this.variables = new HashMap<>(variables);
    this.variables.put("content", content);
    this.variables.put("path", path);
    this.variables.put("name", Strings.substringBeforeLast(path.getFileName().toString(), "."));
  }

  public Path getPath() {
    return path;
  }

  public String getContent() {
    return content;
  }

  public Map getVariables() {
    return variables;
  }

  public static YamlFrontMatter parse(Path path) throws IOException {
    return parse(path, Resources.read(path, StandardCharsets.UTF_8));
  }

  public static YamlFrontMatter parse(Path path, String content) {
    if (countMatches(content, SEPARATOR) < 2) {
      return new YamlFrontMatter(path, content, Collections.emptyMap());
    }
    return new YamlFrontMatter(path, stripHeader(content), parseVariables(content));
  }

  private static String stripHeader(String content) {
    return substringAfter(substringAfter(content, SEPARATOR), SEPARATOR);
  }

  @SuppressWarnings("unchecked")
  private static Map parseVariables(String content) {
    String header = substringBetween(content, SEPARATOR, SEPARATOR);

    return new YamlParser().parse(header);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy