FilesSyncHelper.java 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Mario Danic
  5. * @author Chris Narkiewicz
  6. *
  7. * Copyright (C) 2017 Mario Danic
  8. * Copyright (C) 2017 Nextcloud
  9. * Copyright (C) 2019 Chris Narkiewicz <hello@ezaquarii.com>
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  13. * License as published by the Free Software Foundation; either
  14. * version 3 of the License, or any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public
  22. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. */
  24. package com.owncloud.android.utils;
  25. import android.accounts.Account;
  26. import android.app.job.JobInfo;
  27. import android.app.job.JobScheduler;
  28. import android.content.ComponentName;
  29. import android.content.ContentResolver;
  30. import android.content.Context;
  31. import android.database.Cursor;
  32. import android.net.Uri;
  33. import android.os.Build;
  34. import android.provider.MediaStore;
  35. import android.text.TextUtils;
  36. import android.util.Log;
  37. import com.evernote.android.job.JobManager;
  38. import com.evernote.android.job.JobRequest;
  39. import com.evernote.android.job.util.Device;
  40. import com.nextcloud.client.account.UserAccountManager;
  41. import com.nextcloud.client.preferences.AppPreferences;
  42. import com.owncloud.android.MainApp;
  43. import com.owncloud.android.datamodel.ArbitraryDataProvider;
  44. import com.owncloud.android.datamodel.FilesystemDataProvider;
  45. import com.owncloud.android.datamodel.MediaFolderType;
  46. import com.owncloud.android.datamodel.SyncedFolder;
  47. import com.owncloud.android.datamodel.SyncedFolderProvider;
  48. import com.owncloud.android.datamodel.UploadsStorageManager;
  49. import com.owncloud.android.db.OCUpload;
  50. import com.owncloud.android.files.services.FileUploader;
  51. import com.owncloud.android.jobs.FilesSyncJob;
  52. import com.owncloud.android.jobs.NContentObserverJob;
  53. import com.owncloud.android.jobs.OfflineSyncJob;
  54. import org.lukhnos.nnio.file.FileVisitResult;
  55. import org.lukhnos.nnio.file.Files;
  56. import org.lukhnos.nnio.file.Path;
  57. import org.lukhnos.nnio.file.Paths;
  58. import org.lukhnos.nnio.file.SimpleFileVisitor;
  59. import org.lukhnos.nnio.file.attribute.BasicFileAttributes;
  60. import java.io.File;
  61. import java.io.IOException;
  62. import java.util.Set;
  63. import java.util.concurrent.TimeUnit;
  64. import androidx.annotation.RequiresApi;
  65. import static com.owncloud.android.datamodel.OCFile.PATH_SEPARATOR;
  66. /**
  67. * Various utilities that make auto upload tick
  68. */
  69. public final class FilesSyncHelper {
  70. public static final String TAG = "FileSyncHelper";
  71. public static final String GLOBAL = "global";
  72. public static final String SYNCEDFOLDERINITIATED = "syncedFolderIntitiated_";
  73. public static final int ContentSyncJobId = 315;
  74. private FilesSyncHelper() {
  75. // utility class -> private constructor
  76. }
  77. public static void insertAllDBEntriesForSyncedFolder(SyncedFolder syncedFolder) {
  78. final Context context = MainApp.getAppContext();
  79. final ContentResolver contentResolver = context.getContentResolver();
  80. ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(contentResolver);
  81. Long currentTime = System.currentTimeMillis();
  82. double currentTimeInSeconds = currentTime / 1000.0;
  83. String currentTimeString = Long.toString((long) currentTimeInSeconds);
  84. String syncedFolderInitiatedKey = SYNCEDFOLDERINITIATED + syncedFolder.getId();
  85. boolean dryRun = TextUtils.isEmpty(arbitraryDataProvider.getValue
  86. (GLOBAL, syncedFolderInitiatedKey));
  87. if (MediaFolderType.IMAGE == syncedFolder.getType()) {
  88. if (dryRun) {
  89. arbitraryDataProvider.storeOrUpdateKeyValue(GLOBAL, syncedFolderInitiatedKey,
  90. currentTimeString);
  91. } else {
  92. FilesSyncHelper.insertContentIntoDB(android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI
  93. , syncedFolder);
  94. FilesSyncHelper.insertContentIntoDB(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
  95. syncedFolder);
  96. }
  97. } else if (MediaFolderType.VIDEO == syncedFolder.getType()) {
  98. if (dryRun) {
  99. arbitraryDataProvider.storeOrUpdateKeyValue(GLOBAL, syncedFolderInitiatedKey,
  100. currentTimeString);
  101. } else {
  102. FilesSyncHelper.insertContentIntoDB(android.provider.MediaStore.Video.Media.INTERNAL_CONTENT_URI,
  103. syncedFolder);
  104. FilesSyncHelper.insertContentIntoDB(MediaStore.Video.Media.EXTERNAL_CONTENT_URI,
  105. syncedFolder);
  106. }
  107. } else {
  108. try {
  109. if (dryRun) {
  110. arbitraryDataProvider.storeOrUpdateKeyValue(GLOBAL, syncedFolderInitiatedKey,
  111. currentTimeString);
  112. } else {
  113. FilesystemDataProvider filesystemDataProvider = new FilesystemDataProvider(contentResolver);
  114. Path path = Paths.get(syncedFolder.getLocalPath());
  115. String dateInitiated = arbitraryDataProvider.getValue(GLOBAL,
  116. syncedFolderInitiatedKey);
  117. Files.walkFileTree(path, new SimpleFileVisitor<Path>() {
  118. @Override
  119. public FileVisitResult visitFile(Path path, BasicFileAttributes attrs) {
  120. File file = path.toFile();
  121. if (attrs.lastModifiedTime().toMillis() >= Long.parseLong(dateInitiated) * 1000) {
  122. filesystemDataProvider.storeOrUpdateFileValue(path.toAbsolutePath().toString(),
  123. attrs.lastModifiedTime().toMillis(), file.isDirectory(), syncedFolder);
  124. }
  125. return FileVisitResult.CONTINUE;
  126. }
  127. @Override
  128. public FileVisitResult visitFileFailed(Path file, IOException exc) {
  129. return FileVisitResult.CONTINUE;
  130. }
  131. });
  132. }
  133. } catch (IOException e) {
  134. Log.e(TAG, "Something went wrong while indexing files for auto upload " + e.getLocalizedMessage());
  135. }
  136. }
  137. }
  138. public static void insertAllDBEntries(AppPreferences preferences, boolean skipCustom) {
  139. final Context context = MainApp.getAppContext();
  140. final ContentResolver contentResolver = context.getContentResolver();
  141. SyncedFolderProvider syncedFolderProvider = new SyncedFolderProvider(contentResolver,
  142. preferences);
  143. for (SyncedFolder syncedFolder : syncedFolderProvider.getSyncedFolders()) {
  144. if (syncedFolder.isEnabled() && (MediaFolderType.CUSTOM != syncedFolder.getType() || !skipCustom)) {
  145. insertAllDBEntriesForSyncedFolder(syncedFolder);
  146. }
  147. }
  148. }
  149. private static void insertContentIntoDB(Uri uri, SyncedFolder syncedFolder) {
  150. final Context context = MainApp.getAppContext();
  151. final ContentResolver contentResolver = context.getContentResolver();
  152. ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(contentResolver);
  153. Cursor cursor;
  154. int column_index_data;
  155. int column_index_date_modified;
  156. final FilesystemDataProvider filesystemDataProvider = new FilesystemDataProvider(contentResolver);
  157. String contentPath;
  158. boolean isFolder;
  159. String[] projection = {MediaStore.MediaColumns.DATA, MediaStore.MediaColumns.DATE_MODIFIED};
  160. String path = syncedFolder.getLocalPath();
  161. if (!path.endsWith(PATH_SEPARATOR)) {
  162. path = path + PATH_SEPARATOR;
  163. }
  164. path = path + "%";
  165. String syncedFolderInitiatedKey = SYNCEDFOLDERINITIATED + syncedFolder.getId();
  166. String dateInitiated = arbitraryDataProvider.getValue(GLOBAL, syncedFolderInitiatedKey);
  167. cursor = context.getContentResolver().query(uri, projection, MediaStore.MediaColumns.DATA + " LIKE ?",
  168. new String[]{path}, null);
  169. if (cursor != null) {
  170. column_index_data = cursor.getColumnIndexOrThrow(MediaStore.MediaColumns.DATA);
  171. column_index_date_modified = cursor.getColumnIndexOrThrow(MediaStore.MediaColumns.DATE_MODIFIED);
  172. while (cursor.moveToNext()) {
  173. contentPath = cursor.getString(column_index_data);
  174. isFolder = new File(contentPath).isDirectory();
  175. if (cursor.getLong(column_index_date_modified) >= Long.parseLong(dateInitiated)) {
  176. filesystemDataProvider.storeOrUpdateFileValue(contentPath,
  177. cursor.getLong(column_index_date_modified), isFolder, syncedFolder);
  178. }
  179. }
  180. cursor.close();
  181. }
  182. }
  183. public static void restartJobsIfNeeded(UploadsStorageManager uploadsStorageManager, UserAccountManager accountManager) {
  184. final Context context = MainApp.getAppContext();
  185. FileUploader.UploadRequester uploadRequester = new FileUploader.UploadRequester();
  186. boolean accountExists;
  187. OCUpload[] failedUploads = uploadsStorageManager.getFailedUploads();
  188. for (OCUpload failedUpload : failedUploads) {
  189. accountExists = false;
  190. // check if accounts still exists
  191. for (Account account : accountManager.getAccounts()) {
  192. if (account.name.equals(failedUpload.getAccountName())) {
  193. accountExists = true;
  194. break;
  195. }
  196. }
  197. if (!accountExists) {
  198. uploadsStorageManager.removeUpload(failedUpload);
  199. }
  200. }
  201. new Thread(() -> {
  202. if (!Device.getNetworkType(context).equals(JobRequest.NetworkType.ANY) &&
  203. !ConnectivityUtils.isInternetWalled(context)) {
  204. uploadRequester.retryFailedUploads(context, null, uploadsStorageManager, null);
  205. }
  206. }).start();
  207. }
  208. public static void scheduleFilesSyncIfNeeded(Context context) {
  209. // always run this because it also allows us to perform retries of manual uploads
  210. new JobRequest.Builder(FilesSyncJob.TAG)
  211. .setPeriodic(900000L, 300000L)
  212. .setUpdateCurrent(true)
  213. .build()
  214. .schedule();
  215. if (context != null && Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
  216. scheduleJobOnN();
  217. }
  218. }
  219. public static void scheduleOfflineSyncIfNeeded() {
  220. Set<JobRequest> jobRequests = JobManager.instance().getAllJobRequestsForTag(OfflineSyncJob.TAG);
  221. if (jobRequests.isEmpty()) {
  222. new JobRequest.Builder(OfflineSyncJob.TAG)
  223. .setPeriodic(TimeUnit.MINUTES.toMillis(15), TimeUnit.MINUTES.toMillis(5))
  224. .setUpdateCurrent(false)
  225. .build()
  226. .schedule();
  227. }
  228. }
  229. @RequiresApi(api = Build.VERSION_CODES.N)
  230. public static void scheduleJobOnN() {
  231. JobScheduler jobScheduler = MainApp.getAppContext().getSystemService(JobScheduler.class);
  232. if (jobScheduler != null) {
  233. JobInfo.Builder builder = new JobInfo.Builder(ContentSyncJobId, new ComponentName(MainApp.getAppContext(),
  234. NContentObserverJob.class.getName()));
  235. builder.addTriggerContentUri(new JobInfo.TriggerContentUri(android.provider.MediaStore.
  236. Images.Media.INTERNAL_CONTENT_URI,
  237. JobInfo.TriggerContentUri.FLAG_NOTIFY_FOR_DESCENDANTS));
  238. builder.addTriggerContentUri(new JobInfo.TriggerContentUri(MediaStore.
  239. Images.Media.EXTERNAL_CONTENT_URI,
  240. JobInfo.TriggerContentUri.FLAG_NOTIFY_FOR_DESCENDANTS));
  241. builder.addTriggerContentUri(new JobInfo.TriggerContentUri(android.provider.MediaStore.
  242. Video.Media.INTERNAL_CONTENT_URI,
  243. JobInfo.TriggerContentUri.FLAG_NOTIFY_FOR_DESCENDANTS));
  244. builder.addTriggerContentUri(new JobInfo.TriggerContentUri(MediaStore.
  245. Video.Media.EXTERNAL_CONTENT_URI,
  246. JobInfo.TriggerContentUri.FLAG_NOTIFY_FOR_DESCENDANTS));
  247. builder.setTriggerContentMaxDelay(1500);
  248. jobScheduler.schedule(builder.build());
  249. }
  250. }
  251. }