blob: 525e5a0fbfce98263a5b7f4be0a376f871589ddf [file] [log] [blame]
erikchen22de64a32014-10-10 18:27:431// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/file_select_helper.h"
6
7#include <Cocoa/Cocoa.h>
8#include <sys/stat.h>
9
10#include "base/files/file.h"
11#include "base/files/file_path.h"
12#include "base/files/file_util.h"
13#include "base/mac/foundation_util.h"
14#include "content/public/browser/browser_thread.h"
15#include "third_party/zlib/google/zip.h"
16#include "ui/shell_dialogs/selected_file_info.h"
17
18namespace {
19
20// Given the |path| of a package, returns the destination that the package
21// should be zipped to. Returns an empty path on any errors.
22base::FilePath ZipDestination(const base::FilePath& path) {
23 NSMutableString* dest =
24 [NSMutableString stringWithString:NSTemporaryDirectory()];
25
26 // Couldn't get the temporary directory.
27 if (!dest)
28 return base::FilePath();
29
30 [dest appendFormat:@"%@/zip_cache/%@",
31 [[NSBundle mainBundle] bundleIdentifier],
32 [[NSProcessInfo processInfo] globallyUniqueString]];
33
34 return base::mac::NSStringToFilePath(dest);
35}
36
37// Returns the path of the package and its components relative to the package's
38// parent directory.
39std::vector<base::FilePath> RelativePathsForPackage(
40 const base::FilePath& package) {
41 // Get the base directory.
42 base::FilePath base_dir = package.DirName();
43
44 // Add the package as the first relative path.
45 std::vector<base::FilePath> relative_paths;
46 relative_paths.push_back(package.BaseName());
47
48 // Add the components of the package as relative paths.
49 base::FileEnumerator file_enumerator(
50 package,
51 true /* recursive */,
52 base::FileEnumerator::FILES | base::FileEnumerator::DIRECTORIES);
53 for (base::FilePath path = file_enumerator.Next(); !path.empty();
54 path = file_enumerator.Next()) {
55 base::FilePath relative_path;
56 bool success = base_dir.AppendRelativePath(path, &relative_path);
57 if (success)
58 relative_paths.push_back(relative_path);
59 }
60
61 return relative_paths;
62}
63
64} // namespace
65
66base::FilePath FileSelectHelper::ZipPackage(const base::FilePath& path) {
67 base::FilePath dest(ZipDestination(path));
68 if (dest.empty())
69 return dest;
70
71 if (!base::CreateDirectory(dest.DirName()))
72 return base::FilePath();
73
74 base::File file(dest, base::File::FLAG_CREATE | base::File::FLAG_WRITE);
75 if (!file.IsValid())
76 return base::FilePath();
77
78 std::vector<base::FilePath> files_to_zip(RelativePathsForPackage(path));
79 base::FilePath base_dir = path.DirName();
80 bool success = zip::ZipFiles(base_dir, files_to_zip, file.GetPlatformFile());
81
82 int result = -1;
83 if (success)
84 result = fchmod(file.GetPlatformFile(), S_IRUSR);
85
86 return result >= 0 ? dest : base::FilePath();
87}
88
89void FileSelectHelper::ProcessSelectedFilesMac(
90 const std::vector<ui::SelectedFileInfo>& files) {
91 DCHECK_CURRENTLY_ON(content::BrowserThread::FILE_USER_BLOCKING);
92
93 // Make a mutable copy of the input files.
94 std::vector<ui::SelectedFileInfo> files_out(files);
95 std::vector<base::FilePath> temporary_files;
96
97 for (auto& file_info : files_out) {
98 NSString* filename = base::mac::FilePathToNSString(file_info.local_path);
99 BOOL isPackage =
100 [[NSWorkspace sharedWorkspace] isFilePackageAtPath:filename];
101 if (isPackage && base::DirectoryExists(file_info.local_path)) {
102 base::FilePath result = ZipPackage(file_info.local_path);
103
104 if (!result.empty()) {
105 temporary_files.push_back(result);
106 file_info.local_path = result;
107 file_info.file_path = result;
108 file_info.display_name.append(".zip");
109 }
110 }
111 }
112
113 content::BrowserThread::PostTask(
114 content::BrowserThread::UI,
115 FROM_HERE,
116 base::Bind(&FileSelectHelper::ProcessSelectedFilesMacOnUIThread,
117 base::Unretained(this),
118 files_out,
119 temporary_files));
120}
121
122void FileSelectHelper::ProcessSelectedFilesMacOnUIThread(
123 const std::vector<ui::SelectedFileInfo>& files,
124 const std::vector<base::FilePath>& temporary_files) {
125 DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
126
127 if (!temporary_files.empty()) {
128 temporary_files_.insert(
129 temporary_files_.end(), temporary_files.begin(), temporary_files.end());
130
131 // Typically, |temporary_files| are deleted after |web_contents_| is
132 // destroyed. If |web_contents_| is already NULL, then the temporary files
133 // need to be deleted now.
134 if (!web_contents_) {
135 DeleteTemporaryFiles();
136 RunFileChooserEnd();
137 return;
138 }
139 }
140
naskof6a80ac2016-06-29 02:37:05141 NotifyRenderFrameHostAndEnd(files);
erikchen22de64a32014-10-10 18:27:43142}