NContentObserverJob.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Mario Danic
  5. * Copyright (C) 2017 Mario Danic
  6. * Copyright (C) 2017 Nextcloud
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  10. * License as published by the Free Software Foundation; either
  11. * version 3 of the License, or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  17. *
  18. * You should have received a copy of the GNU Affero General Public
  19. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. package com.owncloud.android.jobs;
  22. import android.app.job.JobParameters;
  23. import android.app.job.JobService;
  24. import android.os.Build;
  25. import com.evernote.android.job.JobRequest;
  26. import com.evernote.android.job.util.support.PersistableBundleCompat;
  27. import com.nextcloud.client.device.PowerManagementService;
  28. import com.nextcloud.client.preferences.AppPreferences;
  29. import com.owncloud.android.datamodel.SyncedFolderProvider;
  30. import com.owncloud.android.utils.FilesSyncHelper;
  31. import javax.inject.Inject;
  32. import androidx.annotation.RequiresApi;
  33. import dagger.android.AndroidInjection;
  34. /*
  35. Job that triggers new FilesSyncJob in case new photo or video were detected
  36. and starts a job to find new media folders
  37. */
  38. @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
  39. public class NContentObserverJob extends JobService {
  40. @Inject PowerManagementService powerManagementService;
  41. @Inject AppPreferences preferences;
  42. @Override
  43. public void onCreate() {
  44. super.onCreate();
  45. AndroidInjection.inject(this);
  46. }
  47. @Override
  48. public boolean onStartJob(JobParameters params) {
  49. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
  50. if (params.getJobId() == FilesSyncHelper.ContentSyncJobId && params.getTriggeredContentAuthorities()
  51. != null && params.getTriggeredContentUris() != null
  52. && params.getTriggeredContentUris().length > 0) {
  53. checkAndStartFileSyncJob();
  54. new JobRequest.Builder(MediaFoldersDetectionJob.TAG)
  55. .startNow()
  56. .setUpdateCurrent(false)
  57. .build()
  58. .schedule();
  59. }
  60. FilesSyncHelper.scheduleJobOnN();
  61. }
  62. return true;
  63. }
  64. private void checkAndStartFileSyncJob() {
  65. if (!powerManagementService.isPowerSavingEnabled() &&
  66. new SyncedFolderProvider(getContentResolver(), preferences).countEnabledSyncedFolders() > 0) {
  67. PersistableBundleCompat persistableBundleCompat = new PersistableBundleCompat();
  68. persistableBundleCompat.putBoolean(FilesSyncJob.SKIP_CUSTOM, true);
  69. new JobRequest.Builder(FilesSyncJob.TAG)
  70. .startNow()
  71. .setExtras(persistableBundleCompat)
  72. .setUpdateCurrent(false)
  73. .build()
  74. .schedule();
  75. }
  76. }
  77. @Override
  78. public boolean onStopJob(JobParameters params) {
  79. return false;
  80. }
  81. }