From: Daniel Tschlatscher <d.tschlatscher@proxmox.com>
To: pve-devel@lists.proxmox.com, pbs-devel@lists.proxmox.com,
pmg-devel@lists.proxmox.com
Subject: [pve-devel] [PATCH widget-toolkit v2 6/7] Source file download call in central function
Date: Wed, 7 Sep 2022 10:56:32 +0200 [thread overview]
Message-ID: <20220907085633.89113-7-d.tschlatscher@proxmox.com> (raw)
In-Reply-To: <20220907085633.89113-1-d.tschlatscher@proxmox.com>
Adds a function for downloading a file from a remote URL in the Utils
class and uses it to revise one similar usage in FileBrowser.js
Signed-off-by: Daniel Tschlatscher <d.tschlatscher@proxmox.com>
---
src/Utils.js | 13 +++++++++++++
src/window/FileBrowser.js | 11 +++++------
2 files changed, 18 insertions(+), 6 deletions(-)
diff --git a/src/Utils.js b/src/Utils.js
index 6a03057..bb68937 100644
--- a/src/Utils.js
+++ b/src/Utils.js
@@ -1272,6 +1272,19 @@ utilities: {
.map(val => val.charCodeAt(0)),
);
},
+
+ // Setting filename here when downloading from a remote url sometimes fails in chromium browsers
+ // because of a bug when using attribute download in conjunction with a self signed certificate.
+ // For more info see https://bugs.chromium.org/p/chromium/issues/detail?id=993362
+ downloadAsFile: function(source, fileName) {
+ let hiddenElement = document.createElement('a');
+ hiddenElement.href = source;
+ hiddenElement.target = '_blank';
+ if (fileName) {
+ hiddenElement.download = fileName;
+ }
+ hiddenElement.click();
+ },
},
singleton: true,
diff --git a/src/window/FileBrowser.js b/src/window/FileBrowser.js
index a519d6b..4e4c639 100644
--- a/src/window/FileBrowser.js
+++ b/src/window/FileBrowser.js
@@ -101,18 +101,17 @@ Ext.define("Proxmox.window.FileBrowser", {
let params = { ...view.extraParams };
params.filepath = data.filepath;
- let atag = document.createElement('a');
- atag.download = view.downloadPrefix + data.text;
+ let filename = view.downloadPrefix + data.text;
if (data.type === 'd') {
if (tar) {
params.tar = 1;
- atag.download += ".tar.zst";
+ filename += ".tar.zst";
} else {
- atag.download += ".zip";
+ filename += ".zip";
}
}
- atag.href = me.buildUrl(view.downloadURL, params);
- atag.click();
+
+ Proxmox.Utils.downloadAsFile(me.buildUrl(view.downloadURL, params), filename);
},
fileChanged: function() {
--
2.30.2
WARNING: multiple messages have this Message-ID
From: Daniel Tschlatscher <d.tschlatscher@proxmox.com>
To: pve-devel@lists.proxmox.com, pbs-devel@lists.proxmox.com,
pmg-devel@lists.proxmox.com
Subject: [pbs-devel] [PATCH widget-toolkit v2 6/7] Source file download call in central function
Date: Wed, 7 Sep 2022 10:56:32 +0200 [thread overview]
Message-ID: <20220907085633.89113-7-d.tschlatscher@proxmox.com> (raw)
In-Reply-To: <20220907085633.89113-1-d.tschlatscher@proxmox.com>
Adds a function for downloading a file from a remote URL in the Utils
class and uses it to revise one similar usage in FileBrowser.js
Signed-off-by: Daniel Tschlatscher <d.tschlatscher@proxmox.com>
---
src/Utils.js | 13 +++++++++++++
src/window/FileBrowser.js | 11 +++++------
2 files changed, 18 insertions(+), 6 deletions(-)
diff --git a/src/Utils.js b/src/Utils.js
index 6a03057..bb68937 100644
--- a/src/Utils.js
+++ b/src/Utils.js
@@ -1272,6 +1272,19 @@ utilities: {
.map(val => val.charCodeAt(0)),
);
},
+
+ // Setting filename here when downloading from a remote url sometimes fails in chromium browsers
+ // because of a bug when using attribute download in conjunction with a self signed certificate.
+ // For more info see https://bugs.chromium.org/p/chromium/issues/detail?id=993362
+ downloadAsFile: function(source, fileName) {
+ let hiddenElement = document.createElement('a');
+ hiddenElement.href = source;
+ hiddenElement.target = '_blank';
+ if (fileName) {
+ hiddenElement.download = fileName;
+ }
+ hiddenElement.click();
+ },
},
singleton: true,
diff --git a/src/window/FileBrowser.js b/src/window/FileBrowser.js
index a519d6b..4e4c639 100644
--- a/src/window/FileBrowser.js
+++ b/src/window/FileBrowser.js
@@ -101,18 +101,17 @@ Ext.define("Proxmox.window.FileBrowser", {
let params = { ...view.extraParams };
params.filepath = data.filepath;
- let atag = document.createElement('a');
- atag.download = view.downloadPrefix + data.text;
+ let filename = view.downloadPrefix + data.text;
if (data.type === 'd') {
if (tar) {
params.tar = 1;
- atag.download += ".tar.zst";
+ filename += ".tar.zst";
} else {
- atag.download += ".zip";
+ filename += ".zip";
}
}
- atag.href = me.buildUrl(view.downloadURL, params);
- atag.click();
+
+ Proxmox.Utils.downloadAsFile(me.buildUrl(view.downloadURL, params), filename);
},
fileChanged: function() {
--
2.30.2
WARNING: multiple messages have this Message-ID
From: Daniel Tschlatscher <d.tschlatscher@proxmox.com>
To: pve-devel@lists.proxmox.com, pbs-devel@lists.proxmox.com,
pmg-devel@lists.proxmox.com
Subject: [pmg-devel] [PATCH widget-toolkit v2 6/7] Source file download call in central function
Date: Wed, 7 Sep 2022 10:56:32 +0200 [thread overview]
Message-ID: <20220907085633.89113-7-d.tschlatscher@proxmox.com> (raw)
In-Reply-To: <20220907085633.89113-1-d.tschlatscher@proxmox.com>
Adds a function for downloading a file from a remote URL in the Utils
class and uses it to revise one similar usage in FileBrowser.js
Signed-off-by: Daniel Tschlatscher <d.tschlatscher@proxmox.com>
---
src/Utils.js | 13 +++++++++++++
src/window/FileBrowser.js | 11 +++++------
2 files changed, 18 insertions(+), 6 deletions(-)
diff --git a/src/Utils.js b/src/Utils.js
index 6a03057..bb68937 100644
--- a/src/Utils.js
+++ b/src/Utils.js
@@ -1272,6 +1272,19 @@ utilities: {
.map(val => val.charCodeAt(0)),
);
},
+
+ // Setting filename here when downloading from a remote url sometimes fails in chromium browsers
+ // because of a bug when using attribute download in conjunction with a self signed certificate.
+ // For more info see https://bugs.chromium.org/p/chromium/issues/detail?id=993362
+ downloadAsFile: function(source, fileName) {
+ let hiddenElement = document.createElement('a');
+ hiddenElement.href = source;
+ hiddenElement.target = '_blank';
+ if (fileName) {
+ hiddenElement.download = fileName;
+ }
+ hiddenElement.click();
+ },
},
singleton: true,
diff --git a/src/window/FileBrowser.js b/src/window/FileBrowser.js
index a519d6b..4e4c639 100644
--- a/src/window/FileBrowser.js
+++ b/src/window/FileBrowser.js
@@ -101,18 +101,17 @@ Ext.define("Proxmox.window.FileBrowser", {
let params = { ...view.extraParams };
params.filepath = data.filepath;
- let atag = document.createElement('a');
- atag.download = view.downloadPrefix + data.text;
+ let filename = view.downloadPrefix + data.text;
if (data.type === 'd') {
if (tar) {
params.tar = 1;
- atag.download += ".tar.zst";
+ filename += ".tar.zst";
} else {
- atag.download += ".zip";
+ filename += ".zip";
}
}
- atag.href = me.buildUrl(view.downloadURL, params);
- atag.click();
+
+ Proxmox.Utils.downloadAsFile(me.buildUrl(view.downloadURL, params), filename);
},
fileChanged: function() {
--
2.30.2
next prev parent reply other threads:[~2022-09-07 8:58 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-07 8:56 [pve-devel] [PATCH http/common/manager/wt/backup/pmg v2] fix: #3971 Tasklog download button Daniel Tschlatscher
2022-09-07 8:56 ` [pmg-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pbs-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pve-devel] [PATCH proxmox-backup v2 1/7] make tasklog downloadable in the backup server backend Daniel Tschlatscher
2022-09-07 8:56 ` [pmg-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pbs-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pve-devel] [PATCH http-server v2 2/7] acknowledge content-disposition header Daniel Tschlatscher
2022-09-07 8:56 ` [pmg-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pbs-devel] " Daniel Tschlatscher
2022-09-29 12:36 ` [pve-devel] applied: " Thomas Lamprecht
2022-09-29 12:36 ` [pmg-devel] applied: [pve-devel] " Thomas Lamprecht
2022-09-29 12:36 ` [pbs-devel] " Thomas Lamprecht
2022-09-07 8:56 ` [pve-devel] [PATCH common v2 3/7] stream file method for PMG and PVE Daniel Tschlatscher
2022-09-07 8:56 ` [pmg-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pbs-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pve-devel] [PATCH manager v2 4/7] revised task log API call for PVE Daniel Tschlatscher
2022-09-07 8:56 ` [pmg-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pbs-devel] " Daniel Tschlatscher
2022-10-05 12:30 ` [pve-devel] " Thomas Lamprecht
2022-10-05 12:30 ` [pmg-devel] " Thomas Lamprecht
2022-10-05 12:30 ` [pbs-devel] " Thomas Lamprecht
2022-10-10 11:40 ` Daniel Tschlatscher
2022-10-10 11:40 ` [pmg-devel] " Daniel Tschlatscher
2022-10-10 11:40 ` [pbs-devel] " Daniel Tschlatscher
2022-10-10 13:10 ` Thomas Lamprecht
2022-10-10 13:10 ` [pmg-devel] " Thomas Lamprecht
2022-10-10 13:10 ` [pbs-devel] " Thomas Lamprecht
2022-09-07 8:56 ` [pve-devel] [PATCH pmg-api v2 5/7] revised task log download function in the PMG backend Daniel Tschlatscher
2022-09-07 8:56 ` [pmg-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pbs-devel] " Daniel Tschlatscher
2022-09-08 9:36 ` [pve-devel] [pmg-devel] " Stefan Sterz
2022-09-08 9:36 ` Stefan Sterz
2022-09-08 9:36 ` [pbs-devel] " Stefan Sterz
2022-09-08 11:19 ` [pve-devel] " Daniel Tschlatscher
2022-09-08 11:19 ` Daniel Tschlatscher
2022-09-08 11:19 ` [pbs-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` Daniel Tschlatscher [this message]
2022-09-07 8:56 ` [pmg-devel] [PATCH widget-toolkit v2 6/7] Source file download call in central function Daniel Tschlatscher
2022-09-07 8:56 ` [pbs-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pve-devel] [PATCH widget-toolkit v2 7/7] add task log download button in TaskViewer Daniel Tschlatscher
2022-09-07 8:56 ` [pmg-devel] " Daniel Tschlatscher
2022-09-07 8:56 ` [pbs-devel] " Daniel Tschlatscher
2022-09-08 9:40 ` [pve-devel] [pmg-devel] [PATCH http/common/manager/wt/backup/pmg v2] fix: #3971 Tasklog download button Stefan Sterz
2022-09-08 9:40 ` Stefan Sterz
2022-09-08 9:40 ` [pbs-devel] " Stefan Sterz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220907085633.89113-7-d.tschlatscher@proxmox.com \
--to=d.tschlatscher@proxmox.com \
--cc=pbs-devel@lists.proxmox.com \
--cc=pmg-devel@lists.proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.