org.sonar.css.checks.common.InliningFontFileCheck Maven / Gradle / Ivy
/*
* SonarQube CSS / SCSS / Less Analyzer
* Copyright (C) 2013-2017 David RACODON
* mailto: [email protected]
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonar.css.checks.common;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Pattern;
import java.util.stream.Collectors;
import org.sonar.check.Priority;
import org.sonar.check.Rule;
import org.sonar.css.checks.Tags;
import org.sonar.css.model.atrule.standard.FontFace;
import org.sonar.css.model.property.standard.Src;
import org.sonar.plugins.css.api.tree.css.AtRuleTree;
import org.sonar.plugins.css.api.tree.css.PropertyDeclarationTree;
import org.sonar.plugins.css.api.tree.css.UriTree;
import org.sonar.plugins.css.api.visitors.DoubleDispatchVisitorCheck;
import org.sonar.squidbridge.annotations.SqaleConstantRemediation;
/**
* See http://bramstein.com/writing/web-font-anti-patterns-inlining.html
*/
@Rule(
key = "inlining-font-files",
name = "Font files inlining should not be used",
priority = Priority.MAJOR,
tags = {Tags.PERFORMANCE})
@SqaleConstantRemediation("1h")
public class InliningFontFileCheck extends DoubleDispatchVisitorCheck {
private static final Pattern BASE64_PATTERN = Pattern.compile(".*base64.*");
@Override
public void visitAtRule(AtRuleTree tree) {
if (tree.standardAtRule() instanceof FontFace && tree.block() != null) {
getAllUriTrees(tree.block().propertyDeclarations())
.forEach(this::checkUriTreeForInliningFont);
}
super.visitAtRule(tree);
}
private List getAllUriTrees(List declarations) {
List uris = new ArrayList<>();
declarations.stream()
.filter(d -> d.property().standardProperty() instanceof Src)
.forEach(d -> uris.addAll(
d.value().valueElementsOfType(UriTree.class).stream()
.collect(Collectors.toList())));
return uris;
}
private void checkUriTreeForInliningFont(UriTree tree) {
if (tree.uriContent() != null && BASE64_PATTERN.matcher(tree.uriContent().text()).matches()) {
addPreciseIssue(tree.uriContent(), "Remove this inline font file.");
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy