NoteGuesser.java

/*
 * 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.apache.rat.document.guesser;

import java.util.Arrays;
import java.util.Locale;

import org.apache.rat.api.Document;

/**
 * A class that determines if a file is a Note file. e.g. NOTICE, README, CHANGELOG, etc.
 */
public final class NoteGuesser {
    /** The character called a dot, fullstop, or period. */
    private static final String DOT = ".";

    /**
     * The list of note file names.
     */
    private static final String[] NOTE_FILE_NAMES = {
        "NOTICE", "LICENSE",
        "LICENSE.TXT", "NOTICE.TXT",
        "INSTALL", "INSTALL.TXT",
        "README", "README.TXT",
        "NEWS", "NEWS.TXT",
        "AUTHOR", "AUTHOR.TXT",
        "AUTHORS", "AUTHORS.txt",
        "CHANGELOG", "CHANGELOG.TXT",
        "DISCLAIMER", "DISCLAIMER.TXT",
        "KEYS", "KEYS.TXT",
        "RELEASE-NOTES", "RELEASE-NOTES.TXT",
        "RELEASE_NOTES", "RELEASE_NOTES.TXT",
        "UPGRADE", "UPGRADE.TXT",
        "STATUS", "STATUS.TXT",
        "THIRD_PARTY_NOTICES", "THIRD_PARTY_NOTICES.TXT",
        "COPYRIGHT", "COPYRIGHT.TXT",
        "BUILDING", "BUILDING.TXT",
        "BUILD", "BUILT.TXT",
        "DEPENDENCIES"
    };

    /**
     * List of note file extensions. Extensions that indicate a file is a note file.
     */
    private static final String[] NOTE_FILE_EXTENSIONS = {
        "LICENSE", "LICENSE.TXT",
        "NOTICE", "NOTICE.TXT",
    };

    private NoteGuesser() {
        // do not instantiate.
    }

    /**
     * Determines if the document is a note.
     *
     * @param document the document to check.
     * @return {@code true} if the document is a note.
     */
    public static boolean isNote(final Document document) {
        if (document == null) {
            return false;
        }

        String normalisedName = document.getName().getShortName().toUpperCase(Locale.US);
        if (Arrays.asList(NoteGuesser.NOTE_FILE_NAMES).contains(normalisedName)) {
            return true;
        }

        for (String extension : NoteGuesser.NOTE_FILE_EXTENSIONS) {
            if (normalisedName.endsWith(DOT + extension)) {
                return true;
            }
        }

        return false;
    }

}