Skip to content

Commit

Permalink
API / Improve parameter check for XSL conversion. (#8201)
Browse files Browse the repository at this point in the history
  • Loading branch information
fxprunayre committed Sep 2, 2024
1 parent 6f4e79a commit c9164d0
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,11 @@
import jeeves.server.sources.http.JeevesServlet;
import org.fao.geonet.ApplicationContextHolder;
import org.fao.geonet.constants.Geonet;
import org.fao.geonet.exceptions.BadParameterEx;
import org.fao.geonet.utils.FilePathChecker;
import org.fao.geonet.utils.IO;
import org.fao.geonet.utils.Log;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationEvent;
import org.springframework.context.ConfigurableApplicationContext;
Expand Down Expand Up @@ -63,6 +66,9 @@ public class GeonetworkDataDirectory {
*/
public static final String GEONETWORK_BEAN_KEY = "GeonetworkDataDirectory";

@Autowired
SchemaManager schemaManager;

private Path webappDir;
private Path systemDataDir;
private Path indexConfigDir;
Expand Down Expand Up @@ -797,11 +803,18 @@ public Path getXsltConversion(String conversionId) {
if (conversionId.startsWith(IMPORT_STYLESHEETS_SCHEMA_PREFIX)) {
String[] pathToken = conversionId.split(":");
if (pathToken.length == 3) {
String schema = pathToken[1];
if (!schemaManager.existsSchema(schema)) {
throw new BadParameterEx(String.format(
"Conversion not found. Schema '%s' is not registered in this catalog.", schema));
}
FilePathChecker.verify(pathToken[2]);
return this.getSchemaPluginsDir()
.resolve(pathToken[1])
.resolve(pathToken[2] + ".xsl");
}
} else {
FilePathChecker.verify(conversionId);
return this.getWebappDir().resolve(Geonet.Path.IMPORT_STYLESHEETS).
resolve(conversionId + ".xsl");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
import jeeves.server.ServiceConfig;

import org.fao.geonet.AbstractCoreIntegrationTest;
import org.fao.geonet.constants.Geonet;
import org.fao.geonet.exceptions.BadParameterEx;
import org.jdom.Element;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
Expand All @@ -34,7 +36,7 @@
import java.nio.file.Path;
import java.util.ArrayList;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.*;

/**
* Abstract class for GeonetworkDataDirectory tests where the data directory layout is a default
Expand Down Expand Up @@ -76,6 +78,29 @@ public void testInit() throws Exception {
assertSystemDirSubFolders(expectedDataDir);
}

@Test
public void testGetXsltConversion() {
Path xsltConversion = dataDirectory.getXsltConversion("conversion");
assertEquals(dataDirectory.getWebappDir().resolve(Geonet.Path.IMPORT_STYLESHEETS).resolve("conversion.xsl"), xsltConversion);
try {
dataDirectory.getXsltConversion("../conversion");
} catch (BadParameterEx e) {
assertEquals("../conversion is not a valid value for: Invalid character found in path.", e.getMessage());
}

xsltConversion = dataDirectory.getXsltConversion("schema:iso19115-3.2018:convert/fromISO19115-3.2014");
assertNotNull(xsltConversion);
try {
dataDirectory.getXsltConversion("schema:notExistingSchema:convert/fromISO19115-3.2014");
} catch (BadParameterEx e) {
assertEquals("Conversion not found. Schema 'notExistingSchema' is not registered in this catalog.", e.getMessage());
}
try {
dataDirectory.getXsltConversion("schema:iso19115-3.2018:../../custom/path");
} catch (BadParameterEx e) {
assertEquals("../../custom/path is not a valid value for: Invalid character found in path.", e.getMessage());
}
}
private void assertSystemDirSubFolders(Path expectedDataDir) {
final Path expectedConfigDir = expectedDataDir.resolve("config");
assertEquals(expectedConfigDir, dataDirectory.getConfigDir());
Expand Down

0 comments on commit c9164d0

Please sign in to comment.