Nessuna descrizione

FileSystem.js 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. *
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. *
  20. */
  21. FILESYSTEM_PROTOCOL = 'cdvfile'; // eslint-disable-line no-undef
  22. module.exports = {
  23. __format__: function (fullPath, nativeUrl) {
  24. var path;
  25. var contentUrlMatch = /^content:\/\//.exec(nativeUrl);
  26. if (contentUrlMatch) {
  27. // When available, use the path from a native content URL, which was already encoded by Android.
  28. // This is necessary because JavaScript's encodeURI() does not encode as many characters as
  29. // Android, which can result in permission exceptions when the encoding of a content URI
  30. // doesn't match the string for which permission was originally granted.
  31. path = nativeUrl.substring(contentUrlMatch[0].length - 1);
  32. } else {
  33. path = FileSystem.encodeURIPath(fullPath); // eslint-disable-line no-undef
  34. if (!/^\//.test(path)) {
  35. path = '/' + path;
  36. }
  37. var m = /\?.*/.exec(nativeUrl);
  38. if (m) {
  39. path += m[0];
  40. }
  41. }
  42. return FILESYSTEM_PROTOCOL + '://localhost/' + this.name + path; // eslint-disable-line no-undef
  43. }
  44. };