mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	Fix: correct download filename in 2.15.0 (#9599)
--------- Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com>
This commit is contained in:
		| @@ -1,5 +1,5 @@ | ||||
| import { AsyncPipe, NgTemplateOutlet } from '@angular/common' | ||||
| import { HttpClient } from '@angular/common/http' | ||||
| import { HttpClient, HttpResponse } from '@angular/common/http' | ||||
| import { Component, OnDestroy, OnInit, ViewChild } from '@angular/core' | ||||
| import { | ||||
|   FormArray, | ||||
| @@ -995,19 +995,23 @@ export class DocumentDetailComponent | ||||
|       this.documentId, | ||||
|       original | ||||
|     ) | ||||
|     this.http.get(downloadUrl, { responseType: 'blob' }).subscribe({ | ||||
|       next: (blob) => { | ||||
|     this.http | ||||
|       .get(downloadUrl, { observe: 'response', responseType: 'blob' }) | ||||
|       .subscribe({ | ||||
|         next: (response: HttpResponse<Blob>) => { | ||||
|           const filename = response.headers | ||||
|             .get('Content-Disposition') | ||||
|             ?.split(';') | ||||
|             ?.find((part) => part.trim().startsWith('filename=')) | ||||
|             ?.split('=')[1] | ||||
|             ?.replace(/['"]/g, '') | ||||
|           const blob = new Blob([response.body], { | ||||
|             type: response.body.type, | ||||
|           }) | ||||
|           this.downloading = false | ||||
|         const blobParts = [blob] | ||||
|         const file = new File( | ||||
|           blobParts, | ||||
|           original | ||||
|             ? this.document.original_file_name | ||||
|             : this.document.archived_file_name, | ||||
|           { | ||||
|             type: original ? this.document.mime_type : 'application/pdf', | ||||
|           } | ||||
|         ) | ||||
|           const file = new File([blob], filename, { | ||||
|             type: response.body.type, | ||||
|           }) | ||||
|           if ( | ||||
|             !this.deviceDetectorService.isDesktop() && | ||||
|             navigator.canShare && | ||||
| @@ -1020,7 +1024,7 @@ export class DocumentDetailComponent | ||||
|             const url = URL.createObjectURL(blob) | ||||
|             const a = document.createElement('a') | ||||
|             a.href = url | ||||
|           a.download = this.document.title | ||||
|             a.download = filename | ||||
|             a.click() | ||||
|             URL.revokeObjectURL(url) | ||||
|           } | ||||
|   | ||||
| @@ -2376,10 +2376,14 @@ def serve_file(*, doc: Document, use_archive: bool, disposition: str): | ||||
|     # RFC 5987 addresses this issue | ||||
|     # see https://datatracker.ietf.org/doc/html/rfc5987#section-4.2 | ||||
|     # Chromium cannot handle commas in the filename | ||||
|     filename_normalized = normalize("NFKD", filename.replace(",", "_")).encode( | ||||
|     filename_normalized = ( | ||||
|         normalize("NFKD", filename.replace(",", "_")) | ||||
|         .encode( | ||||
|             "ascii", | ||||
|             "ignore", | ||||
|         ) | ||||
|         .decode("ascii") | ||||
|     ) | ||||
|     filename_encoded = quote(filename) | ||||
|     content_disposition = ( | ||||
|         f"{disposition}; " | ||||
|   | ||||
| @@ -565,6 +565,10 @@ if DEBUG: | ||||
|     # Allow access from the angular development server during debugging | ||||
|     CORS_ALLOWED_ORIGINS.append("http://localhost:4200") | ||||
|  | ||||
| CORS_EXPOSE_HEADERS = [ | ||||
|     "Content-Disposition", | ||||
| ] | ||||
|  | ||||
| ALLOWED_HOSTS = __get_list("PAPERLESS_ALLOWED_HOSTS", ["*"]) | ||||
| if ALLOWED_HOSTS != ["*"]: | ||||
|     # always allow localhost. Necessary e.g. for healthcheck in docker. | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 shamoon
					shamoon