blob: 0447edb940a70c2609f9a492d2da400d21d3bf87 [file] [log] [blame]
// Copyright (C) 2014 The Android Open Source Project
//
// 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.google.gerrit.server.project;
import com.google.auto.value.AutoValue;
import com.google.common.collect.ImmutableList;
import com.google.common.flogger.FluentLogger;
import java.util.Set;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
import org.eclipse.jgit.annotations.Nullable;
import org.eclipse.jgit.errors.InvalidPatternException;
import org.eclipse.jgit.fnmatch.FileNameMatcher;
import org.eclipse.jgit.lib.Config;
@AutoValue
public abstract class ConfiguredMimeTypes {
private static final FluentLogger logger = FluentLogger.forEnclosingClass();
private static final String MIMETYPE = "mimetype";
private static final String KEY_PATH = "path";
protected abstract ImmutableList<TypeMatcher> matchers();
static ConfiguredMimeTypes create(String projectName, Config rc) {
Set<String> types = rc.getSubsections(MIMETYPE);
ImmutableList.Builder<TypeMatcher> matchers = ImmutableList.builder();
if (!types.isEmpty()) {
for (String typeName : types) {
for (String path : rc.getStringList(MIMETYPE, typeName, KEY_PATH)) {
try {
if (path.startsWith("^")) {
matchers.add(new ReType(typeName, path));
} else {
matchers.add(new FnType(typeName, path));
}
} catch (PatternSyntaxException | InvalidPatternException e) {
logger.atWarning().log(
"Ignoring invalid %s.%s.%s = %s in project %s: %s",
MIMETYPE, typeName, KEY_PATH, path, projectName, e.getMessage());
}
}
}
}
return new AutoValue_ConfiguredMimeTypes(matchers.build());
}
@Nullable
public String getMimeType(String path) {
for (TypeMatcher m : matchers()) {
if (m.matches(path)) {
return m.type;
}
}
return null;
}
protected abstract static class TypeMatcher {
private final String type;
private TypeMatcher(String type) {
this.type = type;
}
protected abstract boolean matches(String path);
}
protected static class FnType extends TypeMatcher {
private final FileNameMatcher matcher;
private FnType(String type, String pattern) throws InvalidPatternException {
super(type);
this.matcher = new FileNameMatcher(pattern, null);
}
@Override
protected boolean matches(String input) {
FileNameMatcher m = new FileNameMatcher(matcher);
m.append(input);
return m.isMatch();
}
}
protected static class ReType extends TypeMatcher {
private final Pattern re;
private ReType(String type, String pattern) throws PatternSyntaxException {
super(type);
this.re = Pattern.compile(pattern);
}
@Override
protected boolean matches(String input) {
return re.matcher(input).matches();
}
}
}