Skip to content

Commit 4b5f43d

Browse files
clavinckerr
authored andcommitted
1 parent 3325fbb commit 4b5f43d

5 files changed

+29
-10
lines changed

shell/browser/api/electron_api_web_contents.cc

+20-5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <utility>
1414
#include <vector>
1515

16+
#include "base/base64.h"
1617
#include "base/containers/contains.h"
1718
#include "base/containers/fixed_flat_map.h"
1819
#include "base/containers/id_map.h"
@@ -600,12 +601,25 @@ base::Value::Dict CreateFileSystemValue(const FileSystem& file_system) {
600601
return value;
601602
}
602603

603-
void WriteToFile(const base::FilePath& path, const std::string& content) {
604+
void WriteToFile(const base::FilePath& path,
605+
const std::string& content,
606+
bool is_base64) {
604607
base::ScopedBlockingCall scoped_blocking_call(FROM_HERE,
605608
base::BlockingType::WILL_BLOCK);
606609
DCHECK(!path.empty());
607610

608-
base::WriteFile(path, content.data(), content.size());
611+
if (!is_base64) {
612+
base::WriteFile(path, content);
613+
return;
614+
}
615+
616+
const std::optional<std::vector<uint8_t>> decoded_content =
617+
base::Base64Decode(content);
618+
if (decoded_content) {
619+
base::WriteFile(path, decoded_content.value());
620+
} else {
621+
LOG(ERROR) << "Invalid base64. Not writing " << path;
622+
}
609623
}
610624

611625
void AppendToFile(const base::FilePath& path, const std::string& content) {
@@ -3919,7 +3933,8 @@ void WebContents::ExitPictureInPicture() {
39193933

39203934
void WebContents::DevToolsSaveToFile(const std::string& url,
39213935
const std::string& content,
3922-
bool save_as) {
3936+
bool save_as,
3937+
bool is_base64) {
39233938
base::FilePath path;
39243939
auto it = saved_files_.find(url);
39253940
if (it != saved_files_.end() && !save_as) {
@@ -3942,8 +3957,8 @@ void WebContents::DevToolsSaveToFile(const std::string& url,
39423957
inspectable_web_contents_->CallClientFunction(
39433958
"DevToolsAPI", "savedURL", base::Value(url),
39443959
base::Value(path.AsUTF8Unsafe()));
3945-
file_task_runner_->PostTask(FROM_HERE,
3946-
base::BindOnce(&WriteToFile, path, content));
3960+
file_task_runner_->PostTask(
3961+
FROM_HERE, base::BindOnce(&WriteToFile, path, content, is_base64));
39473962
}
39483963

39493964
void WebContents::DevToolsAppendToFile(const std::string& url,

shell/browser/api/electron_api_web_contents.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -738,7 +738,8 @@ class WebContents : public ExclusiveAccessContext,
738738
// InspectableWebContentsDelegate:
739739
void DevToolsSaveToFile(const std::string& url,
740740
const std::string& content,
741-
bool save_as) override;
741+
bool save_as,
742+
bool is_base64) override;
742743
void DevToolsAppendToFile(const std::string& url,
743744
const std::string& content) override;
744745
void DevToolsRequestFileSystems() override;

shell/browser/ui/inspectable_web_contents.cc

+3-2
Original file line numberDiff line numberDiff line change
@@ -732,9 +732,10 @@ void InspectableWebContents::ShowItemInFolder(
732732

733733
void InspectableWebContents::SaveToFile(const std::string& url,
734734
const std::string& content,
735-
bool save_as) {
735+
bool save_as,
736+
bool is_base64) {
736737
if (delegate_)
737-
delegate_->DevToolsSaveToFile(url, content, save_as);
738+
delegate_->DevToolsSaveToFile(url, content, save_as, is_base64);
738739
}
739740

740741
void InspectableWebContents::AppendToFile(const std::string& url,

shell/browser/ui/inspectable_web_contents.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,8 @@ class InspectableWebContents
103103
void ShowItemInFolder(const std::string& file_system_path) override;
104104
void SaveToFile(const std::string& url,
105105
const std::string& content,
106-
bool save_as) override;
106+
bool save_as,
107+
bool is_base64) override;
107108
void AppendToFile(const std::string& url,
108109
const std::string& content) override;
109110
void RequestFileSystems() override;

shell/browser/ui/inspectable_web_contents_delegate.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ class InspectableWebContentsDelegate {
2020
virtual void DevToolsReloadPage() {}
2121
virtual void DevToolsSaveToFile(const std::string& url,
2222
const std::string& content,
23-
bool save_as) {}
23+
bool save_as,
24+
bool is_base64) {}
2425
virtual void DevToolsAppendToFile(const std::string& url,
2526
const std::string& content) {}
2627
virtual void DevToolsRequestFileSystems() {}

0 commit comments

Comments
 (0)