use of ddf.catalog.resource.impl.ResourceImpl in project ddf by codice.
the class ResourceImplTest method testResourceImplNullMimeType.
@Test
public void testResourceImplNullMimeType() {
InputStream is = null;
try {
is = new FileInputStream(content);
} catch (IOException e) {
LOGGER.error("IO Failure", e);
new Failure(null, e);
}
ResourceImpl ri = new ResourceImpl(is, (MimeType) null, TEST_NAME);
assertEquals(null, ri.getMimeType());
ri = new ResourceImpl(is, (String) null, TEST_NAME);
assertEquals(null, ri.getMimeType());
}
use of ddf.catalog.resource.impl.ResourceImpl in project ddf by codice.
the class ResourceImplTest method testResourceImplNullInputStream.
@Test
public void testResourceImplNullInputStream() {
InputStream is = null;
ResourceImpl ri = new ResourceImpl(is, mimeType, TEST_NAME);
ri.setSize(content.length());
assertEquals(is, ri.getInputStream());
assertEquals(mimeType.toString(), ri.getMimeType().toString());
assertEquals(content.length(), ri.getSize());
}
use of ddf.catalog.resource.impl.ResourceImpl in project ddf by codice.
the class OgcUrlResourceReader method retrieveResource.
/**
* Retrieves a {@link ddf.catalog.resource.Resource} based on a {@link URI} and provided
* arguments. A connection is made to the {@link URI} to obtain the
* {@link ddf.catalog.resource.Resource}'s {@link InputStream} and build a
* {@link ResourceResponse} from that. The {@link ddf.catalog.resource.Resource}'s name gets set
* to the {@link URI} passed in. Calls {@link URLResourceReader}, if the mime-type is
* "text/html" it will inject a simple script to redirect to the resourceURI instead of
* attempting to download it.
*
* @param resourceURI
* A {@link URI} that defines what {@link Resource} to retrieve and how to do it.
* @param properties
* Any additional arguments that should be passed to the
* {@link ddf.catalog.resource.ResourceReader}.
* @return A {@link ResourceResponse} containing the retrieved {@link Resource}.
* @throws ResourceNotSupportedException
*/
public ResourceResponse retrieveResource(URI resourceURI, Map<String, Serializable> properties) throws IOException, ResourceNotFoundException, ResourceNotSupportedException {
LOGGER.debug("Calling URLResourceReader.retrieveResource()");
ResourceResponse response = urlResourceReader.retrieveResource(resourceURI, properties);
Resource resource = response.getResource();
MimeType mimeType = resource.getMimeType();
LOGGER.debug("mimeType: {}", mimeType);
if (mimeType != null) {
String mimeTypeStr = mimeType.toString();
String detectedMimeType = "";
if (UNKNOWN_MIME_TYPES.contains(mimeTypeStr)) {
detectedMimeType = tika.detect(resourceURI.toURL());
}
if (StringUtils.contains(detectedMimeType, MediaType.TEXT_HTML) || StringUtils.contains(mimeTypeStr, MediaType.TEXT_HTML)) {
LOGGER.debug("Detected \"text\\html\". Building redirect script");
StringBuilder strBuilder = new StringBuilder();
strBuilder.append("<html><script type=\"text/javascript\">window.location.replace(\"");
strBuilder.append(resourceURI);
strBuilder.append("\");</script></html>");
return new ResourceResponseImpl(new ResourceImpl(new ByteArrayInputStream(strBuilder.toString().getBytes(StandardCharsets.UTF_8)), detectedMimeType, resource.getName()));
}
}
return response;
}
Aggregations