1 // Copyright (c) 2012 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.
5 #include "chrome/browser/file_select_helper.h"
10 #include "base/bind.h"
11 #include "base/file_util.h"
12 #include "base/files/file_enumerator.h"
13 #include "base/strings/string_split.h"
14 #include "base/strings/string_util.h"
15 #include "base/strings/utf_string_conversions.h"
16 #include "chrome/browser/platform_util.h"
17 #include "chrome/browser/profiles/profile.h"
18 #include "chrome/browser/ui/browser.h"
19 #include "chrome/browser/ui/browser_list.h"
20 #include "chrome/browser/ui/chrome_select_file_policy.h"
21 #include "chrome/grit/generated_resources.h"
22 #include "content/public/browser/browser_thread.h"
23 #include "content/public/browser/notification_details.h"
24 #include "content/public/browser/notification_source.h"
25 #include "content/public/browser/notification_types.h"
26 #include "content/public/browser/render_view_host.h"
27 #include "content/public/browser/render_widget_host_view.h"
28 #include "content/public/browser/web_contents.h"
29 #include "content/public/common/file_chooser_params.h"
30 #include "net/base/mime_util.h"
31 #include "ui/base/l10n/l10n_util.h"
32 #include "ui/shell_dialogs/selected_file_info.h"
34 using content::BrowserThread
;
35 using content::FileChooserParams
;
36 using content::RenderViewHost
;
37 using content::RenderWidgetHost
;
38 using content::WebContents
;
42 // There is only one file-selection happening at any given time,
43 // so we allocate an enumeration ID for that purpose. All IDs from
44 // the renderer must start at 0 and increase.
45 const int kFileSelectEnumerationId
= -1;
47 void NotifyRenderViewHost(RenderViewHost
* render_view_host
,
48 const std::vector
<ui::SelectedFileInfo
>& files
,
49 FileChooserParams::Mode dialog_mode
) {
50 render_view_host
->FilesSelectedInChooser(files
, dialog_mode
);
53 // Converts a list of FilePaths to a list of ui::SelectedFileInfo.
54 std::vector
<ui::SelectedFileInfo
> FilePathListToSelectedFileInfoList(
55 const std::vector
<base::FilePath
>& paths
) {
56 std::vector
<ui::SelectedFileInfo
> selected_files
;
57 for (size_t i
= 0; i
< paths
.size(); ++i
) {
58 selected_files
.push_back(
59 ui::SelectedFileInfo(paths
[i
], paths
[i
]));
61 return selected_files
;
66 struct FileSelectHelper::ActiveDirectoryEnumeration
{
67 ActiveDirectoryEnumeration() : rvh_(NULL
) {}
69 scoped_ptr
<DirectoryListerDispatchDelegate
> delegate_
;
70 scoped_ptr
<net::DirectoryLister
> lister_
;
72 std::vector
<base::FilePath
> results_
;
75 FileSelectHelper::FileSelectHelper(Profile
* profile
)
77 render_view_host_(NULL
),
79 select_file_dialog_(),
81 dialog_type_(ui::SelectFileDialog::SELECT_OPEN_FILE
),
82 dialog_mode_(FileChooserParams::Open
) {
85 FileSelectHelper::~FileSelectHelper() {
86 // There may be pending file dialogs, we need to tell them that we've gone
87 // away so they don't try and call back to us.
88 if (select_file_dialog_
.get())
89 select_file_dialog_
->ListenerDestroyed();
91 // Stop any pending directory enumeration, prevent a callback, and free
93 std::map
<int, ActiveDirectoryEnumeration
*>::iterator iter
;
94 for (iter
= directory_enumerations_
.begin();
95 iter
!= directory_enumerations_
.end();
97 iter
->second
->lister_
.reset();
102 void FileSelectHelper::DirectoryListerDispatchDelegate::OnListFile(
103 const net::DirectoryLister::DirectoryListerData
& data
) {
104 parent_
->OnListFile(id_
, data
);
107 void FileSelectHelper::DirectoryListerDispatchDelegate::OnListDone(int error
) {
108 parent_
->OnListDone(id_
, error
);
111 void FileSelectHelper::FileSelected(const base::FilePath
& path
,
112 int index
, void* params
) {
113 FileSelectedWithExtraInfo(ui::SelectedFileInfo(path
, path
), index
, params
);
116 void FileSelectHelper::FileSelectedWithExtraInfo(
117 const ui::SelectedFileInfo
& file
,
120 if (!render_view_host_
)
123 profile_
->set_last_selected_directory(file
.file_path
.DirName());
125 const base::FilePath
& path
= file
.local_path
;
126 if (dialog_type_
== ui::SelectFileDialog::SELECT_UPLOAD_FOLDER
) {
127 StartNewEnumeration(path
, kFileSelectEnumerationId
, render_view_host_
);
131 std::vector
<ui::SelectedFileInfo
> files
;
132 files
.push_back(file
);
133 NotifyRenderViewHost(render_view_host_
, files
, dialog_mode_
);
135 // No members should be accessed from here on.
139 void FileSelectHelper::MultiFilesSelected(
140 const std::vector
<base::FilePath
>& files
,
142 std::vector
<ui::SelectedFileInfo
> selected_files
=
143 FilePathListToSelectedFileInfoList(files
);
145 MultiFilesSelectedWithExtraInfo(selected_files
, params
);
148 void FileSelectHelper::MultiFilesSelectedWithExtraInfo(
149 const std::vector
<ui::SelectedFileInfo
>& files
,
152 profile_
->set_last_selected_directory(files
[0].file_path
.DirName());
153 if (!render_view_host_
)
156 NotifyRenderViewHost(render_view_host_
, files
, dialog_mode_
);
158 // No members should be accessed from here on.
162 void FileSelectHelper::FileSelectionCanceled(void* params
) {
163 if (!render_view_host_
)
166 // If the user cancels choosing a file to upload we pass back an
168 NotifyRenderViewHost(
169 render_view_host_
, std::vector
<ui::SelectedFileInfo
>(),
172 // No members should be accessed from here on.
176 void FileSelectHelper::StartNewEnumeration(const base::FilePath
& path
,
178 RenderViewHost
* render_view_host
) {
179 scoped_ptr
<ActiveDirectoryEnumeration
> entry(new ActiveDirectoryEnumeration
);
180 entry
->rvh_
= render_view_host
;
181 entry
->delegate_
.reset(new DirectoryListerDispatchDelegate(this, request_id
));
182 entry
->lister_
.reset(new net::DirectoryLister(path
,
184 net::DirectoryLister::NO_SORT
,
185 entry
->delegate_
.get()));
186 if (!entry
->lister_
->Start()) {
187 if (request_id
== kFileSelectEnumerationId
)
188 FileSelectionCanceled(NULL
);
190 render_view_host
->DirectoryEnumerationFinished(request_id
,
193 directory_enumerations_
[request_id
] = entry
.release();
197 void FileSelectHelper::OnListFile(
199 const net::DirectoryLister::DirectoryListerData
& data
) {
200 ActiveDirectoryEnumeration
* entry
= directory_enumerations_
[id
];
202 // Directory upload only cares about files.
203 if (data
.info
.IsDirectory())
206 entry
->results_
.push_back(data
.path
);
209 void FileSelectHelper::OnListDone(int id
, int error
) {
210 // This entry needs to be cleaned up when this function is done.
211 scoped_ptr
<ActiveDirectoryEnumeration
> entry(directory_enumerations_
[id
]);
212 directory_enumerations_
.erase(id
);
216 FileSelectionCanceled(NULL
);
220 std::vector
<ui::SelectedFileInfo
> selected_files
=
221 FilePathListToSelectedFileInfoList(entry
->results_
);
223 if (id
== kFileSelectEnumerationId
)
224 NotifyRenderViewHost(entry
->rvh_
, selected_files
, dialog_mode_
);
226 entry
->rvh_
->DirectoryEnumerationFinished(id
, entry
->results_
);
228 EnumerateDirectoryEnd();
231 scoped_ptr
<ui::SelectFileDialog::FileTypeInfo
>
232 FileSelectHelper::GetFileTypesFromAcceptType(
233 const std::vector
<base::string16
>& accept_types
) {
234 scoped_ptr
<ui::SelectFileDialog::FileTypeInfo
> base_file_type(
235 new ui::SelectFileDialog::FileTypeInfo());
236 if (accept_types
.empty())
237 return base_file_type
.Pass();
239 // Create FileTypeInfo and pre-allocate for the first extension list.
240 scoped_ptr
<ui::SelectFileDialog::FileTypeInfo
> file_type(
241 new ui::SelectFileDialog::FileTypeInfo(*base_file_type
));
242 file_type
->include_all_files
= true;
243 file_type
->extensions
.resize(1);
244 std::vector
<base::FilePath::StringType
>* extensions
=
245 &file_type
->extensions
.back();
247 // Find the corresponding extensions.
248 int valid_type_count
= 0;
249 int description_id
= 0;
250 for (size_t i
= 0; i
< accept_types
.size(); ++i
) {
251 std::string ascii_type
= base::UTF16ToASCII(accept_types
[i
]);
252 if (!IsAcceptTypeValid(ascii_type
))
255 size_t old_extension_size
= extensions
->size();
256 if (ascii_type
[0] == '.') {
257 // If the type starts with a period it is assumed to be a file extension
258 // so we just have to add it to the list.
259 base::FilePath::StringType
ext(ascii_type
.begin(), ascii_type
.end());
260 extensions
->push_back(ext
.substr(1));
262 if (ascii_type
== "image/*")
263 description_id
= IDS_IMAGE_FILES
;
264 else if (ascii_type
== "audio/*")
265 description_id
= IDS_AUDIO_FILES
;
266 else if (ascii_type
== "video/*")
267 description_id
= IDS_VIDEO_FILES
;
269 net::GetExtensionsForMimeType(ascii_type
, extensions
);
272 if (extensions
->size() > old_extension_size
)
276 // If no valid extension is added, bail out.
277 if (valid_type_count
== 0)
278 return base_file_type
.Pass();
280 // Use a generic description "Custom Files" if either of the following is
282 // 1) There're multiple types specified, like "audio/*,video/*"
283 // 2) There're multiple extensions for a MIME type without parameter, like
284 // "ehtml,shtml,htm,html" for "text/html". On Windows, the select file
285 // dialog uses the first extension in the list to form the description,
286 // like "EHTML Files". This is not what we want.
287 if (valid_type_count
> 1 ||
288 (valid_type_count
== 1 && description_id
== 0 && extensions
->size() > 1))
289 description_id
= IDS_CUSTOM_FILES
;
291 if (description_id
) {
292 file_type
->extension_description_overrides
.push_back(
293 l10n_util::GetStringUTF16(description_id
));
296 return file_type
.Pass();
300 void FileSelectHelper::RunFileChooser(content::WebContents
* tab
,
301 const FileChooserParams
& params
) {
302 Profile
* profile
= Profile::FromBrowserContext(tab
->GetBrowserContext());
303 // FileSelectHelper will keep itself alive until it sends the result message.
304 scoped_refptr
<FileSelectHelper
> file_select_helper(
305 new FileSelectHelper(profile
));
306 file_select_helper
->RunFileChooser(tab
->GetRenderViewHost(), tab
, params
);
310 void FileSelectHelper::EnumerateDirectory(content::WebContents
* tab
,
312 const base::FilePath
& path
) {
313 Profile
* profile
= Profile::FromBrowserContext(tab
->GetBrowserContext());
314 // FileSelectHelper will keep itself alive until it sends the result message.
315 scoped_refptr
<FileSelectHelper
> file_select_helper(
316 new FileSelectHelper(profile
));
317 file_select_helper
->EnumerateDirectory(
318 request_id
, tab
->GetRenderViewHost(), path
);
321 void FileSelectHelper::RunFileChooser(RenderViewHost
* render_view_host
,
322 content::WebContents
* web_contents
,
323 const FileChooserParams
& params
) {
324 DCHECK(!render_view_host_
);
325 DCHECK(!web_contents_
);
326 render_view_host_
= render_view_host
;
327 web_contents_
= web_contents
;
328 notification_registrar_
.RemoveAll();
329 notification_registrar_
.Add(
330 this, content::NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED
,
331 content::Source
<RenderWidgetHost
>(render_view_host_
));
332 notification_registrar_
.Add(
333 this, content::NOTIFICATION_WEB_CONTENTS_DESTROYED
,
334 content::Source
<WebContents
>(web_contents_
));
336 BrowserThread::PostTask(
337 BrowserThread::FILE, FROM_HERE
,
338 base::Bind(&FileSelectHelper::RunFileChooserOnFileThread
, this, params
));
340 // Because this class returns notifications to the RenderViewHost, it is
341 // difficult for callers to know how long to keep a reference to this
342 // instance. We AddRef() here to keep the instance alive after we return
343 // to the caller, until the last callback is received from the file dialog.
344 // At that point, we must call RunFileChooserEnd().
348 void FileSelectHelper::RunFileChooserOnFileThread(
349 const FileChooserParams
& params
) {
350 select_file_types_
= GetFileTypesFromAcceptType(params
.accept_types
);
352 BrowserThread::PostTask(
353 BrowserThread::UI
, FROM_HERE
,
354 base::Bind(&FileSelectHelper::RunFileChooserOnUIThread
, this, params
));
357 void FileSelectHelper::RunFileChooserOnUIThread(
358 const FileChooserParams
& params
) {
359 if (!render_view_host_
|| !web_contents_
) {
360 // If the renderer was destroyed before we started, just cancel the
366 select_file_dialog_
= ui::SelectFileDialog::Create(
367 this, new ChromeSelectFilePolicy(web_contents_
));
368 if (!select_file_dialog_
)
371 dialog_mode_
= params
.mode
;
372 switch (params
.mode
) {
373 case FileChooserParams::Open
:
374 dialog_type_
= ui::SelectFileDialog::SELECT_OPEN_FILE
;
376 case FileChooserParams::OpenMultiple
:
377 dialog_type_
= ui::SelectFileDialog::SELECT_OPEN_MULTI_FILE
;
379 case FileChooserParams::UploadFolder
:
380 dialog_type_
= ui::SelectFileDialog::SELECT_UPLOAD_FOLDER
;
382 case FileChooserParams::Save
:
383 dialog_type_
= ui::SelectFileDialog::SELECT_SAVEAS_FILE
;
387 dialog_type_
= ui::SelectFileDialog::SELECT_OPEN_FILE
;
391 base::FilePath default_file_name
= params
.default_file_name
.IsAbsolute() ?
392 params
.default_file_name
:
393 profile_
->last_selected_directory().Append(params
.default_file_name
);
395 gfx::NativeWindow owning_window
=
396 platform_util::GetTopLevel(render_view_host_
->GetView()->GetNativeView());
398 #if defined(OS_ANDROID)
399 // Android needs the original MIME types and an additional capture value.
400 std::pair
<std::vector
<base::string16
>, bool> accept_types
=
401 std::make_pair(params
.accept_types
, params
.capture
);
404 select_file_dialog_
->SelectFile(
408 select_file_types_
.get(),
409 select_file_types_
.get() && !select_file_types_
->extensions
.empty()
411 : 0, // 1-based index of default extension to show.
412 base::FilePath::StringType(),
414 #if defined(OS_ANDROID)
420 select_file_types_
.reset();
423 // This method is called when we receive the last callback from the file
424 // chooser dialog. Perform any cleanup and release the reference we added
425 // in RunFileChooser().
426 void FileSelectHelper::RunFileChooserEnd() {
427 render_view_host_
= NULL
;
428 web_contents_
= NULL
;
432 void FileSelectHelper::EnumerateDirectory(int request_id
,
433 RenderViewHost
* render_view_host
,
434 const base::FilePath
& path
) {
436 // Because this class returns notifications to the RenderViewHost, it is
437 // difficult for callers to know how long to keep a reference to this
438 // instance. We AddRef() here to keep the instance alive after we return
439 // to the caller, until the last callback is received from the enumeration
440 // code. At that point, we must call EnumerateDirectoryEnd().
442 StartNewEnumeration(path
, request_id
, render_view_host
);
445 // This method is called when we receive the last callback from the enumeration
446 // code. Perform any cleanup and release the reference we added in
447 // EnumerateDirectory().
448 void FileSelectHelper::EnumerateDirectoryEnd() {
452 void FileSelectHelper::Observe(int type
,
453 const content::NotificationSource
& source
,
454 const content::NotificationDetails
& details
) {
456 case content::NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED
: {
457 DCHECK(content::Source
<RenderWidgetHost
>(source
).ptr() ==
459 render_view_host_
= NULL
;
463 case content::NOTIFICATION_WEB_CONTENTS_DESTROYED
: {
464 DCHECK(content::Source
<WebContents
>(source
).ptr() == web_contents_
);
465 web_contents_
= NULL
;
475 bool FileSelectHelper::IsAcceptTypeValid(const std::string
& accept_type
) {
476 // TODO(raymes): This only does some basic checks, extend to test more cases.
477 // A 1 character accept type will always be invalid (either a "." in the case
478 // of an extension or a "/" in the case of a MIME type).
480 if (accept_type
.length() <= 1 ||
481 base::StringToLowerASCII(accept_type
) != accept_type
||
482 base::TrimWhitespaceASCII(accept_type
, base::TRIM_ALL
, &unused
) !=