1 // Copyright 2013 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 // fileBrowserPrivate API. 6 // This is a private API used by the file browser of ChromeOS. 7 [platforms=("chromeos"), 8 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_browser_private_api_functions.h"] 9 namespace fileBrowserPrivate { 10 // Type of the mounted volume. 11 enum VolumeType { drive, downloads, removable, archive }; 12 13 // Device type. Available if this is removable volume. 14 enum DeviceType { usb, sd, optical, mobile, unknown }; 15 16 // Additional data about mount, for example, that the filesystem is not 17 // supported. 18 enum MountCondition { unknown, unsupported }; 19 20 // Is the event raised for mounting or unmounting. 21 enum MountCompletedEventType { mount, unmount }; 22 23 // Event type that tells listeners if mount was successful or an error 24 // occurred. It also specifies the error. 25 enum MountCompletedStatus { 26 success, 27 error_unknown, 28 error_internal, 29 error_invalid_argument, 30 error_invalid_path, 31 error_path_already_mounted, 32 error_path_not_mounted, 33 error_directory_creation_failed, 34 error_invalid_mount_options, 35 error_invalid_unmount_options, 36 error_insufficient_permissions, 37 error_mount_program_not_found, 38 error_mount_program_failed, 39 error_invalid_device_path, 40 error_unknown_filesystem, 41 error_unsuported_filesystem, 42 error_invalid_archive, 43 error_authentication, 44 error_path_unmounted 45 }; 46 47 // File transfer progress state. 48 enum TransferState { started, in_progress, completed, failed }; 49 50 // Defines file transfer direction. 51 enum TransferType { upload, download }; 52 53 // The type of the progress event. 54 enum CopyProgressStatusType { 55 // "begin_copy_entry" is fired for each entry (file or directory) before 56 // starting the copy operation. 57 begin_copy_entry, 58 59 // "end_copy_entry" is fired for each entry (file or directory) after ending 60 // the copy operation. 61 end_copy_entry, 62 63 // "progress" is fired periodically to report progress of a file copy (not 64 // directory). 65 progress, 66 67 // "success" is fired after all entries are copied. 68 success, 69 70 // "error" is fired when an error occurs. 71 error 72 }; 73 74 // Specifies type of event that is raised. 75 enum FileWatchEventType { changed, error }; 76 77 // The type of entry that is needed. Default to ALL. 78 enum SearchType { EXCLUDE_DIRECTORIES, SHARED_WITH_ME, OFFLINE, ALL }; 79 80 // Zooming mode. 81 enum ZoomOperationType { in, out, reset }; 82 83 // A file task represents an action that the file manager can perform over the 84 // currently selected files. See 85 // chrome/browser/chromeos/extensions/file_manager/file_tasks.h for details 86 // about how file tasks are handled. 87 dictionary FileTask { 88 // The unique identifier of the task. 89 DOMString taskId; 90 91 // Task title (ex. App name). 92 DOMString title; 93 94 // Task icon url (from chrome://extension-icon/...) 95 DOMString iconUrl; 96 97 // True if this task is a default task for the selected files. 98 boolean isDefault; 99 }; 100 101 // Drive file properties. 102 dictionary DriveEntryProperties { 103 // URL to the Drive thumbnail image for this file. 104 DOMString? thumbnailUrl; 105 106 // Width, if the entry is an image. 107 long? imageWidth; 108 109 // Height, if the entry is an image. 110 long? imageHeight; 111 112 // Rotation in clockwise degrees, if the entry is an image. 113 long? imageRotation; 114 115 // True if the file is pinned in Drive cache. 116 boolean? isPinned; 117 118 // True if the file is present in Drive cache. 119 boolean? isPresent; 120 121 // True if the file is hosted on a Drive server instead of local. 122 boolean? isHosted; 123 124 // URL to the custom icon for this file. 125 DOMString? customIconUrl; 126 127 // Drive MIME type for this file. 128 DOMString? contentMimeType; 129 130 // True if the entry is labeled as shared-with-me. 131 boolean? sharedWithMe; 132 133 // True if the entry is labeled as shared (either from me to others or to me 134 // by others.) 135 boolean? shared; 136 }; 137 138 // Information about total and remaining size on the mount point. 139 dictionary MountPointSizeStats { 140 // Approximate total available size on the mount point. 141 double totalSize; 142 143 // Approximate remaining available size on the mount point. 144 double remainingSize; 145 }; 146 147 // Information about a profile. 148 dictionary ProfileInfo { 149 // The name of the profile for display purpose. 150 DOMString displayName; 151 152 // True if the profile is the one running the current file manager instance. 153 boolean isCurrentProfile; 154 }; 155 156 // Mounted disk volume metadata. 157 dictionary VolumeMetadata { 158 // ID of the disk volume. 159 DOMString volumeId; 160 161 // Description of the profile where the volume belongs. 162 ProfileInfo profile; 163 164 // Disk volume mount point path. 165 DOMString mountPath; 166 167 // The path to the mounted device, archive file or network resource. 168 DOMString? sourcePath; 169 170 // Type of the mounted volume. 171 VolumeType volumeType; 172 173 // Device type. Available if this is removable volume. 174 DeviceType? deviceType; 175 176 // Flag that specifies if volume is mounted in read-only mode. 177 boolean isReadOnly; 178 179 // Additional data about mount, for example, that the filesystem is not 180 // supported. 181 MountCondition? mountCondition; 182 }; 183 184 // Payload data for mount event. 185 dictionary MountCompletedEvent { 186 // Is the event raised for mounting or unmounting. 187 MountCompletedEventType eventType; 188 189 // Event type that tells listeners if mount was successful or an error 190 // occurred. It also specifies the error. 191 MountCompletedStatus status; 192 193 // Metadata of the mounted volume. 194 VolumeMetadata volumeMetadata; 195 }; 196 197 // Payload data for file transfer status updates. 198 dictionary FileTransferStatus { 199 // URL of file that is being transfered. 200 DOMString fileUrl; 201 202 // File transfer progress state. 203 TransferState transferState; 204 205 // Defines file transfer direction. 206 TransferType transferType; 207 208 // Approximated completed portion of the transfer operation. 209 double? processed; 210 211 // Approximated total size of transfer operation. 212 double? total; 213 }; 214 215 // Payload data for copy status progress updates. 216 dictionary CopyProgressStatus { 217 // The type of the progress event. 218 CopyProgressStatusType type; 219 220 // URL for the entry currently being copied. This field is particularly useful 221 // when a directory copy is initiated with startCopy(). The field tells what 222 // file/directory in that directory is now being copied. 223 DOMString? sourceUrl; 224 225 // URL for the entry currently being created. This field is particularly 226 // useful when a directory copy is initiated with startCopy(). The field tells 227 // what file/directory in that directory is being created. Available only for 228 // end_copy_entry and success. 229 DOMString? destinationUrl; 230 231 // Number of processed bytes for the file currently being copied. Available 232 // only for "progress" event. To show the progress bar, a caller needs to 233 // pre-compute the size of files being copied for the file (not directory). 234 double? size; 235 236 // FileError's code of the error. Available only for ERROR event. 237 long? error; 238 }; 239 240 // Payload data for file transfer cancel response. 241 dictionary FileTransferCancelStatus { 242 // URL of file that is being transfered. 243 DOMString fileUrl; 244 245 // True if ongoing transfer operation was found and canceled. 246 boolean canceled; 247 }; 248 249 // Directory change notification details. 250 dictionary FileWatchEvent { 251 // Specifies type of event that is raised. 252 FileWatchEventType eventType; 253 254 // An Entry object which represents a changed directory. The conversion into a 255 // kind of FileEntry object is done in 256 // file_browser_handler_custom_bindings.cc. For filesystem API's Entry 257 // interface, see <a 258 // href='http://www.w3.org/TR/file-system-api/#the-entry-interface'>The Entry 259 // interface</a>. 260 [instanceOf=Entry] object entry; 261 }; 262 263 dictionary Preferences { 264 boolean driveEnabled; 265 boolean cellularDisabled; 266 boolean hostedFilesDisabled; 267 boolean use24hourClock; 268 boolean allowRedeemOffers; 269 }; 270 271 dictionary PreferencesChange { 272 boolean? cellularDisabled; 273 boolean? hostedFilesDisabled; 274 }; 275 276 dictionary SearchParams { 277 // Search query. 278 DOMString query; 279 280 // ID of the search feed that should be fetched next. Value passed here should 281 // be gotten from previous searchDrive call. It can be empty for the initial 282 // search request. 283 DOMString nextFeed; 284 }; 285 286 dictionary SearchMetadataParams { 287 // Search query. It can be empty. Any filename matches to an empty query. 288 DOMString query; 289 290 // The type of entry that is needed. Default to ALL. 291 SearchType types; 292 293 // Maximum number of results. 294 long maxResults; 295 }; 296 297 // Entry and Drive-related properties representing a search result. 298 dictionary SearchResult { 299 // A dictionary object which represents a Drive file. This will be converted 300 // into a kind of FileEntry object. See 301 // file_browser_handler_custom_bindings.cc for details. For filesystem API's 302 // Entry interface, see <a 303 // href='http://www.w3.org/TR/file-system-api/#the-entry-interface'>The Entry 304 // interface</a>. 305 [instanceOf=Entry] object entry; 306 307 // The base name of a Drive file that matched the search query. The matched 308 // sub strings are highlighted with <b> element. Meta characters are escaped 309 // like <. 310 DOMString highlightedBaseName; 311 }; 312 313 dictionary DriveConnectionState { 314 DOMString type; 315 316 // Reasons of offline. 317 DOMString? reason; 318 }; 319 320 // |success| True of task execution was successfully initiated. 321 callback ExecuteTaskCallback = void(optional boolean success); 322 323 callback SetDefaultTaskCallback = void(); 324 325 // |tasks| The list of matched file URL patterns for this task. 326 callback GetFileTasksCallback = void(FileTask[] tasks); 327 328 // |result| Hash containing the string assets. 329 callback GetStringsCallback = void(object result); 330 331 // |success| True when file watch is successfully added. 332 callback AddFileWatchCallback = void(optional boolean success); 333 334 // |success| True when file watch is successfully removed. 335 callback RemoveFileWatchCallback = void(optional boolean success); 336 337 // |fileSystem| A DOMFileSystem instance for local file system access. null if 338 // |the caller has no appropriate permissions. 339 callback RequestFileSystemCallback = void(optional object fileSystem); 340 341 callback SelectFilesCallback = void(); 342 343 callback SelectFileCallback = void(); 344 345 // |fileProperties| A dictionary containing properties of the requested entry. 346 callback GetDriveEntryPropertiesCallback = 347 void(DriveEntryProperties fileProperties); 348 349 callback PinDriveFileCallback = void(); 350 351 // |localFilePaths| An array of the local file paths for the requested files, 352 // one entry for each file in fileUrls. 353 callback GetDriveFilesCallback = void(DOMString[] localFilePaths); 354 355 // |sourcePath| Source path of the mount. 356 callback AddMountCallback = void(DOMString sourcePath); 357 358 // |volumeMetadataList| The list of VolumeMetadata representing mounted volumes. 359 callback GetVolumeMetadataListCallback = 360 void(VolumeMetadata[] volumeMetadataList); 361 362 // |fileTransferCancelStatuses| The list of FileTransferCancelStatus. 363 callback CancelFileTransfersCallback = 364 void(FileTransferCancelStatus[] fileTransferCancelStatuses); 365 366 // |copyId| ID of the copy task. Can be used to identify the progress, and to 367 // cancel the task. 368 callback StartCopyCallback = void(long copyId); 369 370 callback CancelCopyCallback = void(); 371 372 // |sizeStats| Name/value pairs of size stats. Will be undefined if stats could 373 // not be determined. 374 callback GetSizeStatsCallback = void(optional MountPointSizeStats sizeStats); 375 376 callback GetPreferencesCallback = void(Preferences result); 377 378 // |entries| 379 // |nextFeed| ID of the feed that contains next chunk of the search result. 380 // Should be sent to the next searchDrive request to perform 381 // incremental search. 382 callback SearchDriveCallback = 383 void([instanceOf=Entry] object[] entries, DOMString nextFeed); 384 385 callback SearchDriveMetadataCallback = void(SearchResult[] results); 386 387 callback ZipSelectionCallback = void(optional boolean success); 388 389 callback GetDriveConnectionStateCallback = void(DriveConnectionState result); 390 391 // |result| true if the length is in the valid range, false otherwise. 392 callback ValidatePathNameLengthCallback = void(boolean result); 393 394 // |accessToken| OAuth2 access token, or an empty string if failed to fetch. 395 callback RequestAccessTokenCallback = void(DOMString accessToken); 396 397 // |accessToken| OAuth2 access token, or an empty string if failed to fetch. 398 callback RequestWebStoreAccessTokenCallback = void(DOMString accessToken); 399 400 // |shareUrl| Share Url for the sharing dialog. 401 callback GetShareUrlCallback = void(DOMString shareUrl); 402 403 callback InstallWebstoreItemCallback = void(); 404 405 interface Functions { 406 // Logout the current user for navigating to the re-authentication screen for 407 // the Google account. 408 static void logoutUserForReauthentication(); 409 410 // Cancels file selection. 411 static void cancelDialog(); 412 413 // Executes file browser task over selected files. 414 // |taskId| The unique identifier of task to execute. 415 // |fileUrls| Array of file URLs 416 // |callback| 417 static void executeTask(DOMString taskId, 418 DOMString[] fileUrls, 419 optional ExecuteTaskCallback callback); 420 421 // Sets the default task for the supplied MIME types and suffixes of the 422 // supplied file URLs. Lists of MIME types and URLs may contain duplicates. 423 // |taskId| The unique identifier of task to mark as default. 424 // |fileUrls| Array of selected file URLs to extract suffixes from. 425 // |mimeTypes| Array of selected file MIME types. 426 // |callback| 427 static void setDefaultTask(DOMString taskId, 428 DOMString[] fileUrls, 429 optional DOMString[] mimeTypes, 430 optional SetDefaultTaskCallback callback); 431 432 // Gets the list of tasks that can be performed over selected files. 433 // |fileUrls| Array of selected file URLs 434 // |mimeTypes| Array of selected file MIME types 435 // |callback| 436 static void getFileTasks(DOMString[] fileUrls, 437 DOMString[] mimeTypes, 438 GetFileTasksCallback callback); 439 440 // Gets localized strings and initialization data. 441 // |callback| 442 static void getStrings(GetStringsCallback callback); 443 444 // Adds file watch. 445 // |fileUrl| URL of file to watch 446 // |callback| 447 static void addFileWatch(DOMString fileUrl, AddFileWatchCallback callback); 448 449 // Removes file watch. 450 // |fileUrl| URL of watched file to remove 451 // |callback| 452 static void removeFileWatch(DOMString fileUrl, 453 RemoveFileWatchCallback callback); 454 455 // Requests access to a file system volume. 456 // |volumeId| The ID of the file system volume to request. The volume ID is 457 // delivered to JavaScript as part of VolumeMetadata. By specifying 458 // "compatible", this function behaves in the compatible mode, where the 459 // returned FileSystem object gives access to all file system volumes such 460 // as Downloads folder and removal media like SD cards (i.e. all volumes 461 // are provided inside the single FileSystem object). In the new 462 // "per-volume FileSystem object model" crbug.com/322305, a separate 463 // FileSystem object is created for each volume. "compatible" parameter 464 // will be removed once Files.app is switched to the per-volume FileSystem 465 // object model. 466 // |callback| 467 static void requestFileSystem(DOMString volumeId, 468 RequestFileSystemCallback callback); 469 470 // Selects multiple files. 471 // |selectedPaths| Array of selected paths 472 // |shouldReturnLocalPath| true if paths need to be resolved to local paths. 473 // |callback| 474 static void selectFiles(DOMString[] selectedPaths, 475 boolean shouldReturnLocalPath, 476 SelectFilesCallback callback); 477 478 // Selects a file. 479 // |selectedPath| A selected path 480 // |index| Index of Filter 481 // |forOpening| true if paths are selected for opening. false if for saving. 482 // |shouldReturnLocalPath| true if paths need to be resolved to local paths. 483 // |callback| 484 static void selectFile(DOMString selectedPath, 485 long index, 486 boolean forOpening, 487 boolean shouldReturnLocalPath, 488 SelectFileCallback callback); 489 490 // Requests Drive file properties for a file. 491 // |fileUrl| URL of a file 492 // |callback| 493 static void getDriveEntryProperties(DOMString fileUrl, 494 GetDriveEntryPropertiesCallback callback); 495 496 // Pins/unpins a Drive file in the cache. 497 // |fileUrl| URL of a file to pin/unpin. 498 // |pin| Pass true to pin the file. 499 // |callback| Completion callback. $ref:runtime.lastError will be set if there 500 // was an error. 501 static void pinDriveFile(DOMString fileUrl, 502 boolean pin, 503 optional PinDriveFileCallback callback); 504 505 // Get Drive files. 506 // |fileUrls| Array of Drive file URLs to get. 507 // |callback| 508 static void getDriveFiles(DOMString[] fileUrls, 509 GetDriveFilesCallback callback); 510 511 // Mount a resource or a file. 512 // |source| Mount point source. For compressed files it is relative file path 513 // within external file system 514 // |callback| 515 static void addMount(DOMString source, AddMountCallback callback); 516 517 // Unmounts a mounted resource. 518 // |mountPath| A path of the mount. 519 static void removeMount(DOMString mountPath); 520 521 // Get the list of mounted volumes. 522 // |callback| 523 static void getVolumeMetadataList(GetVolumeMetadataListCallback callback); 524 525 // Cancels ongoing file transfers for selected files. 526 // |fileUrls| Array of files for which ongoing transfer should be canceled. 527 // |callback| 528 static void cancelFileTransfers(DOMString[] fileUrls, 529 CancelFileTransfersCallback callback); 530 531 // Starts to copy an entry. If the source is a directory, the copy is done 532 // recursively. 533 // |sourceUrl| URL of the source entry to be copied. 534 // |parent| URL of the destination directory. 535 // |newName| Name of the new entry. It shouldn't contain '/'. 536 // |callback| Completion callback. 537 static void startCopy(DOMString sourceUrl, 538 DOMString parent, 539 DOMString newName, 540 StartCopyCallback callback); 541 542 // Cancels the running copy task. 543 // |copyId| ID of the copy task to be cancelled. 544 // |callback| Completion callback of the cancel. 545 static void cancelCopy(long copyId, optional CancelCopyCallback callback); 546 547 // Retrieves total and remaining size of a mount point. 548 // |mountPath| Mount point path. 549 // |callback| 550 static void getSizeStats(DOMString mountPath, GetSizeStatsCallback callback); 551 552 // Formats a mounted volume. 553 // |volumeId| ID of the volume to be formatted. 554 static void formatVolume(DOMString volumeId); 555 556 // Retrieves file manager preferences. 557 // |callback| 558 static void getPreferences(GetPreferencesCallback callback); 559 560 // Sets file manager preferences. 561 // |changeInfo| 562 static void setPreferences(PreferencesChange changeInfo); 563 564 // Performs drive content search. 565 // |searchParams| 566 // |callback| 567 static void searchDrive(SearchParams searchParams, 568 SearchDriveCallback callback); 569 570 // Performs drive metadata search. 571 // |searchParams| 572 // |callback| 573 static void searchDriveMetadata(SearchMetadataParams searchParams, 574 SearchDriveMetadataCallback callback); 575 576 // Create a zip file for the selected files. 577 // |dirURL| URL of the directory containing the selected files. 578 // |selectionUrls| URLs of the selected files. The files must be under the 579 // directory specified by dirURL. 580 // |destName| Name of the destination zip file. The zip file will be created 581 // under the directory specified by dirURL. 582 // |callback| 583 static void zipSelection(DOMString dirURL, 584 DOMString[] selectionUrls, 585 DOMString destName, 586 optional ZipSelectionCallback callback); 587 588 // Retrieves the state of the current drive connection. 589 // |callback| 590 static void getDriveConnectionState(GetDriveConnectionStateCallback callback); 591 592 // Checks whether the path name length fits in the limit of the filesystem. 593 // |parent_directory_url| The URL of the parent directory entry. 594 // |name| The name of the file. 595 // |callback| Called back when the check is finished. 596 static void validatePathNameLength(DOMString parent_directory_url, 597 DOMString name, 598 ValidatePathNameLengthCallback callback); 599 600 // Changes the zoom factor of the Files.app. 601 // |operation| Zooming mode. 602 static void zoom(ZoomOperationType operation); 603 604 // Requests a Drive API OAuth2 access token. 605 // |refresh| Whether the token should be refetched instead of using the cached 606 // one. 607 // |callback| 608 static void requestAccessToken(boolean refresh, 609 RequestAccessTokenCallback callback); 610 611 // Requests a Webstore API OAuth2 access token. 612 // |callback| 613 static void requestWebStoreAccessToken( 614 RequestWebStoreAccessTokenCallback callback); 615 616 // Requests a share dialog url for the specified file. 617 // |url| Url for the file. 618 // |callback| 619 static void getShareUrl(DOMString url, GetShareUrlCallback callback); 620 621 // Requests to install a webstore item. 622 // |item_id| The id of the item to install. 623 // |callback| 624 static void installWebstoreItem(DOMString item_id, 625 InstallWebstoreItemCallback callback); 626 }; 627 628 interface Events { 629 static void onMountCompleted(MountCompletedEvent event); 630 631 static void onFileTransfersUpdated(FileTransferStatus[] event); 632 633 static void onCopyProgress(long copyId, CopyProgressStatus status); 634 635 static void onDirectoryChanged(FileWatchEvent event); 636 637 static void onPreferencesChanged(); 638 639 static void onDriveConnectionStatusChanged(); 640 }; 641 }; 642