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';
|
2020-03-24 19:59:36 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2021-01-08 17:11:32 +00:00
|
|
|
import 'package:in_app_purchase/in_app_purchase.dart';
|
2020-05-02 16:28:54 +00:00
|
|
|
import 'package:path_provider/path_provider.dart';
|
|
|
|
import 'package:photos/core/constants.dart';
|
2020-05-04 20:08:20 +00:00
|
|
|
import 'package:photos/core/configuration.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';
|
2020-10-03 17:56:18 +00:00
|
|
|
import 'package:photos/services/memories_service.dart';
|
2020-10-03 17:58:26 +00:00
|
|
|
import 'package:photos/services/sync_service.dart';
|
2020-05-04 20:08:20 +00:00
|
|
|
import 'package:photos/ui/home_widget.dart';
|
2021-01-26 11:46:14 +00:00
|
|
|
import 'package:photos/utils/crypto_util.dart';
|
2020-05-02 11:46:59 +00:00
|
|
|
import 'package:sentry/sentry.dart';
|
2020-05-03 20:27:06 +00:00
|
|
|
import 'package:super_logging/super_logging.dart';
|
2020-05-02 16:28:54 +00:00
|
|
|
import 'package:logging/logging.dart';
|
|
|
|
|
2020-08-21 23:28:52 +00:00
|
|
|
final _logger = Logger("main");
|
2021-01-13 17:39:45 +00:00
|
|
|
bool _isInitialized = false;
|
2020-03-24 19:59:36 +00:00
|
|
|
|
|
|
|
void main() async {
|
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
2021-01-13 17:39:45 +00:00
|
|
|
await _runWithLogs(_main);
|
2020-05-02 16:28:54 +00:00
|
|
|
}
|
|
|
|
|
2020-05-25 13:32:09 +00:00
|
|
|
void _main() async {
|
2021-01-13 17:39:45 +00:00
|
|
|
await _init();
|
2020-06-15 18:38:08 +00:00
|
|
|
_sync();
|
2020-05-02 11:46:59 +00:00
|
|
|
|
2020-05-02 16:28:54 +00:00
|
|
|
final SentryClient sentry = new SentryClient(dsn: SENTRY_DSN);
|
2020-05-02 11:46:59 +00:00
|
|
|
|
|
|
|
FlutterError.onError = (FlutterErrorDetails details) async {
|
|
|
|
FlutterError.dumpErrorToConsole(details, forceReport: true);
|
|
|
|
_sendErrorToSentry(sentry, details.exception, details.stack);
|
|
|
|
};
|
|
|
|
|
|
|
|
runZoned(
|
2021-01-13 17:39:45 +00:00
|
|
|
() {
|
|
|
|
runApp(MyApp());
|
|
|
|
BackgroundFetch.registerHeadlessTask(backgroundFetchHeadlessTask);
|
|
|
|
},
|
|
|
|
onError: (Object error, StackTrace stackTrace) {
|
|
|
|
_sendErrorToSentry(sentry, error, stackTrace);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future _init() async {
|
|
|
|
_logger.info("Initializing...");
|
|
|
|
InAppPurchaseConnection.enablePendingPurchases();
|
2021-01-26 11:46:14 +00:00
|
|
|
CryptoUtil.init();
|
2021-01-13 17:39:45 +00:00
|
|
|
await Configuration.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();
|
|
|
|
await SyncService.instance.init();
|
|
|
|
await MemoriesService.instance.init();
|
|
|
|
_isInitialized = true;
|
2020-05-02 11:46:59 +00:00
|
|
|
}
|
|
|
|
|
2021-01-13 17:39:45 +00:00
|
|
|
Future<void> _sync({bool isAppInBackground = false}) async {
|
|
|
|
try {
|
|
|
|
await SyncService.instance.sync(isAppInBackground: isAppInBackground);
|
|
|
|
} 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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This "Headless Task" is run when app is terminated.
|
|
|
|
void backgroundFetchHeadlessTask(String taskId) async {
|
|
|
|
print("[BackgroundFetch] Headless event received: $taskId");
|
2021-01-13 18:33:02 +00:00
|
|
|
if (!_isInitialized) {
|
|
|
|
await _runWithLogs(() async {
|
2021-01-13 17:39:45 +00:00
|
|
|
await _init();
|
2021-01-13 18:33:02 +00:00
|
|
|
await _sync(isAppInBackground: true);
|
|
|
|
});
|
|
|
|
} else {
|
2021-01-13 17:39:45 +00:00
|
|
|
await _sync(isAppInBackground: true);
|
2021-01-13 18:33:02 +00:00
|
|
|
}
|
2021-01-13 17:39:45 +00:00
|
|
|
BackgroundFetch.finish(taskId);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future _runWithLogs(Function() function) async {
|
|
|
|
await SuperLogging.main(LogConfig(
|
|
|
|
body: function,
|
|
|
|
logDirPath: (await getTemporaryDirectory()).path + "/logs",
|
|
|
|
enableInDebugMode: true,
|
|
|
|
maxLogFiles: 5,
|
|
|
|
));
|
2020-06-15 18:38:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-02 16:28:54 +00:00
|
|
|
void _sendErrorToSentry(SentryClient sentry, Object error, StackTrace stack) {
|
2020-08-21 23:28:52 +00:00
|
|
|
_logger.shout("Uncaught error", error, stack);
|
2020-05-02 11:46:59 +00:00
|
|
|
try {
|
|
|
|
sentry.captureException(
|
|
|
|
exception: error,
|
2020-05-02 16:28:54 +00:00
|
|
|
stackTrace: stack,
|
2020-05-02 11:46:59 +00:00
|
|
|
);
|
|
|
|
print('Error sent to sentry.io: $error');
|
|
|
|
} catch (e) {
|
|
|
|
print('Sending report to sentry.io failed: $e');
|
|
|
|
print('Original error: $error');
|
|
|
|
}
|
2020-03-24 19:59:36 +00:00
|
|
|
}
|
2020-03-27 16:07:55 +00:00
|
|
|
|
2020-04-27 13:02:29 +00:00
|
|
|
class MyApp extends StatelessWidget with WidgetsBindingObserver {
|
2020-08-07 15:58:15 +00:00
|
|
|
final _title = 'ente';
|
2020-04-05 08:31:01 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-04-27 13:02:29 +00:00
|
|
|
WidgetsBinding.instance.addObserver(this);
|
|
|
|
|
2021-01-13 17:39:45 +00:00
|
|
|
// Configure BackgroundFetch.
|
|
|
|
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 {
|
|
|
|
print("[BackgroundFetch] event received: $taskId");
|
|
|
|
await _sync(isAppInBackground: true);
|
|
|
|
BackgroundFetch.finish(taskId);
|
|
|
|
}).then((int status) {
|
|
|
|
print('[BackgroundFetch] configure success: $status');
|
|
|
|
}).catchError((e) {
|
|
|
|
print('[BackgroundFetch] configure ERROR: $e');
|
|
|
|
});
|
|
|
|
|
2020-04-14 15:36:18 +00:00
|
|
|
return MaterialApp(
|
|
|
|
title: _title,
|
2020-12-03 19:36:18 +00:00
|
|
|
theme: ThemeData(
|
2020-12-12 00:31:06 +00:00
|
|
|
fontFamily: 'Ubuntu',
|
2020-12-03 19:36:18 +00:00
|
|
|
brightness: Brightness.dark,
|
2020-08-25 06:00:19 +00:00
|
|
|
hintColor: Colors.grey,
|
2021-02-05 11:07:29 +00:00
|
|
|
accentColor: Color.fromRGBO(45, 194, 98, 1.0),
|
|
|
|
buttonColor: Color.fromRGBO(45, 194, 98, 1.0),
|
2020-10-09 23:46:51 +00:00
|
|
|
buttonTheme: ButtonThemeData().copyWith(
|
2021-02-05 11:07:29 +00:00
|
|
|
buttonColor: Color.fromRGBO(45, 194, 98, 1.0),
|
2020-10-09 23:46:51 +00:00
|
|
|
),
|
2021-02-05 11:07:29 +00:00
|
|
|
toggleableActiveColor: Colors.green[400],
|
2021-02-01 15:57:40 +00:00
|
|
|
scaffoldBackgroundColor: Colors.black,
|
2021-02-05 11:07:29 +00:00
|
|
|
backgroundColor: Colors.black,
|
|
|
|
appBarTheme: AppBarTheme().copyWith(
|
|
|
|
color: Color.fromRGBO(20, 20, 20, 1.0),
|
|
|
|
),
|
|
|
|
cardColor: Color.fromRGBO(25, 25, 25, 1.0),
|
2021-02-05 19:48:20 +00:00
|
|
|
dialogTheme: DialogTheme().copyWith(
|
|
|
|
backgroundColor: Color.fromRGBO(20, 20, 20, 1.0),
|
|
|
|
),
|
2020-08-25 06:00:19 +00:00
|
|
|
),
|
2020-05-04 20:03:06 +00:00
|
|
|
home: HomeWidget(_title),
|
2020-04-05 08:31:01 +00:00
|
|
|
);
|
|
|
|
}
|
2020-04-27 13:02:29 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
void didChangeAppLifecycleState(AppLifecycleState state) {
|
|
|
|
if (state == AppLifecycleState.resumed) {
|
2020-11-30 10:47:06 +00:00
|
|
|
_logger.info("App resumed");
|
2020-06-15 18:38:08 +00:00
|
|
|
_sync();
|
2020-04-27 13:02:29 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-05 08:31:01 +00:00
|
|
|
}
|