FileStorageUtils.java 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author David A. Velasco
  5. * Copyright (C) 2016 ownCloud Inc.
  6. *
  7. * This program is free software: you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2,
  9. * as published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.owncloud.android.utils;
  20. import android.Manifest;
  21. import android.accounts.Account;
  22. import android.annotation.TargetApi;
  23. import android.app.Activity;
  24. import android.content.Context;
  25. import android.content.pm.PackageManager;
  26. import android.net.Uri;
  27. import android.os.Build;
  28. import android.os.Environment;
  29. import android.text.TextUtils;
  30. import android.util.Log;
  31. import android.webkit.MimeTypeMap;
  32. import com.owncloud.android.MainApp;
  33. import com.owncloud.android.datamodel.FileDataStorageManager;
  34. import com.owncloud.android.datamodel.OCFile;
  35. import com.owncloud.android.lib.common.utils.Log_OC;
  36. import com.owncloud.android.lib.resources.files.model.RemoteFile;
  37. import java.io.File;
  38. import java.io.FileInputStream;
  39. import java.io.FileOutputStream;
  40. import java.io.IOException;
  41. import java.io.InputStream;
  42. import java.io.OutputStream;
  43. import java.text.DateFormat;
  44. import java.text.SimpleDateFormat;
  45. import java.util.ArrayList;
  46. import java.util.Arrays;
  47. import java.util.Collections;
  48. import java.util.Date;
  49. import java.util.List;
  50. import java.util.Locale;
  51. import java.util.TimeZone;
  52. import androidx.core.app.ActivityCompat;
  53. import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
  54. import static android.os.Build.VERSION.SDK_INT;
  55. /**
  56. * Static methods to help in access to local file system.
  57. */
  58. public final class FileStorageUtils {
  59. private static final String TAG = FileStorageUtils.class.getSimpleName();
  60. private static final String PATTERN_YYYY_MM = "yyyy/MM/";
  61. private static final String DEFAULT_FALLBACK_STORAGE_PATH = "/storage/sdcard0";
  62. private FileStorageUtils() {
  63. // utility class -> private constructor
  64. }
  65. /**
  66. * Get local owncloud storage path for accountName.
  67. */
  68. public static String getSavePath(String accountName) {
  69. return MainApp.getStoragePath()
  70. + File.separator
  71. + MainApp.getDataFolder()
  72. + File.separator
  73. + Uri.encode(accountName, "@");
  74. // URL encoding is an 'easy fix' to overcome that NTFS and FAT32 don't allow ":" in file names,
  75. // that can be in the accountName since 0.1.190B
  76. }
  77. /**
  78. * Get local path where OCFile file is to be stored after upload. That is,
  79. * corresponding local path (in local owncloud storage) to remote uploaded
  80. * file.
  81. */
  82. public static String getDefaultSavePathFor(String accountName, OCFile file) {
  83. return getSavePath(accountName) + file.getDecryptedRemotePath();
  84. }
  85. /**
  86. * Get absolute path to tmp folder inside datafolder in sd-card for given accountName.
  87. */
  88. public static String getTemporalPath(String accountName) {
  89. return MainApp.getStoragePath()
  90. + File.separator
  91. + MainApp.getDataFolder()
  92. + File.separator
  93. + "tmp"
  94. + File.separator
  95. + Uri.encode(accountName, "@");
  96. // URL encoding is an 'easy fix' to overcome that NTFS and FAT32 don't allow ":" in file names,
  97. // that can be in the accountName since 0.1.190B
  98. }
  99. /**
  100. * Get absolute path to tmp folder inside app folder for given accountName.
  101. */
  102. public static String getInternalTemporalPath(String accountName, Context context) {
  103. return context.getFilesDir()
  104. + File.separator
  105. + MainApp.getDataFolder()
  106. + File.separator
  107. + "tmp"
  108. + File.separator
  109. + Uri.encode(accountName, "@");
  110. // URL encoding is an 'easy fix' to overcome that NTFS and FAT32 don't allow ":" in file names,
  111. // that can be in the accountName since 0.1.190B
  112. }
  113. /**
  114. * Optimistic number of bytes available on sd-card. accountName is ignored.
  115. *
  116. * @return Optimistic number of available bytes (can be less)
  117. */
  118. public static long getUsableSpace() {
  119. File savePath = new File(MainApp.getStoragePath());
  120. return savePath.getUsableSpace();
  121. }
  122. /**
  123. * Returns the a string like 2016/08/ for the passed date. If date is 0 an empty
  124. * string is returned
  125. *
  126. * @param date: date in microseconds since 1st January 1970
  127. * @return string: yyyy/mm/
  128. */
  129. private static String getSubPathFromDate(long date, Locale currentLocale) {
  130. if (date == 0) {
  131. return "";
  132. }
  133. Date d = new Date(date);
  134. DateFormat df = new SimpleDateFormat(PATTERN_YYYY_MM, currentLocale);
  135. df.setTimeZone(TimeZone.getTimeZone(TimeZone.getDefault().getID()));
  136. return df.format(d);
  137. }
  138. /**
  139. * Returns the InstantUploadFilePath on the nextcloud instance
  140. *
  141. * @param dateTaken: Time in milliseconds since 1970 when the picture was taken.
  142. * @return instantUpload path, eg. /Camera/2017/01/fileName
  143. */
  144. public static String getInstantUploadFilePath(File file,
  145. Locale current,
  146. String remotePath,
  147. String syncedFolderLocalPath,
  148. long dateTaken,
  149. Boolean subfolderByDate) {
  150. String subfolderByDatePath = "";
  151. if (subfolderByDate) {
  152. subfolderByDatePath = getSubPathFromDate(dateTaken, current);
  153. }
  154. String relativeSubfolderPath = new File(file.getAbsolutePath().replace(syncedFolderLocalPath, ""))
  155. .getParentFile().getAbsolutePath();
  156. // Path must be normalized; otherwise the next RefreshFolderOperation has a mismatch and deletes the local file.
  157. return (remotePath +
  158. OCFile.PATH_SEPARATOR +
  159. subfolderByDatePath +
  160. OCFile.PATH_SEPARATOR +
  161. relativeSubfolderPath +
  162. OCFile.PATH_SEPARATOR +
  163. file.getName())
  164. .replaceAll(OCFile.PATH_SEPARATOR + "+", OCFile.PATH_SEPARATOR);
  165. }
  166. public static String getParentPath(String remotePath) {
  167. String parentPath = new File(remotePath).getParent();
  168. parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ? parentPath : parentPath + OCFile.PATH_SEPARATOR;
  169. return parentPath;
  170. }
  171. /**
  172. * Creates and populates a new {@link OCFile} object with the data read from the server.
  173. *
  174. * @param remote remote file read from the server (remote file or folder).
  175. * @return New OCFile instance representing the remote resource described by remote.
  176. */
  177. public static OCFile fillOCFile(RemoteFile remote) {
  178. OCFile file = new OCFile(remote.getRemotePath());
  179. file.setCreationTimestamp(remote.getCreationTimestamp());
  180. if (MimeType.DIRECTORY.equalsIgnoreCase(remote.getMimeType())) {
  181. file.setFileLength(remote.getSize());
  182. } else {
  183. file.setFileLength(remote.getLength());
  184. }
  185. file.setMimeType(remote.getMimeType());
  186. file.setModificationTimestamp(remote.getModifiedTimestamp());
  187. file.setEtag(remote.getEtag());
  188. file.setPermissions(remote.getPermissions());
  189. file.setRemoteId(remote.getRemoteId());
  190. file.setFavorite(remote.isFavorite());
  191. if (file.isFolder()) {
  192. file.setEncrypted(remote.isEncrypted());
  193. }
  194. file.setMountType(remote.getMountType());
  195. file.setPreviewAvailable(remote.isHasPreview());
  196. file.setUnreadCommentsCount(remote.getUnreadCommentsCount());
  197. file.setOwnerId(remote.getOwnerId());
  198. file.setOwnerDisplayName(remote.getOwnerDisplayName());
  199. file.setNote(remote.getNote());
  200. file.setSharees(new ArrayList<>(Arrays.asList(remote.getSharees())));
  201. file.setRichWorkspace(remote.getRichWorkspace());
  202. return file;
  203. }
  204. /**
  205. * Creates and populates a new {@link RemoteFile} object with the data read from an {@link OCFile}.
  206. *
  207. * @param ocFile OCFile
  208. * @return New RemoteFile instance representing the resource described by ocFile.
  209. */
  210. public static RemoteFile fillRemoteFile(OCFile ocFile) {
  211. RemoteFile file = new RemoteFile(ocFile.getRemotePath());
  212. file.setCreationTimestamp(ocFile.getCreationTimestamp());
  213. file.setLength(ocFile.getFileLength());
  214. file.setMimeType(ocFile.getMimeType());
  215. file.setModifiedTimestamp(ocFile.getModificationTimestamp());
  216. file.setEtag(ocFile.getEtag());
  217. file.setPermissions(ocFile.getPermissions());
  218. file.setRemoteId(ocFile.getRemoteId());
  219. file.setFavorite(ocFile.isFavorite());
  220. return file;
  221. }
  222. public static List<OCFile> sortOcFolderDescDateModifiedWithoutFavoritesFirst(List<OCFile> files) {
  223. final int multiplier = -1;
  224. Collections.sort(files, (o1, o2) -> {
  225. @SuppressFBWarnings(value = "Bx", justification = "Would require stepping up API level")
  226. Long obj1 = o1.getModificationTimestamp();
  227. return multiplier * obj1.compareTo(o2.getModificationTimestamp());
  228. });
  229. return files;
  230. }
  231. public static List<OCFile> sortOcFolderDescDateModified(List<OCFile> files) {
  232. files = sortOcFolderDescDateModifiedWithoutFavoritesFirst(files);
  233. return FileSortOrder.sortCloudFilesByFavourite(files);
  234. }
  235. /**
  236. * Local Folder size.
  237. *
  238. * @param dir File
  239. * @return Size in bytes
  240. */
  241. public static long getFolderSize(File dir) {
  242. if (dir.exists() && dir.isDirectory()) {
  243. File[] files = dir.listFiles();
  244. if (files != null) {
  245. long result = 0;
  246. for (File f : files) {
  247. if (f.isDirectory()) {
  248. result += getFolderSize(f);
  249. } else {
  250. result += f.length();
  251. }
  252. }
  253. return result;
  254. }
  255. }
  256. return 0;
  257. }
  258. /**
  259. * Mimetype String of a file.
  260. *
  261. * @param path the file path
  262. * @return the mime type based on the file name
  263. */
  264. public static String getMimeTypeFromName(String path) {
  265. String extension = "";
  266. int pos = path.lastIndexOf('.');
  267. if (pos >= 0) {
  268. extension = path.substring(pos + 1);
  269. }
  270. String result = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension.toLowerCase(Locale.ROOT));
  271. return (result != null) ? result : "";
  272. }
  273. /**
  274. * Scans the default location for saving local copies of files searching for
  275. * a 'lost' file with the same full name as the {@link OCFile} received as
  276. * parameter.
  277. *
  278. * This method helps to keep linked local copies of the files when the app is uninstalled, and then
  279. * reinstalled in the device. OR after the cache of the app was deleted in system settings.
  280. *
  281. * The method is assuming that all the local changes in the file where synchronized in the past. This is dangerous,
  282. * but assuming the contrary could lead to massive unnecessary synchronizations of downloaded file after deleting
  283. * the app cache.
  284. *
  285. * This should be changed in the near future to avoid any chance of data loss, but we need to add some options
  286. * to limit hard automatic synchronizations to wifi, unless the user wants otherwise.
  287. *
  288. * @param file File to associate a possible 'lost' local file.
  289. * @param account Account holding file.
  290. */
  291. public static void searchForLocalFileInDefaultPath(OCFile file, Account account) {
  292. if (file.getStoragePath() == null && !file.isFolder()) {
  293. File f = new File(FileStorageUtils.getDefaultSavePathFor(account.name, file));
  294. if (f.exists()) {
  295. file.setStoragePath(f.getAbsolutePath());
  296. file.setLastSyncDateForData(f.lastModified());
  297. }
  298. }
  299. }
  300. @SuppressFBWarnings(value="OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE",
  301. justification="False-positive on the output stream")
  302. public static boolean copyFile(File src, File target) {
  303. boolean ret = true;
  304. InputStream in = null;
  305. OutputStream out = null;
  306. try {
  307. in = new FileInputStream(src);
  308. out = new FileOutputStream(target);
  309. byte[] buf = new byte[1024];
  310. int len;
  311. while ((len = in.read(buf)) > 0) {
  312. out.write(buf, 0, len);
  313. }
  314. } catch (IOException ex) {
  315. ret = false;
  316. } finally {
  317. if (in != null) {
  318. try {
  319. in.close();
  320. } catch (IOException e) {
  321. Log_OC.e(TAG, "Error closing input stream during copy", e);
  322. }
  323. }
  324. if (out != null) {
  325. try {
  326. out.close();
  327. } catch (IOException e) {
  328. Log_OC.e(TAG, "Error closing output stream during copy", e);
  329. }
  330. }
  331. }
  332. return ret;
  333. }
  334. public static boolean moveFile(File sourceFile, File targetFile) {
  335. if (copyFile(sourceFile, targetFile)) {
  336. return sourceFile.delete();
  337. } else {
  338. return false;
  339. }
  340. }
  341. public static boolean copyDirs(File sourceFolder, File targetFolder) {
  342. if (!targetFolder.mkdirs()) {
  343. return false;
  344. }
  345. for (File f : sourceFolder.listFiles()) {
  346. if (f.isDirectory()) {
  347. if (!copyDirs(f, new File(targetFolder, f.getName()))) {
  348. return false;
  349. }
  350. } else if (!FileStorageUtils.copyFile(f, new File(targetFolder, f.getName()))) {
  351. return false;
  352. }
  353. }
  354. return true;
  355. }
  356. public static void deleteRecursively(File file, FileDataStorageManager storageManager) {
  357. if (file.isDirectory()) {
  358. for (File child : file.listFiles()) {
  359. deleteRecursively(child, storageManager);
  360. }
  361. }
  362. storageManager.deleteFileInMediaScan(file.getAbsolutePath());
  363. file.delete();
  364. }
  365. public static boolean deleteRecursive(File file) {
  366. boolean res = true;
  367. if (file.isDirectory()) {
  368. for (File c : file.listFiles()) {
  369. res = deleteRecursive(c) && res;
  370. }
  371. }
  372. return file.delete() && res;
  373. }
  374. public static void checkIfFileFinishedSaving(OCFile file) {
  375. long lastModified = 0;
  376. long lastSize = 0;
  377. File realFile = new File(file.getStoragePath());
  378. if (realFile.lastModified() != file.getModificationTimestamp() && realFile.length() != file.getFileLength()) {
  379. while (realFile.lastModified() != lastModified && realFile.length() != lastSize) {
  380. lastModified = realFile.lastModified();
  381. lastSize = realFile.length();
  382. try {
  383. Thread.sleep(1000);
  384. } catch (InterruptedException e) {
  385. Log.d(TAG, "Failed to sleep for a bit");
  386. }
  387. }
  388. }
  389. }
  390. /**
  391. * Checks and returns true if file itself or ancestor is encrypted
  392. *
  393. * @param file file to check
  394. * @param storageManager up to date reference to storage manager
  395. * @return true if file itself or ancestor is encrypted
  396. */
  397. public static boolean checkEncryptionStatus(OCFile file, FileDataStorageManager storageManager) {
  398. if (file.isEncrypted()) {
  399. return true;
  400. }
  401. while (!OCFile.ROOT_PATH.equals(file.getRemotePath())) {
  402. if (file.isEncrypted()) {
  403. return true;
  404. }
  405. file = storageManager.getFileById(file.getParentId());
  406. }
  407. return false;
  408. }
  409. /**
  410. * Taken from https://github.com/TeamAmaze/AmazeFileManager/blob/54652548223d151f089bdc6fc868b13ca5ab20a9/app/src
  411. * /main/java/com/amaze/filemanager/activities/MainActivity.java#L620 on 14.02.2019
  412. */
  413. @SuppressFBWarnings(value = "DMI_HARDCODED_ABSOLUTE_FILENAME",
  414. justification = "Default Android fallback storage path")
  415. public static List<String> getStorageDirectories(Activity activity) {
  416. // Final set of paths
  417. final List<String> rv = new ArrayList<>();
  418. // Primary physical SD-CARD (not emulated)
  419. final String rawExternalStorage = System.getenv("EXTERNAL_STORAGE");
  420. // All Secondary SD-CARDs (all exclude primary) separated by ":"
  421. final String rawSecondaryStoragesStr = System.getenv("SECONDARY_STORAGE");
  422. // Primary emulated SD-CARD
  423. final String rawEmulatedStorageTarget = System.getenv("EMULATED_STORAGE_TARGET");
  424. if (TextUtils.isEmpty(rawEmulatedStorageTarget)) {
  425. // Device has physical external storage; use plain paths.
  426. if (TextUtils.isEmpty(rawExternalStorage)) {
  427. // EXTERNAL_STORAGE undefined; falling back to default.
  428. // Check for actual existence of the directory before adding to list
  429. if (new File(DEFAULT_FALLBACK_STORAGE_PATH).exists()) {
  430. rv.add(DEFAULT_FALLBACK_STORAGE_PATH);
  431. } else {
  432. //We know nothing else, use Environment's fallback
  433. rv.add(Environment.getExternalStorageDirectory().getAbsolutePath());
  434. }
  435. } else {
  436. rv.add(rawExternalStorage);
  437. }
  438. } else {
  439. // Device has emulated storage; external storage paths should have
  440. // userId burned into them.
  441. final String rawUserId;
  442. if (SDK_INT < Build.VERSION_CODES.JELLY_BEAN_MR1) {
  443. rawUserId = "";
  444. } else {
  445. final String path = Environment.getExternalStorageDirectory().getAbsolutePath();
  446. final String[] folders = OCFile.PATH_SEPARATOR.split(path);
  447. final String lastFolder = folders[folders.length - 1];
  448. boolean isDigit = false;
  449. try {
  450. Integer.valueOf(lastFolder);
  451. isDigit = true;
  452. } catch (NumberFormatException ignored) {
  453. }
  454. rawUserId = isDigit ? lastFolder : "";
  455. }
  456. // /storage/emulated/0[1,2,...]
  457. if (TextUtils.isEmpty(rawUserId)) {
  458. rv.add(rawEmulatedStorageTarget);
  459. } else {
  460. rv.add(rawEmulatedStorageTarget + File.separator + rawUserId);
  461. }
  462. }
  463. // Add all secondary storages
  464. if (!TextUtils.isEmpty(rawSecondaryStoragesStr)) {
  465. // All Secondary SD-CARDs splited into array
  466. final String[] rawSecondaryStorages = rawSecondaryStoragesStr.split(File.pathSeparator);
  467. Collections.addAll(rv, rawSecondaryStorages);
  468. }
  469. if (SDK_INT >= Build.VERSION_CODES.M && checkStoragePermission(activity)) {
  470. rv.clear();
  471. }
  472. if (SDK_INT >= Build.VERSION_CODES.KITKAT) {
  473. String strings[] = getExtSdCardPathsForActivity(activity);
  474. File f;
  475. for (String s : strings) {
  476. f = new File(s);
  477. if (!rv.contains(s) && canListFiles(f)) {
  478. rv.add(s);
  479. }
  480. }
  481. }
  482. return rv;
  483. }
  484. /**
  485. * Taken from https://github.com/TeamAmaze/AmazeFileManager/blob/d11e0d2874c6067910e58e059859431a31ad6aee/app/src
  486. * /main/java/com/amaze/filemanager/activities/superclasses/PermissionsActivity.java#L47 on
  487. * 14.02.2019
  488. */
  489. private static boolean checkStoragePermission(Activity activity) {
  490. // Verify that all required contact permissions have been granted.
  491. return ActivityCompat.checkSelfPermission(activity, Manifest.permission.WRITE_EXTERNAL_STORAGE)
  492. == PackageManager.PERMISSION_GRANTED;
  493. }
  494. /**
  495. * Taken from https://github.com/TeamAmaze/AmazeFileManager/blob/616f2a696823ab0e64ea7a017602dc08e783162e/app/src
  496. * /main/java/com/amaze/filemanager/filesystem/FileUtil.java#L764 on 14.02.2019
  497. */
  498. @TargetApi(Build.VERSION_CODES.KITKAT)
  499. private static String[] getExtSdCardPathsForActivity(Context context) {
  500. List<String> paths = new ArrayList<>();
  501. for (File file : context.getExternalFilesDirs("external")) {
  502. if (file != null) {
  503. int index = file.getAbsolutePath().lastIndexOf("/Android/data");
  504. if (index < 0) {
  505. Log_OC.w(TAG, "Unexpected external file dir: " + file.getAbsolutePath());
  506. } else {
  507. String path = file.getAbsolutePath().substring(0, index);
  508. try {
  509. path = new File(path).getCanonicalPath();
  510. } catch (IOException e) {
  511. // Keep non-canonical path.
  512. }
  513. paths.add(path);
  514. }
  515. }
  516. }
  517. if (paths.isEmpty()) {
  518. paths.add("/storage/sdcard1");
  519. }
  520. return paths.toArray(new String[0]);
  521. }
  522. /**
  523. * Taken from https://github.com/TeamAmaze/AmazeFileManager/blob/9cf1fd5ff1653c692cb54cf6bc71b572c19a11cd/app/src
  524. * /main/java/com/amaze/filemanager/utils/files/FileUtils.java#L754 on 14.02.2019
  525. */
  526. private static boolean canListFiles(File f) {
  527. return f.canRead() && f.isDirectory();
  528. }
  529. }