You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
7.5 KiB

  1. <!---
  2. Licensed to the Apache Software Foundation (ASF) under one
  3. or more contributor license agreements. See the NOTICE file
  4. distributed with this work for additional information
  5. regarding copyright ownership. The ASF licenses this file
  6. to you under the Apache License, Version 2.0 (the
  7. "License"); you may not use this file except in compliance
  8. with the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing,
  11. software distributed under the License is distributed on an
  12. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  13. KIND, either express or implied. See the License for the
  14. specific language governing permissions and limitations
  15. under the License.
  16. -->
  17. # Примечания для разработчиков плагинов
  18. Эти примечания предназначены прежде всего для Android и iOS разработчиков, которые хотят писать плагины какой интерфейс с файловой системой, с помощью файла плагина.
  19. ## Работа с Кордова файловой системы URL
  20. Начиная с версии 1.0.0, этот плагин использует URL-адресов с `cdvfile` схема для всех коммуникации через мост, а не подвергая пути файловой системы raw устройства для JavaScript.
  21. На стороне JavaScript это означает, что объекты DirectoryEntry и FileEntry fullPath атрибут, который является по отношению к корневой файловой системе HTML. Если ваш плагин JavaScript API принимает объект DirectoryEntry или FileEntry, необходимо вызвать `.toURL()` для этого объекта перед передачей их через мост в машинный код.
  22. ### Преобразование cdvfile: / / URL-адреса в пути fileystem
  23. Плагины, которые нужно написать в файловой системе может потребоваться преобразовать URL-адреса системы полученный файл в место фактической файловой системы. Существует несколько способов сделать это, в зависимости от родной платформе.
  24. Важно помнить, что не все `cdvfile://` URL-адреса являются отображаемыми файлами на устройстве. Некоторые URL может относиться к активам на устройстве, которые не представлены файлы, или может даже обратиться к удаленным ресурсам. Из-за эти возможности плагины следует всегда проверять ли они получают результат обратно при попытке преобразовать URL-адреса в пути.
  25. #### Android
  26. На Android, самый простой способ для преобразования `cdvfile://` URL-адрес к пути файловой системы заключается в использовании `cordova-plugin-CordovaResourceApi` . `CordovaResourceApi`Есть несколько методов, которые можно обработать `cdvfile://` URL-адреса:
  27. // webView is a member of the Plugin class
  28. CordovaResourceApi resourceApi = webView.getResourceApi();
  29. // Obtain a file:/// URL representing this file on the device,
  30. // or the same URL unchanged if it cannot be mapped to a file
  31. Uri fileURL = resourceApi.remapUri(Uri.parse(cdvfileURL));
  32. Это также можно использовать плагин файл непосредственно:
  33. import cordova-plugin-file.FileUtils;
  34. import cordova-plugin-file.FileSystem;
  35. import java.net.MalformedURLException;
  36. // Get the File plugin from the plugin manager
  37. FileUtils filePlugin = (FileUtils)webView.pluginManager.getPlugin("File");
  38. // Given a URL, get a path for it
  39. try {
  40. String path = filePlugin.filesystemPathForURL(cdvfileURL);
  41. } catch (MalformedURLException e) {
  42. // The filesystem url wasn't recognized
  43. }
  44. Для преобразования пути к `cdvfile://` URL-адрес:
  45. import cordova-plugin-file.LocalFilesystemURL;
  46. // Get a LocalFilesystemURL object for a device path,
  47. // or null if it cannot be represented as a cdvfile URL.
  48. LocalFilesystemURL url = filePlugin.filesystemURLforLocalPath(path);
  49. // Get the string representation of the URL object
  50. String cdvfileURL = url.toString();
  51. Если ваш плагин создает файл, и вы хотите вернуть объект FileEntry для него, используйте файл плагина:
  52. // Return a JSON structure suitable for returning to JavaScript,
  53. // or null if this file is not representable as a cdvfile URL.
  54. JSONObject entry = filePlugin.getEntryForFile(file);
  55. #### iOS
  56. Кордова на iOS не использовать те же `CordovaResourceApi` понятие, как Android. На iOS вы должны использовать файл плагин для преобразования URL-адреса и пути файловой системы.
  57. // Get a CDVFilesystem URL object from a URL string
  58. CDVFilesystemURL* url = [CDVFilesystemURL fileSystemURLWithString:cdvfileURL];
  59. // Get a path for the URL object, or nil if it cannot be mapped to a file
  60. NSString* path = [filePlugin filesystemPathForURL:url];
  61. // Get a CDVFilesystem URL object for a device path, or
  62. // nil if it cannot be represented as a cdvfile URL.
  63. CDVFilesystemURL* url = [filePlugin fileSystemURLforLocalPath:path];
  64. // Get the string representation of the URL object
  65. NSString* cdvfileURL = [url absoluteString];
  66. Если ваш плагин создает файл, и вы хотите вернуть объект FileEntry для него, используйте файл плагина:
  67. // Get a CDVFilesystem URL object for a device path, or
  68. // nil if it cannot be represented as a cdvfile URL.
  69. CDVFilesystemURL* url = [filePlugin fileSystemURLforLocalPath:path];
  70. // Get a structure to return to JavaScript
  71. NSDictionary* entry = [filePlugin makeEntryForLocalURL:url]
  72. #### JavaScript
  73. В JavaScript, чтобы получить `cdvfile://` URL от объекта DirectoryEntry или FileEntry, просто позвоните `.toURL()` на него:
  74. var cdvfileURL = entry.toURL();
  75. В плагин обработчики ответ для преобразования из возвращаемой структуры FileEntry объект фактического вступления, код обработчика следует импортировать файл плагина и создайте новый объект:
  76. // create appropriate Entry object
  77. var entry;
  78. if (entryStruct.isDirectory) {
  79. entry = new DirectoryEntry(entryStruct.name, entryStruct.fullPath, new FileSystem(entryStruct.filesystemName));
  80. } else {
  81. entry = new FileEntry(entryStruct.name, entryStruct.fullPath, new FileSystem(entryStruct.filesystemName));
  82. }