MainApp.java 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. /*
  2. * ownCloud Android client application
  3. *
  4. * @author masensio
  5. * @author David A. Velasco
  6. * @author Chris Narkiewicz
  7. * Copyright (C) 2015 ownCloud Inc.
  8. * Copyright (C) 2019 Chris Narkiewicz <hello@ezaquarii.com>
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2,
  12. * as published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. */
  22. package com.owncloud.android;
  23. import android.Manifest;
  24. import android.accounts.Account;
  25. import android.annotation.SuppressLint;
  26. import android.app.Activity;
  27. import android.app.ActivityManager;
  28. import android.app.Application;
  29. import android.app.NotificationChannel;
  30. import android.app.NotificationManager;
  31. import android.content.ContentResolver;
  32. import android.content.Context;
  33. import android.content.Intent;
  34. import android.content.pm.PackageInfo;
  35. import android.content.pm.PackageManager;
  36. import android.os.Build;
  37. import android.os.Bundle;
  38. import android.os.Environment;
  39. import android.os.StrictMode;
  40. import android.text.TextUtils;
  41. import android.view.WindowManager;
  42. import com.evernote.android.job.JobManager;
  43. import com.evernote.android.job.JobRequest;
  44. import com.nextcloud.client.account.UserAccountManager;
  45. import com.nextcloud.client.appinfo.AppInfo;
  46. import com.nextcloud.client.device.PowerManagementService;
  47. import com.nextcloud.client.di.ActivityInjector;
  48. import com.nextcloud.client.di.DaggerAppComponent;
  49. import com.nextcloud.client.errorhandling.ExceptionHandler;
  50. import com.nextcloud.client.logger.LegacyLoggerAdapter;
  51. import com.nextcloud.client.logger.Logger;
  52. import com.nextcloud.client.network.ConnectivityService;
  53. import com.nextcloud.client.onboarding.OnboardingService;
  54. import com.nextcloud.client.preferences.AppPreferences;
  55. import com.nextcloud.client.preferences.AppPreferencesImpl;
  56. import com.owncloud.android.authentication.PassCodeManager;
  57. import com.owncloud.android.datamodel.ArbitraryDataProvider;
  58. import com.owncloud.android.datamodel.MediaFolder;
  59. import com.owncloud.android.datamodel.MediaFolderType;
  60. import com.owncloud.android.datamodel.MediaProvider;
  61. import com.owncloud.android.datamodel.SyncedFolder;
  62. import com.owncloud.android.datamodel.SyncedFolderProvider;
  63. import com.owncloud.android.datamodel.ThumbnailsCacheManager;
  64. import com.owncloud.android.datamodel.UploadsStorageManager;
  65. import com.owncloud.android.datastorage.DataStorageProvider;
  66. import com.owncloud.android.datastorage.StoragePoint;
  67. import com.owncloud.android.jobs.MediaFoldersDetectionJob;
  68. import com.owncloud.android.jobs.NCJobCreator;
  69. import com.owncloud.android.lib.common.OwnCloudClientManagerFactory;
  70. import com.owncloud.android.lib.common.utils.Log_OC;
  71. import com.owncloud.android.lib.resources.status.OwnCloudVersion;
  72. import com.owncloud.android.ui.activity.ContactsPreferenceActivity;
  73. import com.owncloud.android.ui.activity.SyncedFoldersActivity;
  74. import com.owncloud.android.ui.notifications.NotificationUtils;
  75. import com.owncloud.android.utils.DisplayUtils;
  76. import com.owncloud.android.utils.FilesSyncHelper;
  77. import com.owncloud.android.utils.PermissionUtil;
  78. import com.owncloud.android.utils.ReceiversHelper;
  79. import com.owncloud.android.utils.SecurityUtils;
  80. import org.conscrypt.Conscrypt;
  81. import java.lang.reflect.Method;
  82. import java.security.NoSuchAlgorithmException;
  83. import java.security.Security;
  84. import java.util.ArrayList;
  85. import java.util.Arrays;
  86. import java.util.HashMap;
  87. import java.util.List;
  88. import java.util.Map;
  89. import java.util.concurrent.TimeUnit;
  90. import javax.inject.Inject;
  91. import javax.net.ssl.SSLContext;
  92. import javax.net.ssl.SSLEngine;
  93. import androidx.annotation.RequiresApi;
  94. import androidx.annotation.StringRes;
  95. import androidx.appcompat.app.AlertDialog;
  96. import androidx.core.util.Pair;
  97. import androidx.multidex.MultiDexApplication;
  98. import dagger.android.AndroidInjector;
  99. import dagger.android.DispatchingAndroidInjector;
  100. import dagger.android.HasAndroidInjector;
  101. import de.cotech.hw.SecurityKeyManager;
  102. import de.cotech.hw.SecurityKeyManagerConfig;
  103. import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
  104. import static com.owncloud.android.ui.activity.ContactsPreferenceActivity.PREFERENCE_CONTACTS_AUTOMATIC_BACKUP;
  105. /**
  106. * Main Application of the project
  107. *
  108. * Contains methods to build the "static" strings. These strings were before constants in different classes
  109. */
  110. public class MainApp extends MultiDexApplication implements HasAndroidInjector {
  111. public static final OwnCloudVersion OUTDATED_SERVER_VERSION = OwnCloudVersion.nextcloud_13;
  112. public static final OwnCloudVersion MINIMUM_SUPPORTED_SERVER_VERSION = OwnCloudVersion.nextcloud_12;
  113. private static final String TAG = MainApp.class.getSimpleName();
  114. public static final String DOT = ".";
  115. private static Context mContext;
  116. private static String storagePath;
  117. private static boolean mOnlyOnDevice;
  118. @Inject
  119. protected AppPreferences preferences;
  120. @Inject
  121. protected DispatchingAndroidInjector<Object> dispatchingAndroidInjector;
  122. @Inject
  123. protected UserAccountManager accountManager;
  124. @Inject
  125. protected UploadsStorageManager uploadsStorageManager;
  126. @Inject
  127. protected OnboardingService onboarding;
  128. @Inject
  129. ConnectivityService connectivityService;
  130. @Inject PowerManagementService powerManagementService;
  131. @Inject
  132. Logger logger;
  133. @Inject
  134. AppInfo appInfo;
  135. private PassCodeManager passCodeManager;
  136. @SuppressWarnings("unused")
  137. private boolean mBound;
  138. /**
  139. * Temporary hack
  140. */
  141. private static void initGlobalContext(Context context) {
  142. mContext = context;
  143. }
  144. /**
  145. * Temporary getter replacing Dagger DI
  146. * TODO: remove when cleaning DI in NContentObserverJob
  147. */
  148. public AppPreferences getPreferences() {
  149. return preferences;
  150. }
  151. /**
  152. * Temporary getter replacing Dagger DI
  153. * TODO: remove when cleaning DI in NContentObserverJob
  154. */
  155. public PowerManagementService getPowerManagementService() {
  156. return powerManagementService;
  157. }
  158. private String getAppProcessName() {
  159. String processName = "";
  160. if(Build.VERSION.SDK_INT < Build.VERSION_CODES.P) {
  161. ActivityManager manager = (ActivityManager) this.getSystemService(Context.ACTIVITY_SERVICE);
  162. final int ownPid = android.os.Process.myPid();
  163. final List<ActivityManager.RunningAppProcessInfo> processes = manager.getRunningAppProcesses();
  164. if (processes != null) {
  165. for (ActivityManager.RunningAppProcessInfo info : processes) {
  166. if (info.pid == ownPid) {
  167. processName = info.processName;
  168. break;
  169. }
  170. }
  171. }
  172. } else {
  173. processName = Application.getProcessName();
  174. }
  175. return processName;
  176. }
  177. @Override
  178. protected void attachBaseContext(Context base) {
  179. super.attachBaseContext(base);
  180. initGlobalContext(this);
  181. DaggerAppComponent.builder()
  182. .application(this)
  183. .build()
  184. .inject(this);
  185. // we don't want to handle crashes occurring inside crash reporter activity/process;
  186. // let the platform deal with those
  187. final boolean isCrashReportingProcess = getAppProcessName().endsWith(":crash");
  188. final boolean useExceptionHandler = !appInfo.isDebugBuild();
  189. if (!isCrashReportingProcess) {
  190. Thread.UncaughtExceptionHandler defaultPlatformHandler = Thread.getDefaultUncaughtExceptionHandler();
  191. final ExceptionHandler crashReporter = new ExceptionHandler(this,
  192. defaultPlatformHandler);
  193. Thread.setDefaultUncaughtExceptionHandler(crashReporter);
  194. }
  195. }
  196. @SuppressFBWarnings("ST")
  197. @Override
  198. public void onCreate() {
  199. super.onCreate();
  200. insertConscrypt();
  201. initSecurityKeyManager();
  202. registerActivityLifecycleCallbacks(new ActivityInjector());
  203. Thread t = new Thread(() -> {
  204. // best place, before any access to AccountManager or database
  205. if (!preferences.isUserIdMigrated()) {
  206. final boolean migrated = accountManager.migrateUserId();
  207. preferences.setMigratedUserId(migrated);
  208. }
  209. });
  210. t.start();
  211. JobManager.create(this).addJobCreator(
  212. new NCJobCreator(
  213. getApplicationContext(),
  214. accountManager,
  215. preferences,
  216. uploadsStorageManager,
  217. connectivityService,
  218. powerManagementService
  219. )
  220. );
  221. new SecurityUtils();
  222. DisplayUtils.useCompatVectorIfNeeded();
  223. fixStoragePath();
  224. passCodeManager = new PassCodeManager(preferences);
  225. MainApp.storagePath = preferences.getStoragePath(getApplicationContext().getFilesDir().getAbsolutePath());
  226. OwnCloudClientManagerFactory.setUserAgent(getUserAgent());
  227. // initialise thumbnails cache on background thread
  228. new ThumbnailsCacheManager.InitDiskCacheTask().execute();
  229. if (BuildConfig.DEBUG || getApplicationContext().getResources().getBoolean(R.bool.logger_enabled)) {
  230. // use app writable dir, no permissions needed
  231. Log_OC.setLoggerImplementation(new LegacyLoggerAdapter(logger));
  232. Log_OC.d("Debug", "start logging");
  233. }
  234. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
  235. try {
  236. Method m = StrictMode.class.getMethod("disableDeathOnFileUriExposure");
  237. m.invoke(null);
  238. } catch (Exception e) {
  239. Log_OC.d("Debug", "Failed to disable uri exposure");
  240. }
  241. }
  242. initSyncOperations(uploadsStorageManager, accountManager, connectivityService, powerManagementService);
  243. initContactsBackup(accountManager);
  244. notificationChannels();
  245. new JobRequest.Builder(MediaFoldersDetectionJob.TAG)
  246. .setPeriodic(TimeUnit.MINUTES.toMillis(15), TimeUnit.MINUTES.toMillis(5))
  247. .setUpdateCurrent(true)
  248. .build()
  249. .schedule();
  250. new JobRequest.Builder(MediaFoldersDetectionJob.TAG)
  251. .startNow()
  252. .setUpdateCurrent(false)
  253. .build()
  254. .schedule();
  255. registerGlobalPassCodeProtection();
  256. }
  257. private void registerGlobalPassCodeProtection() {
  258. registerActivityLifecycleCallbacks(new ActivityLifecycleCallbacks() {
  259. @Override
  260. public void onActivityCreated(Activity activity, Bundle savedInstanceState) {
  261. Log_OC.d(activity.getClass().getSimpleName(), "onCreate(Bundle) starting");
  262. onboarding.launchActivityIfNeeded(activity);
  263. }
  264. @Override
  265. public void onActivityStarted(Activity activity) {
  266. Log_OC.d(activity.getClass().getSimpleName(), "onStart() starting");
  267. }
  268. @Override
  269. public void onActivityResumed(Activity activity) {
  270. Log_OC.d(activity.getClass().getSimpleName(), "onResume() starting");
  271. passCodeManager.onActivityStarted(activity);
  272. }
  273. @Override
  274. public void onActivityPaused(Activity activity) {
  275. Log_OC.d(activity.getClass().getSimpleName(), "onPause() ending");
  276. }
  277. @Override
  278. public void onActivityStopped(Activity activity) {
  279. Log_OC.d(activity.getClass().getSimpleName(), "onStop() ending");
  280. passCodeManager.onActivityStopped(activity);
  281. }
  282. @Override
  283. public void onActivitySaveInstanceState(Activity activity, Bundle outState) {
  284. Log_OC.d(activity.getClass().getSimpleName(), "onSaveInstanceState(Bundle) starting");
  285. }
  286. @Override
  287. public void onActivityDestroyed(Activity activity) {
  288. Log_OC.d(activity.getClass().getSimpleName(), "onDestroy() ending");
  289. }
  290. });
  291. }
  292. private void initSecurityKeyManager() {
  293. SecurityKeyManager securityKeyManager = SecurityKeyManager.getInstance();
  294. SecurityKeyManagerConfig config = new SecurityKeyManagerConfig.Builder()
  295. .setEnableDebugLogging(BuildConfig.DEBUG)
  296. .build();
  297. securityKeyManager.init(this, config);
  298. }
  299. public static void initContactsBackup(UserAccountManager accountManager) {
  300. ArbitraryDataProvider arbitraryDataProvider = new ArbitraryDataProvider(mContext.getContentResolver());
  301. Account[] accounts = accountManager.getAccounts();
  302. for (Account account : accounts) {
  303. if (arbitraryDataProvider.getBooleanValue(account, PREFERENCE_CONTACTS_AUTOMATIC_BACKUP)) {
  304. ContactsPreferenceActivity.startContactBackupJob(account);
  305. }
  306. }
  307. }
  308. private void insertConscrypt() {
  309. Security.insertProviderAt(Conscrypt.newProvider(), 1);
  310. try {
  311. Conscrypt.Version version = Conscrypt.version();
  312. Log_OC.i(TAG, "Using Conscrypt/"
  313. + version.major()
  314. + DOT
  315. + version.minor()
  316. + DOT + version.patch()
  317. + " for TLS");
  318. SSLEngine engine = SSLContext.getDefault().createSSLEngine();
  319. Log_OC.i(TAG, "Enabled protocols: " + Arrays.toString(engine.getEnabledProtocols()) + " }");
  320. Log_OC.i(TAG, "Enabled ciphers: " + Arrays.toString(engine.getEnabledCipherSuites()) + " }");
  321. } catch (NoSuchAlgorithmException e) {
  322. Log_OC.e(TAG, e.getMessage());
  323. }
  324. }
  325. @SuppressLint("ApplySharedPref") // commit is done on purpose to write immediately
  326. private void fixStoragePath() {
  327. if (!preferences.isStoragePathFixEnabled()) {
  328. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
  329. StoragePoint[] storagePoints = DataStorageProvider.getInstance().getAvailableStoragePoints();
  330. String storagePath = preferences.getStoragePath("");
  331. if (TextUtils.isEmpty(storagePath)) {
  332. if (preferences.getLastSeenVersionCode() != 0) {
  333. // We already used the app, but no storage is set - fix that!
  334. preferences.setStoragePath(Environment.getExternalStorageDirectory().getAbsolutePath());
  335. preferences.removeKeysMigrationPreference();
  336. } else {
  337. // find internal storage path that's indexable
  338. boolean set = false;
  339. for (StoragePoint storagePoint : storagePoints) {
  340. if (storagePoint.getStorageType() == StoragePoint.StorageType.INTERNAL &&
  341. storagePoint.getPrivacyType() == StoragePoint.PrivacyType.PUBLIC) {
  342. preferences.setStoragePath(storagePoint.getPath());
  343. preferences.removeKeysMigrationPreference();
  344. set = true;
  345. break;
  346. }
  347. }
  348. if (!set) {
  349. for (StoragePoint storagePoint : storagePoints) {
  350. if (storagePoint.getPrivacyType() == StoragePoint.PrivacyType.PUBLIC) {
  351. preferences.setStoragePath(storagePoint.getPath());
  352. preferences.removeKeysMigrationPreference();
  353. set = true;
  354. break;
  355. }
  356. }
  357. }
  358. }
  359. preferences.setStoragePathFixEnabled(true);
  360. } else {
  361. preferences.removeKeysMigrationPreference();
  362. preferences.setStoragePathFixEnabled(true);
  363. }
  364. } else {
  365. if (TextUtils.isEmpty(storagePath)) {
  366. preferences.setStoragePath(Environment.getExternalStorageDirectory().getAbsolutePath());
  367. }
  368. preferences.removeKeysMigrationPreference();
  369. preferences.setStoragePathFixEnabled(true);
  370. }
  371. }
  372. }
  373. public static void initSyncOperations(
  374. final UploadsStorageManager uploadsStorageManager,
  375. final UserAccountManager accountManager,
  376. final ConnectivityService connectivityService,
  377. final PowerManagementService powerManagementService
  378. ) {
  379. updateToAutoUpload();
  380. cleanOldEntries();
  381. updateAutoUploadEntries();
  382. if (getAppContext() != null) {
  383. if (PermissionUtil.checkSelfPermission(getAppContext(),
  384. Manifest.permission.WRITE_EXTERNAL_STORAGE)) {
  385. splitOutAutoUploadEntries();
  386. } else {
  387. AppPreferences preferences = AppPreferencesImpl.fromContext(getAppContext());
  388. preferences.setAutoUploadSplitEntriesEnabled(true);
  389. }
  390. }
  391. initiateExistingAutoUploadEntries();
  392. FilesSyncHelper.scheduleFilesSyncIfNeeded(mContext);
  393. FilesSyncHelper.restartJobsIfNeeded(
  394. uploadsStorageManager,
  395. accountManager,
  396. connectivityService,
  397. powerManagementService);
  398. FilesSyncHelper.scheduleOfflineSyncIfNeeded();
  399. ReceiversHelper.registerNetworkChangeReceiver(uploadsStorageManager,
  400. accountManager,
  401. connectivityService,
  402. powerManagementService);
  403. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
  404. ReceiversHelper.registerPowerChangeReceiver(uploadsStorageManager,
  405. accountManager,
  406. connectivityService,
  407. powerManagementService);
  408. }
  409. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
  410. ReceiversHelper.registerPowerSaveReceiver(uploadsStorageManager,
  411. accountManager,
  412. connectivityService,
  413. powerManagementService);
  414. }
  415. }
  416. public static void notificationChannels() {
  417. if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O && getAppContext() != null) {
  418. Context context = getAppContext();
  419. NotificationManager notificationManager = (NotificationManager)
  420. context.getSystemService(Context.NOTIFICATION_SERVICE);
  421. if (notificationManager != null) {
  422. createChannel(notificationManager, NotificationUtils.NOTIFICATION_CHANNEL_DOWNLOAD,
  423. R.string.notification_channel_download_name,
  424. R.string.notification_channel_download_description, context);
  425. createChannel(notificationManager, NotificationUtils.NOTIFICATION_CHANNEL_UPLOAD,
  426. R.string.notification_channel_upload_name,
  427. R.string.notification_channel_upload_description, context);
  428. createChannel(notificationManager, NotificationUtils.NOTIFICATION_CHANNEL_MEDIA,
  429. R.string.notification_channel_media_name,
  430. R.string.notification_channel_media_description, context);
  431. createChannel(notificationManager, NotificationUtils.NOTIFICATION_CHANNEL_FILE_SYNC,
  432. R.string.notification_channel_file_sync_name,
  433. R.string.notification_channel_file_sync_description, context);
  434. createChannel(notificationManager, NotificationUtils.NOTIFICATION_CHANNEL_FILE_OBSERVER,
  435. R.string.notification_channel_file_observer_name, R.string
  436. .notification_channel_file_observer_description, context);
  437. createChannel(notificationManager, NotificationUtils.NOTIFICATION_CHANNEL_PUSH,
  438. R.string.notification_channel_push_name, R.string
  439. .notification_channel_push_description, context, NotificationManager.IMPORTANCE_DEFAULT);
  440. createChannel(notificationManager, NotificationUtils.NOTIFICATION_CHANNEL_GENERAL, R.string
  441. .notification_channel_general_name, R.string.notification_channel_general_description,
  442. context, NotificationManager.IMPORTANCE_DEFAULT);
  443. } else {
  444. Log_OC.e(TAG, "Notification manager is null");
  445. }
  446. }
  447. }
  448. @RequiresApi(api = Build.VERSION_CODES.N)
  449. private static void createChannel(NotificationManager notificationManager,
  450. String channelId, int channelName,
  451. int channelDescription, Context context) {
  452. createChannel(notificationManager, channelId, channelName, channelDescription, context,
  453. NotificationManager.IMPORTANCE_LOW);
  454. }
  455. private static void createChannel(NotificationManager notificationManager,
  456. String channelId, int channelName,
  457. int channelDescription, Context context, int importance) {
  458. if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O
  459. && getAppContext() != null
  460. && notificationManager.getNotificationChannel(channelId) == null) {
  461. CharSequence name = context.getString(channelName);
  462. String description = context.getString(channelDescription);
  463. NotificationChannel channel = new NotificationChannel(channelId, name, importance);
  464. channel.setDescription(description);
  465. channel.enableLights(false);
  466. channel.enableVibration(false);
  467. notificationManager.createNotificationChannel(channel);
  468. }
  469. }
  470. public static Context getAppContext() {
  471. return MainApp.mContext;
  472. }
  473. public static void setAppContext(Context context) {
  474. MainApp.mContext = context;
  475. }
  476. public static String getStoragePath() {
  477. return MainApp.storagePath;
  478. }
  479. public static void setStoragePath(String path) {
  480. MainApp.storagePath = path;
  481. }
  482. // Methods to obtain Strings referring app_name
  483. // From AccountAuthenticator
  484. // public static final String ACCOUNT_TYPE = "owncloud";
  485. public static String getAccountType(Context context) {
  486. return context.getResources().getString(R.string.account_type);
  487. }
  488. // From AccountAuthenticator
  489. // public static final String AUTHORITY = "org.owncloud";
  490. public static String getAuthority() {
  491. return getAppContext().getResources().getString(R.string.authority);
  492. }
  493. // From AccountAuthenticator
  494. // public static final String AUTH_TOKEN_TYPE = "org.owncloud";
  495. public static String getAuthTokenType() {
  496. return getAppContext().getResources().getString(R.string.authority);
  497. }
  498. // From ProviderMeta
  499. // public static final String DB_FILE = "owncloud.db";
  500. public static String getDBFile() {
  501. return getAppContext().getResources().getString(R.string.db_file);
  502. }
  503. // From ProviderMeta
  504. // private final String mDatabaseName = "ownCloud";
  505. public static String getDBName() {
  506. return getAppContext().getResources().getString(R.string.db_name);
  507. }
  508. /**
  509. * name of data_folder, e.g., "owncloud"
  510. */
  511. public static String getDataFolder() {
  512. return getAppContext().getResources().getString(R.string.data_folder);
  513. }
  514. public static void showOnlyFilesOnDevice(boolean state) {
  515. mOnlyOnDevice = state;
  516. }
  517. public static boolean isOnlyOnDevice() {
  518. return mOnlyOnDevice;
  519. }
  520. public static String getUserAgent() {
  521. // Mozilla/5.0 (Android) Nextcloud-android/2.1.0
  522. return getUserAgent(R.string.nextcloud_user_agent);
  523. }
  524. // user agent
  525. private static String getUserAgent(@StringRes int agent) {
  526. String appString = getAppContext().getResources().getString(agent);
  527. String packageName = getAppContext().getPackageName();
  528. String version = "";
  529. try {
  530. PackageInfo pInfo = getAppContext().getPackageManager().getPackageInfo(packageName, 0);
  531. if (pInfo != null) {
  532. version = pInfo.versionName;
  533. }
  534. } catch (PackageManager.NameNotFoundException e) {
  535. Log_OC.e(TAG, "Trying to get packageName", e.getCause());
  536. }
  537. return String.format(appString, version);
  538. }
  539. private static void updateToAutoUpload() {
  540. Context context = getAppContext();
  541. AppPreferences preferences = AppPreferencesImpl.fromContext(context);
  542. if (preferences.instantPictureUploadEnabled() || preferences.instantVideoUploadEnabled()) {
  543. preferences.removeLegacyPreferences();
  544. // show info pop-up
  545. try {
  546. new AlertDialog.Builder(context, R.style.Theme_ownCloud_Dialog)
  547. .setTitle(R.string.drawer_synced_folders)
  548. .setMessage(R.string.synced_folders_new_info)
  549. .setPositiveButton(R.string.drawer_open, (dialog, which) -> {
  550. // show Auto Upload
  551. Intent folderSyncIntent = new Intent(context, SyncedFoldersActivity.class);
  552. dialog.dismiss();
  553. context.startActivity(folderSyncIntent);
  554. })
  555. .setNegativeButton(R.string.drawer_close, (dialog, which) -> dialog.dismiss())
  556. .setIcon(R.drawable.nav_synced_folders)
  557. .show();
  558. } catch (WindowManager.BadTokenException e) {
  559. Log_OC.i(TAG, "Error showing Auto Upload Update dialog, so skipping it: " + e.getMessage());
  560. }
  561. }
  562. }
  563. private static void updateAutoUploadEntries() {
  564. // updates entries to reflect their true paths
  565. Context context = getAppContext();
  566. AppPreferences preferences = AppPreferencesImpl.fromContext(context);
  567. if (!preferences.isAutoUploadPathsUpdateEnabled()) {
  568. SyncedFolderProvider syncedFolderProvider =
  569. new SyncedFolderProvider(MainApp.getAppContext().getContentResolver(), preferences);
  570. syncedFolderProvider.updateAutoUploadPaths(mContext);
  571. }
  572. }
  573. private static void splitOutAutoUploadEntries() {
  574. Context context = getAppContext();
  575. AppPreferences preferences = AppPreferencesImpl.fromContext(context);
  576. if (!preferences.isAutoUploadSplitEntriesEnabled()) {
  577. // magic to split out existing synced folders in two when needed
  578. // otherwise, we migrate them to their proper type (image or video)
  579. Log_OC.i(TAG, "Migrate synced_folders records for image/video split");
  580. ContentResolver contentResolver = context.getContentResolver();
  581. SyncedFolderProvider syncedFolderProvider = new SyncedFolderProvider(contentResolver, preferences);
  582. final List<MediaFolder> imageMediaFolders = MediaProvider.getImageFolders(contentResolver, 1, null, true);
  583. final List<MediaFolder> videoMediaFolders = MediaProvider.getVideoFolders(contentResolver, 1, null, true);
  584. ArrayList<Long> idsToDelete = new ArrayList<>();
  585. List<SyncedFolder> syncedFolders = syncedFolderProvider.getSyncedFolders();
  586. long primaryKey;
  587. SyncedFolder newSyncedFolder;
  588. for (SyncedFolder syncedFolder : syncedFolders) {
  589. idsToDelete.add(syncedFolder.getId());
  590. Log_OC.i(TAG, "Migration check for synced_folders record: "
  591. + syncedFolder.getId() + " - " + syncedFolder.getLocalPath());
  592. for (MediaFolder imageMediaFolder : imageMediaFolders) {
  593. if (imageMediaFolder.absolutePath.equals(syncedFolder.getLocalPath())) {
  594. newSyncedFolder = (SyncedFolder) syncedFolder.clone();
  595. newSyncedFolder.setType(MediaFolderType.IMAGE);
  596. primaryKey = syncedFolderProvider.storeSyncedFolder(newSyncedFolder);
  597. Log_OC.i(TAG, "Migrated image synced_folders record: "
  598. + primaryKey + " - " + newSyncedFolder.getLocalPath());
  599. break;
  600. }
  601. }
  602. for (MediaFolder videoMediaFolder : videoMediaFolders) {
  603. if (videoMediaFolder.absolutePath.equals(syncedFolder.getLocalPath())) {
  604. newSyncedFolder = (SyncedFolder) syncedFolder.clone();
  605. newSyncedFolder.setType(MediaFolderType.VIDEO);
  606. primaryKey = syncedFolderProvider.storeSyncedFolder(newSyncedFolder);
  607. Log_OC.i(TAG, "Migrated video synced_folders record: "
  608. + primaryKey + " - " + newSyncedFolder.getLocalPath());
  609. break;
  610. }
  611. }
  612. }
  613. for (long id : idsToDelete) {
  614. Log_OC.i(TAG, "Removing legacy synced_folders record: " + id);
  615. syncedFolderProvider.deleteSyncedFolder(id);
  616. }
  617. preferences.setAutoUploadSplitEntriesEnabled(true);
  618. }
  619. }
  620. private static void initiateExistingAutoUploadEntries() {
  621. new Thread(() -> {
  622. AppPreferences preferences = AppPreferencesImpl.fromContext(getAppContext());
  623. if (!preferences.isAutoUploadInitialized()) {
  624. SyncedFolderProvider syncedFolderProvider =
  625. new SyncedFolderProvider(MainApp.getAppContext().getContentResolver(), preferences);
  626. for (SyncedFolder syncedFolder : syncedFolderProvider.getSyncedFolders()) {
  627. if (syncedFolder.isEnabled()) {
  628. FilesSyncHelper.insertAllDBEntriesForSyncedFolder(syncedFolder);
  629. }
  630. }
  631. preferences.setAutoUploadInit(true);
  632. }
  633. }).start();
  634. }
  635. private static void cleanOldEntries() {
  636. // previous versions of application created broken entries in the SyncedFolderProvider
  637. // database, and this cleans all that and leaves 1 (newest) entry per synced folder
  638. Context context = getAppContext();
  639. AppPreferences preferences = AppPreferencesImpl.fromContext(context);
  640. if (!preferences.isLegacyClean()) {
  641. SyncedFolderProvider syncedFolderProvider =
  642. new SyncedFolderProvider(context.getContentResolver(), preferences);
  643. List<SyncedFolder> syncedFolderList = syncedFolderProvider.getSyncedFolders();
  644. Map<Pair<String, String>, Long> syncedFolders = new HashMap<>();
  645. ArrayList<Long> ids = new ArrayList<>();
  646. for (SyncedFolder syncedFolder : syncedFolderList) {
  647. Pair<String, String> checkPair = new Pair<>(syncedFolder.getAccount(), syncedFolder.getLocalPath());
  648. if (syncedFolders.containsKey(checkPair)) {
  649. if (syncedFolder.getId() > syncedFolders.get(checkPair)) {
  650. syncedFolders.put(checkPair, syncedFolder.getId());
  651. }
  652. } else {
  653. syncedFolders.put(checkPair, syncedFolder.getId());
  654. }
  655. }
  656. ids.addAll(syncedFolders.values());
  657. if (ids.size() > 0) {
  658. int deletedCount = syncedFolderProvider.deleteSyncedFoldersNotInList(ids);
  659. if (deletedCount > 0) {
  660. preferences.setLegacyClean(true);
  661. }
  662. } else {
  663. preferences.setLegacyClean(true);
  664. }
  665. }
  666. }
  667. @Override
  668. public AndroidInjector<Object> androidInjector() {
  669. return dispatchingAndroidInjector;
  670. }
  671. }