2020-05-02 11:46:59 +00:00
|
|
|
import 'dart:async';
|
|
|
|
|
2021-01-13 17:39:45 +00:00
|
|
|
import 'package:background_fetch/background_fetch.dart';
|
2021-02-09 11:35:45 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
2020-03-24 19:59:36 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2021-06-28 18:25:35 +00:00
|
|
|
import 'package:flutter_easyloading/flutter_easyloading.dart';
|
2021-01-08 17:11:32 +00:00
|
|
|
import 'package:in_app_purchase/in_app_purchase.dart';
|
2021-07-21 20:47:43 +00:00
|
|
|
import 'package:logging/logging.dart';
|
2020-05-02 16:28:54 +00:00
|
|
|
import 'package:path_provider/path_provider.dart';
|
2020-05-04 20:08:20 +00:00
|
|
|
import 'package:photos/core/configuration.dart';
|
2021-07-21 20:47:43 +00:00
|
|
|
import 'package:photos/core/constants.dart';
|
2021-04-04 17:19:46 +00:00
|
|
|
import 'package:photos/core/network.dart';
|
2021-05-07 17:26:51 +00:00
|
|
|
import 'package:photos/db/upload_locks_db.dart';
|
2021-01-08 06:38:45 +00:00
|
|
|
import 'package:photos/services/billing_service.dart';
|
2020-10-26 09:57:31 +00:00
|
|
|
import 'package:photos/services/collections_service.dart';
|
2021-08-24 06:51:02 +00:00
|
|
|
import 'package:photos/services/feature_flag_service.dart';
|
2021-06-14 14:58:36 +00:00
|
|
|
import 'package:photos/services/local_sync_service.dart';
|
2020-10-03 17:56:18 +00:00
|
|
|
import 'package:photos/services/memories_service.dart';
|
2021-05-20 23:23:29 +00:00
|
|
|
import 'package:photos/services/notification_service.dart';
|
2021-06-14 16:24:15 +00:00
|
|
|
import 'package:photos/services/remote_sync_service.dart';
|
2020-10-03 17:58:26 +00:00
|
|
|
import 'package:photos/services/sync_service.dart';
|
2021-05-22 18:29:09 +00:00
|
|
|
import 'package:photos/services/update_service.dart';
|
2021-03-21 08:32:10 +00:00
|
|
|
import 'package:photos/ui/app_lock.dart';
|
2020-05-04 20:08:20 +00:00
|
|
|
import 'package:photos/ui/home_widget.dart';
|
2021-03-21 08:32:10 +00:00
|
|
|
import 'package:photos/ui/lock_screen.dart';
|
2021-01-26 11:46:14 +00:00
|
|
|
import 'package:photos/utils/crypto_util.dart';
|
2021-03-03 16:07:02 +00:00
|
|
|
import 'package:photos/utils/file_uploader.dart';
|
2021-05-07 17:26:51 +00:00
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
2020-05-03 20:27:06 +00:00
|
|
|
import 'package:super_logging/super_logging.dart';
|
2020-05-02 16:28:54 +00:00
|
|
|
|
2020-08-21 23:28:52 +00:00
|
|
|
final _logger = Logger("main");
|
2021-03-01 22:09:15 +00:00
|
|
|
|
|
|
|
Completer<void> _initializationStatus;
|
2021-05-07 17:26:51 +00:00
|
|
|
const kLastBGTaskHeartBeatTime = "bg_task_hb_time";
|
|
|
|
const kLastFGTaskHeartBeatTime = "fg_task_hb_time";
|
|
|
|
const kHeartBeatFrequency = Duration(seconds: 1);
|
2021-05-08 17:53:17 +00:00
|
|
|
const kFGSyncFrequency = Duration(minutes: 5);
|
2021-05-07 17:26:51 +00:00
|
|
|
const kFGTaskDeathTimeoutInMicroseconds = 5000000;
|
2020-03-24 19:59:36 +00:00
|
|
|
|
2021-03-21 08:32:10 +00:00
|
|
|
final themeData = ThemeData(
|
|
|
|
fontFamily: 'Ubuntu',
|
|
|
|
brightness: Brightness.dark,
|
|
|
|
hintColor: Colors.grey,
|
2021-05-12 15:59:07 +00:00
|
|
|
accentColor: Color.fromRGBO(45, 194, 98, 0.2),
|
2021-03-21 08:32:10 +00:00
|
|
|
buttonColor: Color.fromRGBO(45, 194, 98, 1.0),
|
|
|
|
buttonTheme: ButtonThemeData().copyWith(
|
|
|
|
buttonColor: Color.fromRGBO(45, 194, 98, 1.0),
|
|
|
|
),
|
|
|
|
toggleableActiveColor: Colors.green[400],
|
|
|
|
scaffoldBackgroundColor: Colors.black,
|
|
|
|
backgroundColor: Colors.black,
|
|
|
|
appBarTheme: AppBarTheme().copyWith(
|
|
|
|
color: Color.fromRGBO(10, 20, 20, 1.0),
|
|
|
|
),
|
2021-05-12 16:42:15 +00:00
|
|
|
cardColor: Color.fromRGBO(10, 15, 15, 1.0),
|
2021-03-21 08:32:10 +00:00
|
|
|
dialogTheme: DialogTheme().copyWith(
|
2021-05-12 15:11:57 +00:00
|
|
|
backgroundColor: Color.fromRGBO(10, 15, 15, 1.0),
|
2021-03-21 08:32:10 +00:00
|
|
|
),
|
2021-05-12 19:34:13 +00:00
|
|
|
textSelectionTheme: TextSelectionThemeData().copyWith(
|
|
|
|
cursorColor: Colors.white.withOpacity(0.5),
|
|
|
|
),
|
2021-05-30 23:55:50 +00:00
|
|
|
inputDecorationTheme: InputDecorationTheme().copyWith(
|
|
|
|
focusedBorder: UnderlineInputBorder(
|
|
|
|
borderSide: BorderSide(
|
|
|
|
color: Color.fromRGBO(45, 194, 98, 1.0),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2021-03-21 08:32:10 +00:00
|
|
|
);
|
|
|
|
|
2020-03-24 19:59:36 +00:00
|
|
|
void main() async {
|
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
2021-03-01 23:36:58 +00:00
|
|
|
await _runInForeground();
|
2021-03-03 16:07:15 +00:00
|
|
|
BackgroundFetch.registerHeadlessTask(_headlessTaskHandler);
|
2020-05-02 16:28:54 +00:00
|
|
|
}
|
|
|
|
|
2021-03-01 23:36:58 +00:00
|
|
|
Future<void> _runInForeground() async {
|
|
|
|
return await _runWithLogs(() async {
|
2021-03-01 22:09:15 +00:00
|
|
|
_logger.info("Starting app in foreground");
|
2021-03-03 16:03:03 +00:00
|
|
|
await _init(false);
|
2021-05-08 17:53:17 +00:00
|
|
|
_scheduleFGSync();
|
2021-03-21 08:32:10 +00:00
|
|
|
runApp(AppLock(
|
|
|
|
builder: (args) => EnteApp(),
|
|
|
|
lockScreen: LockScreen(),
|
|
|
|
enabled: Configuration.instance.shouldShowLockScreen(),
|
|
|
|
themeData: themeData,
|
|
|
|
));
|
2021-03-01 22:09:15 +00:00
|
|
|
});
|
|
|
|
}
|
2020-05-02 11:46:59 +00:00
|
|
|
|
2021-03-01 22:09:15 +00:00
|
|
|
Future _runInBackground(String taskId) async {
|
|
|
|
if (_initializationStatus == null) {
|
|
|
|
_runWithLogs(() async {
|
2021-05-07 17:26:51 +00:00
|
|
|
_backgroundTask(taskId);
|
2021-03-03 16:03:03 +00:00
|
|
|
}, prefix: "[bg]");
|
2021-03-01 22:09:15 +00:00
|
|
|
} else {
|
2021-05-07 17:26:51 +00:00
|
|
|
_backgroundTask(taskId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _backgroundTask(String taskId) async {
|
|
|
|
await Future.delayed(Duration(seconds: 3));
|
|
|
|
if (await _isRunningInForeground()) {
|
|
|
|
_logger.info("FG task running, skipping BG task");
|
2021-03-01 22:09:15 +00:00
|
|
|
BackgroundFetch.finish(taskId);
|
2021-05-07 17:26:51 +00:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
_logger.info("FG task is not running");
|
2021-03-01 22:09:15 +00:00
|
|
|
}
|
2021-05-07 17:26:51 +00:00
|
|
|
_logger.info("[BackgroundFetch] Event received: $taskId");
|
|
|
|
_scheduleBGTaskKill(taskId);
|
|
|
|
await _init(true);
|
2021-05-22 21:26:11 +00:00
|
|
|
UpdateService.instance.showUpdateNotification();
|
2021-05-07 17:26:51 +00:00
|
|
|
await _sync(isAppInBackground: true);
|
|
|
|
BackgroundFetch.finish(taskId);
|
2021-03-01 22:09:15 +00:00
|
|
|
}
|
2020-05-02 11:46:59 +00:00
|
|
|
|
2021-03-01 22:09:15 +00:00
|
|
|
void _headlessTaskHandler(HeadlessTask task) {
|
|
|
|
if (task.timeout) {
|
|
|
|
BackgroundFetch.finish(task.taskId);
|
|
|
|
} else {
|
|
|
|
_runInBackground(task.taskId);
|
|
|
|
}
|
2021-01-13 17:39:45 +00:00
|
|
|
}
|
|
|
|
|
2021-03-03 16:03:03 +00:00
|
|
|
Future<void> _init(bool isBackground) async {
|
2021-03-01 22:09:15 +00:00
|
|
|
if (_initializationStatus != null) {
|
|
|
|
return _initializationStatus.future;
|
|
|
|
}
|
|
|
|
_initializationStatus = Completer<void>();
|
2021-05-07 17:26:51 +00:00
|
|
|
_scheduleHeartBeat(isBackground);
|
2021-03-02 06:08:29 +00:00
|
|
|
_logger.info("Initializing...");
|
2021-01-13 17:39:45 +00:00
|
|
|
InAppPurchaseConnection.enablePendingPurchases();
|
2021-01-26 11:46:14 +00:00
|
|
|
CryptoUtil.init();
|
2021-05-20 23:23:29 +00:00
|
|
|
await NotificationService.instance.init();
|
2021-04-04 17:19:46 +00:00
|
|
|
await Network.instance.init();
|
2021-01-13 17:39:45 +00:00
|
|
|
await Configuration.instance.init();
|
2021-05-22 18:29:09 +00:00
|
|
|
await UpdateService.instance.init();
|
2021-01-13 19:41:32 +00:00
|
|
|
await BillingService.instance.init();
|
2021-01-13 17:39:45 +00:00
|
|
|
await CollectionsService.instance.init();
|
2021-03-03 16:07:02 +00:00
|
|
|
await FileUploader.instance.init(isBackground);
|
2021-06-14 14:58:36 +00:00
|
|
|
await LocalSyncService.instance.init(isBackground);
|
2021-06-14 16:24:15 +00:00
|
|
|
await RemoteSyncService.instance.init();
|
2021-06-14 14:58:36 +00:00
|
|
|
await SyncService.instance.init();
|
2021-01-13 17:39:45 +00:00
|
|
|
await MemoriesService.instance.init();
|
2021-08-24 06:54:05 +00:00
|
|
|
FeatureFlagService.instance.sync();
|
2021-02-06 16:11:27 +00:00
|
|
|
_logger.info("Initialization done");
|
2021-03-01 22:09:15 +00:00
|
|
|
_initializationStatus.complete();
|
2020-05-02 11:46:59 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 17:39:45 +00:00
|
|
|
Future<void> _sync({bool isAppInBackground = false}) async {
|
2021-02-26 09:50:52 +00:00
|
|
|
if (SyncService.instance.isSyncInProgress()) {
|
2021-03-01 23:36:58 +00:00
|
|
|
_logger.info("Sync is already in progress, skipping");
|
2021-02-26 09:50:52 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-02-26 14:09:45 +00:00
|
|
|
if (isAppInBackground) {
|
|
|
|
_logger.info("Syncing in background");
|
|
|
|
}
|
2021-01-13 17:39:45 +00:00
|
|
|
try {
|
2021-03-03 16:03:03 +00:00
|
|
|
await SyncService.instance.sync();
|
2021-01-13 17:39:45 +00:00
|
|
|
} catch (e, s) {
|
2020-10-12 20:34:34 +00:00
|
|
|
_logger.severe("Sync error", e, s);
|
2021-01-13 17:39:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-03 16:03:03 +00:00
|
|
|
Future _runWithLogs(Function() function, {String prefix = ""}) async {
|
2021-01-13 17:39:45 +00:00
|
|
|
await SuperLogging.main(LogConfig(
|
|
|
|
body: function,
|
|
|
|
logDirPath: (await getTemporaryDirectory()).path + "/logs",
|
|
|
|
maxLogFiles: 5,
|
2021-07-21 20:47:43 +00:00
|
|
|
sentryDsn: kDebugMode ? kSentryDebugDSN : kSentryDSN,
|
2021-03-01 22:09:15 +00:00
|
|
|
enableInDebugMode: true,
|
2021-03-03 16:03:03 +00:00
|
|
|
prefix: prefix,
|
2021-01-13 17:39:45 +00:00
|
|
|
));
|
2020-06-15 18:38:08 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 17:26:51 +00:00
|
|
|
Future<void> _scheduleHeartBeat(bool isBackground) async {
|
|
|
|
final prefs = await SharedPreferences.getInstance();
|
|
|
|
await prefs.setInt(
|
|
|
|
isBackground ? kLastBGTaskHeartBeatTime : kLastFGTaskHeartBeatTime,
|
|
|
|
DateTime.now().microsecondsSinceEpoch);
|
|
|
|
Future.delayed(kHeartBeatFrequency, () async {
|
2021-05-08 17:53:17 +00:00
|
|
|
_scheduleHeartBeat(isBackground);
|
2021-05-07 17:26:51 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-08 17:53:17 +00:00
|
|
|
Future<void> _scheduleFGSync() async {
|
|
|
|
await _sync();
|
|
|
|
Future.delayed(kFGSyncFrequency, () async {
|
|
|
|
_scheduleFGSync();
|
|
|
|
});
|
2021-05-07 17:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void _scheduleBGTaskKill(String taskId) async {
|
|
|
|
if (await _isRunningInForeground()) {
|
|
|
|
_logger.info("Found app in FG, committing seppuku.");
|
2021-05-07 17:44:19 +00:00
|
|
|
await _killBGTask(taskId);
|
2021-05-07 17:26:51 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
Future.delayed(kHeartBeatFrequency, () async {
|
|
|
|
_scheduleBGTaskKill(taskId);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-05-08 17:53:17 +00:00
|
|
|
Future<bool> _isRunningInForeground() async {
|
|
|
|
final prefs = await SharedPreferences.getInstance();
|
|
|
|
await prefs.reload();
|
|
|
|
final currentTime = DateTime.now().microsecondsSinceEpoch;
|
|
|
|
return (prefs.getInt(kLastFGTaskHeartBeatTime) ?? 0) >
|
|
|
|
(currentTime - kFGTaskDeathTimeoutInMicroseconds);
|
|
|
|
}
|
|
|
|
|
2021-05-07 17:44:19 +00:00
|
|
|
Future<void> _killBGTask(String taskId) async {
|
|
|
|
await UploadLocksDB.instance.releaseLocksAcquiredByOwnerBefore(
|
2021-05-08 14:17:11 +00:00
|
|
|
ProcessType.background.toString(), DateTime.now().microsecondsSinceEpoch);
|
2021-05-07 17:44:19 +00:00
|
|
|
final prefs = await SharedPreferences.getInstance();
|
|
|
|
prefs.remove(kLastBGTaskHeartBeatTime);
|
|
|
|
BackgroundFetch.finish(taskId);
|
|
|
|
}
|
|
|
|
|
2021-08-04 17:27:06 +00:00
|
|
|
class EnteApp extends StatefulWidget {
|
2021-07-22 09:29:46 +00:00
|
|
|
static const _homeWidget = HomeWidget();
|
2021-03-21 08:32:10 +00:00
|
|
|
|
2020-04-05 08:31:01 +00:00
|
|
|
@override
|
2021-08-04 17:27:06 +00:00
|
|
|
_EnteAppState createState() => _EnteAppState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _EnteAppState extends State<EnteApp> with WidgetsBindingObserver {
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2020-04-27 13:02:29 +00:00
|
|
|
WidgetsBinding.instance.addObserver(this);
|
2021-03-21 08:32:10 +00:00
|
|
|
_configureBackgroundFetch();
|
2021-08-04 17:27:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2021-05-08 14:24:24 +00:00
|
|
|
return MaterialApp(
|
|
|
|
title: "ente",
|
|
|
|
theme: themeData,
|
2021-08-04 17:27:06 +00:00
|
|
|
home: EnteApp._homeWidget,
|
2021-05-08 14:24:24 +00:00
|
|
|
debugShowCheckedModeBanner: false,
|
2021-06-28 18:25:35 +00:00
|
|
|
builder: EasyLoading.init(),
|
2021-03-21 08:32:10 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void didChangeAppLifecycleState(AppLifecycleState state) {
|
|
|
|
if (state == AppLifecycleState.resumed) {
|
|
|
|
_logger.info("App resumed");
|
|
|
|
_sync();
|
|
|
|
}
|
|
|
|
}
|
2020-04-27 13:02:29 +00:00
|
|
|
|
2021-03-21 08:32:10 +00:00
|
|
|
void _configureBackgroundFetch() {
|
2021-01-13 17:39:45 +00:00
|
|
|
BackgroundFetch.configure(
|
|
|
|
BackgroundFetchConfig(
|
|
|
|
minimumFetchInterval: 15,
|
|
|
|
forceAlarmManager: false,
|
|
|
|
stopOnTerminate: false,
|
|
|
|
startOnBoot: true,
|
|
|
|
enableHeadless: true,
|
|
|
|
requiresBatteryNotLow: false,
|
|
|
|
requiresCharging: false,
|
|
|
|
requiresStorageNotLow: false,
|
|
|
|
requiresDeviceIdle: false,
|
|
|
|
requiredNetworkType: NetworkType.NONE,
|
|
|
|
), (String taskId) async {
|
2021-03-01 22:09:15 +00:00
|
|
|
await _runInBackground(taskId);
|
2021-05-07 17:26:51 +00:00
|
|
|
}, (taskId) {
|
2021-05-07 17:44:19 +00:00
|
|
|
_logger.info("BG task timeout");
|
|
|
|
_killBGTask(taskId);
|
2021-01-13 17:39:45 +00:00
|
|
|
}).then((int status) {
|
2021-02-26 11:05:54 +00:00
|
|
|
_logger.info('[BackgroundFetch] configure success: $status');
|
2021-01-13 17:39:45 +00:00
|
|
|
}).catchError((e) {
|
2021-02-26 11:05:54 +00:00
|
|
|
_logger.info('[BackgroundFetch] configure ERROR: $e');
|
2021-01-13 17:39:45 +00:00
|
|
|
});
|
2020-04-27 13:02:29 +00:00
|
|
|
}
|
2020-04-05 08:31:01 +00:00
|
|
|
}
|