Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Content-Disposition header to handle UTF8 file names #20

Merged
merged 3 commits into from
Jan 11, 2024

Conversation

lucas-amiaud
Copy link
Collaborator

@lucas-amiaud
Copy link
Collaborator Author

L'UTF 8 fonctionne bien partout, sauf dans le header content disposition
J'ai trouvé une solution en suivant cette norme : https://www.rfc-editor.org/rfc/rfc6266
Le soucis c'est que je déplace des fichiers / les renomme, donc ca fait un peu du breaking changes -> est-ce qu'il faut faire une nouvelle version ?

@amanteaux
Copy link
Member

Je ferai bien 2 PR séparées :

  • Une spécifiquement pour le problème d'UTF8
  • Une sur une branche V4 pour le renommage

@amanteaux amanteaux merged commit 197b219 into master Jan 11, 2024
1 check passed
@@ -97,8 +100,15 @@ public Response fetch(
if (attachment) {
String attachmentFilename = Optional.ofNullable(fileMetadata.getFileOriginalName())
.orElse(fileMetadata.getUniqueName());
String utf8FileName = URLEncoder.encode(attachmentFilename, StandardCharsets.UTF_8)
.replace("+", "%20");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

J'avais pas vu cette ligne, comme on utilise déjà Guava, tu pourrais remplacer ça par UrlEscapers.urlFragmentEscaper().escape(attachmentFilename) ?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

je vais essayer :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants