1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
|
18 | |
package org.apache.any23.validator.rule; |
19 | |
|
20 | |
import org.apache.any23.validator.DOMDocument; |
21 | |
import org.apache.any23.validator.Rule; |
22 | |
import org.apache.any23.validator.RuleContext; |
23 | |
import org.apache.any23.validator.ValidationReport; |
24 | |
import org.apache.any23.validator.ValidationReportBuilder; |
25 | |
import org.w3c.dom.Node; |
26 | |
|
27 | |
import java.util.ArrayList; |
28 | |
import java.util.List; |
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | 0 | public class MetaNameMisuseRule implements Rule { |
38 | |
|
39 | |
public static final String ERRORED_META_NODES = "errored-meta-nodes"; |
40 | |
|
41 | |
public String getHRName() { |
42 | 0 | return "meta-name-misuse-rule"; |
43 | |
} |
44 | |
|
45 | |
public boolean applyOn( |
46 | |
DOMDocument document, |
47 | |
RuleContext context, |
48 | |
ValidationReportBuilder validationReportBuilder |
49 | |
) { |
50 | 0 | List<Node> metaNodes = document.getNodes("/HTML/HEAD/META"); |
51 | 0 | boolean foundIssue = false; |
52 | 0 | final List<Node> wrongMetaNodes = new ArrayList<Node>(); |
53 | 0 | for(Node metaNode : metaNodes) { |
54 | 0 | Node nameNode = metaNode.getAttributes().getNamedItem("name"); |
55 | 0 | if(nameNode != null && nameNode.getTextContent().contains(":")) { |
56 | 0 | foundIssue = true; |
57 | 0 | wrongMetaNodes.add(metaNode); |
58 | 0 | validationReportBuilder.reportIssue( |
59 | |
ValidationReport.IssueLevel.error, |
60 | |
"Error detected in meta node: name property contains a prefixed value.", |
61 | |
metaNode |
62 | |
); |
63 | |
} |
64 | 0 | } |
65 | 0 | context.putData(ERRORED_META_NODES, wrongMetaNodes); |
66 | 0 | return foundIssue; |
67 | |
} |
68 | |
|
69 | |
} |