Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: chrome/browser/extensions/api/file_system/file_system_api.cc

Issue 10692105: Updates file type selector for fileSystem API (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: use find() instead of iter, remove own description generation code, cleanup tests Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/extensions/api/file_system/file_system_api.h" 5 #include "chrome/browser/extensions/api/file_system/file_system_api.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/string_split.h"
13 #include "base/string_util.h"
12 #include "base/utf_string_conversions.h" 14 #include "base/utf_string_conversions.h"
13 #include "chrome/browser/extensions/shell_window_registry.h" 15 #include "chrome/browser/extensions/shell_window_registry.h"
14 #include "chrome/browser/platform_util.h" 16 #include "chrome/browser/platform_util.h"
15 #include "chrome/browser/ui/chrome_select_file_policy.h" 17 #include "chrome/browser/ui/chrome_select_file_policy.h"
16 #include "chrome/browser/ui/extensions/shell_window.h" 18 #include "chrome/browser/ui/extensions/shell_window.h"
17 #include "chrome/common/extensions/api/file_system.h" 19 #include "chrome/common/extensions/api/file_system.h"
18 #include "chrome/common/extensions/permissions/api_permission.h" 20 #include "chrome/common/extensions/permissions/api_permission.h"
21 #include "grit/generated_resources.h"
22 #include "net/base/mime_util.h"
19 #include "content/public/browser/child_process_security_policy.h" 23 #include "content/public/browser/child_process_security_policy.h"
20 #include "content/public/browser/render_view_host.h" 24 #include "content/public/browser/render_view_host.h"
21 #include "content/public/browser/render_process_host.h" 25 #include "content/public/browser/render_process_host.h"
22 #include "content/public/browser/web_contents.h" 26 #include "content/public/browser/web_contents.h"
23 #include "webkit/fileapi/file_system_util.h" 27 #include "webkit/fileapi/file_system_util.h"
24 #include "webkit/fileapi/isolated_context.h" 28 #include "webkit/fileapi/isolated_context.h"
29 #include "ui/base/l10n/l10n_util.h"
25 30
26 using fileapi::IsolatedContext; 31 using fileapi::IsolatedContext;
27 32
28 const char kInvalidParameters[] = "Invalid parameters"; 33 const char kInvalidParameters[] = "Invalid parameters";
29 const char kSecurityError[] = "Security error"; 34 const char kSecurityError[] = "Security error";
30 const char kInvalidCallingPage[] = "Invalid calling page"; 35 const char kInvalidCallingPage[] = "Invalid calling page";
31 const char kUserCancelled[] = "User cancelled"; 36 const char kUserCancelled[] = "User cancelled";
32 const char kWritableFileError[] = "Invalid file for writing"; 37 const char kWritableFileError[] = "Invalid file for writing";
33 const char kRequiresFileSystemWriteError[] = 38 const char kRequiresFileSystemWriteError[] =
34 "Operation requires fileSystemWrite permission"; 39 "Operation requires fileSystemWrite permission";
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 // Create the file if it doesn't already exist. 129 // Create the file if it doesn't already exist.
125 base::PlatformFileError error = base::PLATFORM_FILE_OK; 130 base::PlatformFileError error = base::PLATFORM_FILE_OK;
126 int creation_flags = base::PLATFORM_FILE_CREATE | 131 int creation_flags = base::PLATFORM_FILE_CREATE |
127 base::PLATFORM_FILE_READ | 132 base::PLATFORM_FILE_READ |
128 base::PLATFORM_FILE_WRITE; 133 base::PLATFORM_FILE_WRITE;
129 base::CreatePlatformFile(path, creation_flags, NULL, &error); 134 base::CreatePlatformFile(path, creation_flags, NULL, &error);
130 return error == base::PLATFORM_FILE_OK || 135 return error == base::PLATFORM_FILE_OK ||
131 error == base::PLATFORM_FILE_ERROR_EXISTS; 136 error == base::PLATFORM_FILE_ERROR_EXISTS;
132 } 137 }
133 138
139 // Parses a comma-seperated list of accept types into a std::vector, e.g.,
benwells 2012/07/30 01:07:16 /Parses/Parses and normalizes/
thorogood 2012/07/30 06:39:16 Done.
140 // from "foo /bar, .TXT, hello/*" into ["foo/bar", ".txt", "hello/*"].
141 std::vector<std::string> ParseAcceptValue(const std::string& accept_types_) {
benwells 2012/07/30 01:07:16 Trailing underscore represents a field on a class.
thorogood 2012/07/30 06:39:16 Done.
142 std::vector<std::string> type_list;
143 std::string accept_types(accept_types_);
144
145 RemoveChars(accept_types, kWhitespaceASCII, &accept_types);
146 StringToLowerASCII(&accept_types);
147
148 // Note that type_list might contain blank entries, e.g., if the source data
149 // was "foo,,bar", the output will be "foo", "", "bar".
150 base::SplitString(accept_types, ',', &type_list);
151 return type_list;
152 }
153
154 std::vector<FilePath::StringType> GetDescriptionIdAndExtensions(
benwells 2012/07/30 01:07:16 Now the description processing is so much simpler
thorogood 2012/07/30 06:39:16 Done, PTAL.
155 const std::vector<std::string>& type_list,
156 int* description_id) {
157 std::set<FilePath::StringType> extensions;
158 bool has_valid_types = false;
159
160 *description_id = 0;
161
162 for (std::vector<std::string>::const_iterator iter = type_list.begin();
163 iter != type_list.end(); ++iter) {
164 std::vector<FilePath::StringType> inner;
165
166 if (iter->empty()) {
167 // Do nothing.
168 } else if ((*iter)[0] == '.') {
169 // Assume this is a file extension, and update the vector with just a
170 // single extension type.
171 FilePath::StringType ext(iter->begin(), iter->end());
172 inner.push_back(ext.substr(1));
173 } else if (*iter == "image/*") {
174 *description_id = IDS_IMAGE_FILES;
175 net::GetImageExtensions(&inner);
176 } else if (*iter == "audio/*") {
177 *description_id = IDS_AUDIO_FILES;
178 net::GetAudioExtensions(&inner);
179 } else if (*iter == "video/*") {
180 *description_id = IDS_VIDEO_FILES;
181 net::GetVideoExtensions(&inner);
182 } else {
183 net::GetExtensionsForMimeType(*iter, &inner);
184 }
185
186 if (inner.empty())
187 continue;
188
189 if (has_valid_types)
benwells 2012/07/30 01:07:16 Does this mean something like "video/*,.xyz" will
thorogood 2012/07/30 06:39:16 Yes. As discussed, I'm changing this code so that:
190 *description_id = 0; // One valid accept type has already been seen; we
191 // can no longer provide a fixed description.
192
193 has_valid_types = true;
194 extensions.insert(inner.begin(), inner.end());
195 }
196
197 return std::vector<FilePath::StringType>(extensions.begin(),
198 extensions.end());
199 }
200
201 bool GetFileTypesFromAcceptType(const std::string& accept_type,
202 std::vector<FilePath::StringType>* extensions,
203 string16* description) {
204 std::vector<std::string> type_list = ParseAcceptValue(accept_type);
205 int description_id;
206
207 *extensions = GetDescriptionIdAndExtensions(type_list, &description_id);
208
209 if (extensions->empty())
210 return false;
211
212 if (description_id)
213 *description = l10n_util::GetStringUTF16(description_id);
214
215 return true;
216 }
217
134 } // namespace 218 } // namespace
135 219
136 namespace extensions { 220 namespace extensions {
137 221
138 bool FileSystemGetDisplayPathFunction::RunImpl() { 222 bool FileSystemGetDisplayPathFunction::RunImpl() {
139 std::string filesystem_name; 223 std::string filesystem_name;
140 std::string filesystem_path; 224 std::string filesystem_path;
141 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &filesystem_name)); 225 EXTENSION_FUNCTION_VALIDATE(args_->GetString(0, &filesystem_name));
142 EXTENSION_FUNCTION_VALIDATE(args_->GetString(1, &filesystem_path)); 226 EXTENSION_FUNCTION_VALIDATE(args_->GetString(1, &filesystem_path));
143 227
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 } 340 }
257 341
258 // Handles showing a dialog to the user to ask for the filename for a file to 342 // Handles showing a dialog to the user to ask for the filename for a file to
259 // save or open. 343 // save or open.
260 class FileSystemChooseFileFunction::FilePicker 344 class FileSystemChooseFileFunction::FilePicker
261 : public SelectFileDialog::Listener { 345 : public SelectFileDialog::Listener {
262 public: 346 public:
263 FilePicker(FileSystemChooseFileFunction* function, 347 FilePicker(FileSystemChooseFileFunction* function,
264 content::WebContents* web_contents, 348 content::WebContents* web_contents,
265 const FilePath& suggested_name, 349 const FilePath& suggested_name,
350 const SelectFileDialog::FileTypeInfo& file_type_info,
266 SelectFileDialog::Type picker_type, 351 SelectFileDialog::Type picker_type,
267 EntryType entry_type) 352 EntryType entry_type)
268 : suggested_name_(suggested_name), 353 : suggested_name_(suggested_name),
269 entry_type_(entry_type), 354 entry_type_(entry_type),
270 function_(function) { 355 function_(function) {
271 select_file_dialog_ = SelectFileDialog::Create( 356 select_file_dialog_ = SelectFileDialog::Create(
272 this, new ChromeSelectFilePolicy(web_contents)); 357 this, new ChromeSelectFilePolicy(web_contents));
273 SelectFileDialog::FileTypeInfo file_type_info;
274 FilePath::StringType extension = suggested_name.Extension();
275 if (!extension.empty()) {
276 extension.erase(extension.begin()); // drop the .
277 file_type_info.extensions.resize(1);
278 file_type_info.extensions[0].push_back(extension);
279 }
280 file_type_info.include_all_files = true;
281 gfx::NativeWindow owning_window = web_contents ? 358 gfx::NativeWindow owning_window = web_contents ?
282 platform_util::GetTopLevel(web_contents->GetNativeView()) : NULL; 359 platform_util::GetTopLevel(web_contents->GetNativeView()) : NULL;
283 360
284 if (g_skip_picker_for_test) { 361 if (g_skip_picker_for_test) {
285 if (g_path_to_be_picked_for_test) { 362 if (g_path_to_be_picked_for_test) {
286 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE, 363 content::BrowserThread::PostTask(content::BrowserThread::UI, FROM_HERE,
287 base::Bind( 364 base::Bind(
288 &FileSystemChooseFileFunction::FilePicker::FileSelected, 365 &FileSystemChooseFileFunction::FilePicker::FileSelected,
289 base::Unretained(this), *g_path_to_be_picked_for_test, 1, 366 base::Unretained(this), *g_path_to_be_picked_for_test, 1,
290 static_cast<void*>(NULL))); 367 static_cast<void*>(NULL)));
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
326 EntryType entry_type_; 403 EntryType entry_type_;
327 404
328 scoped_refptr<SelectFileDialog> select_file_dialog_; 405 scoped_refptr<SelectFileDialog> select_file_dialog_;
329 scoped_refptr<FileSystemChooseFileFunction> function_; 406 scoped_refptr<FileSystemChooseFileFunction> function_;
330 407
331 DISALLOW_COPY_AND_ASSIGN(FilePicker); 408 DISALLOW_COPY_AND_ASSIGN(FilePicker);
332 }; 409 };
333 410
334 bool FileSystemChooseFileFunction::ShowPicker( 411 bool FileSystemChooseFileFunction::ShowPicker(
335 const FilePath& suggested_name, 412 const FilePath& suggested_name,
413 const SelectFileDialog::FileTypeInfo& file_type_info,
336 SelectFileDialog::Type picker_type, 414 SelectFileDialog::Type picker_type,
337 EntryType entry_type) { 415 EntryType entry_type) {
338 ShellWindowRegistry* registry = ShellWindowRegistry::Get(profile()); 416 ShellWindowRegistry* registry = ShellWindowRegistry::Get(profile());
339 DCHECK(registry); 417 DCHECK(registry);
340 ShellWindow* shell_window = registry->GetShellWindowForRenderViewHost( 418 ShellWindow* shell_window = registry->GetShellWindowForRenderViewHost(
341 render_view_host()); 419 render_view_host());
342 if (!shell_window) { 420 if (!shell_window) {
343 error_ = kInvalidCallingPage; 421 error_ = kInvalidCallingPage;
344 return false; 422 return false;
345 } 423 }
346 424
347 // The file picker will hold a reference to this function instance, preventing 425 // The file picker will hold a reference to this function instance, preventing
348 // its destruction (and subsequent sending of the function response) until the 426 // its destruction (and subsequent sending of the function response) until the
349 // user has selected a file or cancelled the picker. At that point, the picker 427 // user has selected a file or cancelled the picker. At that point, the picker
350 // will delete itself, which will also free the function instance. 428 // will delete itself, which will also free the function instance.
351 new FilePicker(this, shell_window->web_contents(), suggested_name, 429 new FilePicker(this, shell_window->web_contents(), suggested_name,
352 picker_type, entry_type); 430 file_type_info, picker_type, entry_type);
353 return true; 431 return true;
354 } 432 }
355 433
356 // static 434 // static
357 void FileSystemChooseFileFunction::SkipPickerAndAlwaysSelectPathForTest( 435 void FileSystemChooseFileFunction::SkipPickerAndAlwaysSelectPathForTest(
358 FilePath* path) { 436 FilePath* path) {
359 g_skip_picker_for_test = true; 437 g_skip_picker_for_test = true;
360 g_path_to_be_picked_for_test = path; 438 g_path_to_be_picked_for_test = path;
361 } 439 }
362 440
(...skipping 19 matching lines...) Expand all
382 460
383 // Don't need to check the file, it's for reading. 461 // Don't need to check the file, it's for reading.
384 RegisterFileSystemAndSendResponse(path, READ_ONLY); 462 RegisterFileSystemAndSendResponse(path, READ_ONLY);
385 } 463 }
386 464
387 void FileSystemChooseFileFunction::FileSelectionCanceled() { 465 void FileSystemChooseFileFunction::FileSelectionCanceled() {
388 error_ = kUserCancelled; 466 error_ = kUserCancelled;
389 SendResponse(false); 467 SendResponse(false);
390 } 468 }
391 469
470 void FileSystemChooseFileFunction::BuildFileTypeInfo(
471 SelectFileDialog::FileTypeInfo* file_type_info,
472 const FilePath::StringType& suggested_extension,
473 const std::vector<std::string>* accepts,
474 const bool* acceptsAllTypes) {
475 if (acceptsAllTypes)
476 file_type_info->include_all_files = *acceptsAllTypes;
477 else
478 file_type_info->include_all_files = false;
benwells 2012/07/30 01:07:16 Default should be true.
thorogood 2012/07/30 06:39:16 Nice catch, forgot about that from the IDL.
479
480 bool need_suggestion = !file_type_info->include_all_files &&
481 !suggested_extension.empty();
482
483 if (accepts) {
484 for (std::vector<std::string>::const_iterator iter = accepts->begin();
485 iter != accepts->end(); ++iter) {
486 string16 description;
487 std::vector<FilePath::StringType> extensions;
488
489 if (!GetFileTypesFromAcceptType(*iter, &extensions, &description))
490 continue; // No extensions were found.
491
492 file_type_info->extensions.push_back(extensions);
493 file_type_info->extension_description_overrides.push_back(description);
494
495 // Optionally hunt for our suggested_extension, ensuring it is one of the
benwells 2012/07/30 01:07:16 Nit: what does optionally mean here?
thorogood 2012/07/30 06:39:16 clarified this comment, it's now "If we still need
496 // extensions provided through GetFileTypesFromAcceptType.
497 if (need_suggestion && std::find(extensions.begin(),
498 extensions.end(),
499 suggested_extension) != extensions.end()) {
500 need_suggestion = false;
501 }
502 }
503 }
504
505 // If there's nothing in our accepted extension list or we couldn't find the
506 // suggested extension required, then default to accepting all types.
507 if (file_type_info->extensions.empty() || need_suggestion)
508 file_type_info->include_all_files = true;
509 }
510
511 void FileSystemChooseFileFunction::BuildSuggestion(
512 const std::string *opt_name,
513 FilePath* suggested_name,
514 FilePath::StringType* suggested_extension) {
515 if (opt_name) {
516 *suggested_name = FilePath::FromUTF8Unsafe(*opt_name);
517
518 // Don't allow any path components; shorten to the base name. This should
519 // result in a relative path, but in some cases may not. Clear the
520 // suggestion for safety if this is the case.
521 *suggested_name = suggested_name->BaseName();
522 if (suggested_name->IsAbsolute()) {
benwells 2012/07/30 01:07:16 Nit: don't need braces.
thorogood 2012/07/30 06:39:16 Done.
523 *suggested_name = FilePath();
524 }
525 *suggested_extension = suggested_name->Extension();
526 if (!suggested_extension->empty()) {
benwells 2012/07/30 01:07:16 Nit: don't need braces.
thorogood 2012/07/30 06:39:16 Done.
527 suggested_extension->erase(suggested_extension->begin()); // drop the .
528 }
529 }
530 }
531
392 bool FileSystemChooseFileFunction::RunImpl() { 532 bool FileSystemChooseFileFunction::RunImpl() {
393 scoped_ptr<ChooseFile::Params> params(ChooseFile::Params::Create(*args_)); 533 scoped_ptr<ChooseFile::Params> params(ChooseFile::Params::Create(*args_));
394 EXTENSION_FUNCTION_VALIDATE(params.get()); 534 EXTENSION_FUNCTION_VALIDATE(params.get());
395 535
396 FilePath suggested_name; 536 FilePath suggested_name;
537 SelectFileDialog::FileTypeInfo file_type_info;
397 EntryType entry_type = READ_ONLY; 538 EntryType entry_type = READ_ONLY;
398 SelectFileDialog::Type picker_type = SelectFileDialog::SELECT_OPEN_FILE; 539 SelectFileDialog::Type picker_type = SelectFileDialog::SELECT_OPEN_FILE;
399 540
400 file_system::ChooseFileOptions* options = params->options.get(); 541 file_system::ChooseFileOptions* options = params->options.get();
401 if (options) { 542 if (options) {
402 if (options->type.get()) { 543 if (options->type.get()) {
403 if (*options->type == kOpenWritableFileOption) { 544 if (*options->type == kOpenWritableFileOption) {
404 entry_type = WRITABLE; 545 entry_type = WRITABLE;
405 } else if (*options->type == kSaveFileOption) { 546 } else if (*options->type == kSaveFileOption) {
406 entry_type = WRITABLE; 547 entry_type = WRITABLE;
407 picker_type = SelectFileDialog::SELECT_SAVEAS_FILE; 548 picker_type = SelectFileDialog::SELECT_SAVEAS_FILE;
408 } else if (*options->type != kOpenFileOption) { 549 } else if (*options->type != kOpenFileOption) {
409 error_ = kUnknownChooseFileType; 550 error_ = kUnknownChooseFileType;
410 return false; 551 return false;
411 } 552 }
412 } 553 }
413 554
414 if (options->suggested_name.get()) { 555 FilePath::StringType suggested_extension;
415 suggested_name = FilePath::FromUTF8Unsafe( 556 BuildSuggestion(options->suggested_name.get(), &suggested_name,
416 *options->suggested_name.get()); 557 &suggested_extension);
417 558
418 // Don't allow any path components; shorten to the base name. This should 559 BuildFileTypeInfo(&file_type_info, suggested_extension,
419 // result in a relative path, but in some cases may not. Clear the 560 options->accepts.get(), options->accepts_all_types.get());
420 // suggestion for safety if this is the case.
421 suggested_name = suggested_name.BaseName();
422 if (suggested_name.IsAbsolute()) {
423 suggested_name = FilePath();
424 }
425 }
426 } 561 }
427 562
428 if (entry_type == WRITABLE && !HasFileSystemWritePermission()) { 563 if (entry_type == WRITABLE && !HasFileSystemWritePermission()) {
429 error_ = kRequiresFileSystemWriteError; 564 error_ = kRequiresFileSystemWriteError;
430 return false; 565 return false;
431 } 566 }
432 567
433 return ShowPicker(suggested_name, picker_type, entry_type); 568 return ShowPicker(suggested_name, file_type_info, picker_type, entry_type);
434 } 569 }
435 570
436 } // namespace extensions 571 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698