Skip to content

Commit

Permalink
NIFI-13236 Corrected Content-Disposition Filename for Downloads (#8840)
Browse files Browse the repository at this point in the history
- Added encoding method for handling filenames with non-ASCII characters

This closes #8840
  • Loading branch information
exceptionfactory authored May 15, 2024
1 parent 0ef1214 commit 2a08586
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
import jakarta.ws.rs.core.MultivaluedHashMap;
import jakarta.ws.rs.core.MultivaluedMap;
import jakarta.ws.rs.core.Response;
import org.springframework.http.ContentDisposition;

import java.net.URI;
import java.net.URISyntaxException;
import java.util.Collections;
Expand Down Expand Up @@ -115,7 +117,8 @@ public DownloadableContent getContent(final ContentRequestContext request) {

// get the file name
final String contentDisposition = getHeader(responseHeaders, "content-disposition");
final String filename = StringUtils.substringBetween(contentDisposition, "filename=\"", "\"");
final ContentDisposition contentDispositionParsed = ContentDisposition.parse(contentDisposition);
final String filename = contentDispositionParsed.getFilename();

// get the content type
final String contentType = getHeader(responseHeaders, "content-type");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
import org.apache.nifi.web.api.entity.FlowFileEntity;
import org.apache.nifi.web.api.entity.ListingRequestEntity;
import org.apache.nifi.web.api.request.ClientIdParameter;
import org.apache.nifi.web.util.ResponseBuilderUtils;

/**
* RESTful endpoint for managing a flowfile queue.
Expand Down Expand Up @@ -276,7 +277,8 @@ public void write(final OutputStream output) throws IOException, WebApplicationE
contentType = MediaType.APPLICATION_OCTET_STREAM;
}

return generateOkResponse(response).type(contentType).header("Content-Disposition", String.format("attachment; filename=\"%s\"", content.getFilename())).build();
final Response.ResponseBuilder responseBuilder = generateOkResponse(response).type(contentType);
return ResponseBuilderUtils.setContentDisposition(responseBuilder, content.getFilename()).build();
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
import org.apache.nifi.web.api.entity.ReplayLastEventSnapshotDTO;
import org.apache.nifi.web.api.entity.SubmitReplayRequestEntity;
import org.apache.nifi.web.api.request.LongParameter;
import org.apache.nifi.web.util.ResponseBuilderUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand Down Expand Up @@ -157,7 +158,8 @@ public void write(OutputStream output) throws IOException, WebApplicationExcepti
contentType = MediaType.APPLICATION_OCTET_STREAM;
}

return generateOkResponse(response).type(contentType).header("Content-Disposition", String.format("attachment; filename=\"%s\"", content.getFilename())).build();
final Response.ResponseBuilder responseBuilder = generateOkResponse(response).type(contentType);
return ResponseBuilderUtils.setContentDisposition(responseBuilder, content.getFilename()).build();
}

/**
Expand Down Expand Up @@ -240,7 +242,8 @@ public void write(OutputStream output) throws IOException, WebApplicationExcepti
contentType = MediaType.APPLICATION_OCTET_STREAM;
}

return generateOkResponse(response).type(contentType).header("Content-Disposition", String.format("attachment; filename=\"%s\"", content.getFilename())).build();
final Response.ResponseBuilder responseBuilder = generateOkResponse(response).type(contentType);
return ResponseBuilderUtils.setContentDisposition(responseBuilder, content.getFilename()).build();
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.nifi.web.util;

import jakarta.ws.rs.core.Response;
import org.springframework.http.ContentDisposition;
import org.springframework.http.HttpHeaders;

import java.nio.charset.StandardCharsets;

/**
* HTTP Response Builder Utilities
*/
public class ResponseBuilderUtils {
/**
* Set Content-Disposition Header with filename encoded according to RFC requirements
*
* @param responseBuilder HTTP Response Builder
* @param filename Filename to be encoded for Content-Disposition header
* @return HTTP Response Builder
*/
public static Response.ResponseBuilder setContentDisposition(final Response.ResponseBuilder responseBuilder, final String filename) {
final String disposition = ContentDisposition.attachment()
.filename(filename, StandardCharsets.UTF_8)
.build()
.toString();

return responseBuilder.header(HttpHeaders.CONTENT_DISPOSITION, disposition);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.nifi.web.util;


import jakarta.ws.rs.core.HttpHeaders;
import jakarta.ws.rs.core.Response;

import org.junit.jupiter.api.Test;

import static org.junit.jupiter.api.Assertions.assertEquals;

class ResponseBuilderUtilsTest {

private static final String FILENAME_ASCII = "image.jpg";

private static final String DISPOSITION_ASCII = "attachment; filename=\"=?UTF-8?Q?%s?=\"; filename*=UTF-8''%s".formatted(FILENAME_ASCII, FILENAME_ASCII);

private static final String FILENAME_SPACED = "image label.jpg";

private static final String DISPOSITION_ENCODED = "attachment; filename=\"=?UTF-8?Q?image_label.jpg?=\"; filename*=UTF-8''image%20label.jpg";

@Test
void testSetContentDisposition() {
final Response.ResponseBuilder responseBuilder = ResponseBuilderUtils.setContentDisposition(Response.ok(), FILENAME_ASCII);

try (Response response = responseBuilder.build()) {
final String contentDisposition = response.getHeaderString(HttpHeaders.CONTENT_DISPOSITION);

assertEquals(DISPOSITION_ASCII, contentDisposition);
}
}

@Test
void testSetContentDispositionEncoded() {
final Response.ResponseBuilder responseBuilder = ResponseBuilderUtils.setContentDisposition(Response.ok(), FILENAME_SPACED);

try (Response response = responseBuilder.build()) {
final String contentDisposition = response.getHeaderString(HttpHeaders.CONTENT_DISPOSITION);

assertEquals(DISPOSITION_ENCODED, contentDisposition);
}
}
}

0 comments on commit 2a08586

Please sign in to comment.