1
0
Fork 0
mirror of https://github.com/crawler-commons/crawler-commons synced 2024-05-07 07:16:02 +02:00

[Sitemaps] Disable support for DTDs in sitemaps by default

- update change log
- apply code formatting
- add support for parsing sitemaps with DTD in SiteMapTester
This commit is contained in:
Sebastian Nagel 2022-03-02 15:47:19 +01:00
parent 273ac6ac7e
commit 23ee0634dc
4 changed files with 38 additions and 29 deletions

View File

@ -1,6 +1,7 @@
Crawler-Commons Change Log
Current Development 1.3-SNAPSHOT (yyyy-mm-dd)
- [Sitemaps] Disable support for DTDs in XML sitemaps and feeds by default (Kenneth Wong) #371
- Migrate Continuous Integration from Travis to GitHub Actions (Valery Yatsynovich) #333
- Upgrade dependencies (dependabot, Richard Zowalla) #334, #339, #345, #346, #347, #350, #369
- Upgrade Maven plugins (dependabot, Richard Zowalla, sebastian-nagel) #328, #329, #330, #331, #335, #336, #337, #338, #340, #341, #343, #356, #363. #364, #366

View File

@ -103,7 +103,7 @@ public class SiteMapParser {
private MimeTypeDetector mimeTypeDetector;
/**
* Option to allow DTD when parsing site map
* Option to allow DTDs in sitemaps.
*/
private boolean allowDocTypeDefinitions = false;
@ -145,6 +145,16 @@ public class SiteMapParser {
this.mimeTypeDetector = new MimeTypeDetector();
}
/**
* Sets if the parser allows a DTD in sitemaps or feeds.
*
* @param allowDocTypeDefinitions
* true if allowed. Default is false.
*/
public void setAllowDocTypeDefinitions(boolean allowDocTypeDefinitions) {
this.allowDocTypeDefinitions = allowDocTypeDefinitions;
}
/**
* @return whether invalid URLs will be rejected (where invalid means that
* the URL is not under the base URL, see <a href=
@ -169,7 +179,7 @@ public class SiteMapParser {
* specification, or any accepted namespace (see
* {@link #addAcceptedNamespace(String)}). Note enabling strict namespace
* checking always adds the namespace defined by the current sitemap
* specificiation ({@link Namespace#SITEMAP}) to the list of accepted
* specification ({@link Namespace#SITEMAP}) to the list of accepted
* namespaces.
*
* @param s
@ -247,6 +257,7 @@ public class SiteMapParser {
public void setURLFilter(URLFilter filter) {
urlFilter = filter::filter;
}
/**
* Returns a SiteMap or SiteMapIndex given an online sitemap URL
*
@ -669,12 +680,4 @@ public class SiteMapParser {
public static boolean urlIsValid(String sitemapBaseUrl, String testUrl) {
return testUrl.startsWith(sitemapBaseUrl);
}
/**
* Set if the parser allow DTD
* @param allowDocTypeDefinitions true if allowed. Default is false.
*/
public void setAllowDocTypeDefinitions(boolean allowDocTypeDefinitions) {
this.allowDocTypeDefinitions = allowDocTypeDefinitions;
}
}

View File

@ -46,6 +46,8 @@ public class SiteMapTester {
LOG.error("Java properties:");
LOG.error(" sitemap.strictNamespace");
LOG.error(" if true sitemaps are required to use the standard namespace URI");
LOG.error(" sitemap.allow.dtd");
LOG.error(" if true sitemaps are allowed to include a DTD");
LOG.error(" sitemap.extensions");
LOG.error(" if true enable sitemap extension parsing");
LOG.error(" sitemap.filter.urls");
@ -71,6 +73,9 @@ public class SiteMapTester {
boolean strictNamespace = Boolean.getBoolean("sitemap.strictNamespace");
saxParser.setStrictNamespace(strictNamespace);
boolean allowDTD = Boolean.getBoolean("sitemap.allow.dtd");
saxParser.setAllowDocTypeDefinitions(allowDTD);
boolean enableExtensions = Boolean.getBoolean("sitemap.extensions");
if (enableExtensions) {
saxParser.enableExtensions();