mirror of
https://github.com/lollipopkit/flutter_server_box.git
synced 2025-12-17 15:24:35 +01:00
477 lines
14 KiB
Dart
477 lines
14 KiB
Dart
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:computer/computer.dart';
|
|
import 'package:fl_lib/fl_lib.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:server_box/core/extension/context/locale.dart';
|
|
import 'package:server_box/core/utils/sync/icloud.dart';
|
|
import 'package:server_box/core/utils/sync/webdav.dart';
|
|
import 'package:server_box/data/model/app/backup.dart';
|
|
import 'package:server_box/data/model/server/server_private_info.dart';
|
|
import 'package:server_box/data/model/server/snippet.dart';
|
|
import 'package:server_box/data/res/misc.dart';
|
|
import 'package:server_box/data/res/provider.dart';
|
|
import 'package:server_box/data/res/store.dart';
|
|
import 'package:icons_plus/icons_plus.dart';
|
|
|
|
final icloudLoading = false.vn;
|
|
final webdavLoading = false.vn;
|
|
|
|
class BackupPage extends StatelessWidget {
|
|
const BackupPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: CustomAppBar(title: Text(libL10n.backup)),
|
|
body: _buildBody(context),
|
|
);
|
|
}
|
|
|
|
Widget _buildBody(BuildContext context) {
|
|
return ListView(
|
|
padding: const EdgeInsets.all(13),
|
|
children: [
|
|
_buildTip(),
|
|
CenterGreyTitle(libL10n.sync),
|
|
if (isMacOS || isIOS) _buildIcloud(context),
|
|
_buildWebdav(context),
|
|
_buildFile(context),
|
|
_buildClipboard(context),
|
|
CenterGreyTitle(libL10n.import),
|
|
_buildBulkImportServers(context),
|
|
_buildImportSnippet(context),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildTip() {
|
|
return CardX(
|
|
child: ListTile(
|
|
leading: const Icon(Icons.warning),
|
|
title: Text(libL10n.attention),
|
|
subtitle: Text(l10n.backupTip, style: UIs.textGrey),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildFile(BuildContext context) {
|
|
return CardX(
|
|
child: ExpandTile(
|
|
leading: const Icon(Icons.file_open),
|
|
title: Text(libL10n.file),
|
|
initiallyExpanded: false,
|
|
children: [
|
|
ListTile(
|
|
title: Text(libL10n.backup),
|
|
trailing: const Icon(Icons.save),
|
|
onTap: () async {
|
|
final path = await Backup.backup();
|
|
await Pfs.share(path: path);
|
|
},
|
|
),
|
|
ListTile(
|
|
trailing: const Icon(Icons.restore),
|
|
title: Text(libL10n.restore),
|
|
onTap: () async => _onTapFileRestore(context),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildIcloud(BuildContext context) {
|
|
return CardX(
|
|
child: ListTile(
|
|
leading: const Icon(Icons.cloud),
|
|
title: const Text('iCloud'),
|
|
trailing: StoreSwitch(
|
|
prop: Stores.setting.icloudSync,
|
|
validator: (p0) {
|
|
if (p0 && Stores.setting.webdavSync.fetch()) {
|
|
context.showSnackBar(l10n.autoBackupConflict);
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
callback: (val) async {
|
|
if (val) {
|
|
icloudLoading.value = true;
|
|
await ICloud.sync();
|
|
icloudLoading.value = false;
|
|
}
|
|
},
|
|
),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildWebdav(BuildContext context) {
|
|
return CardX(
|
|
child: ExpandTile(
|
|
leading: const Icon(Icons.storage),
|
|
title: const Text('WebDAV'),
|
|
initiallyExpanded: false,
|
|
children: [
|
|
ListTile(
|
|
title: Text(l10n.setting),
|
|
trailing: const Icon(Icons.settings),
|
|
onTap: () async => _onTapWebdavSetting(context),
|
|
),
|
|
ListTile(
|
|
title: Text(l10n.auto),
|
|
trailing: StoreSwitch(
|
|
prop: Stores.setting.webdavSync,
|
|
validator: (p0) {
|
|
if (p0) {
|
|
if (Stores.setting.webdavUrl.fetch().isEmpty ||
|
|
Stores.setting.webdavUser.fetch().isEmpty ||
|
|
Stores.setting.webdavPwd.fetch().isEmpty) {
|
|
context.showSnackBar(l10n.webdavSettingEmpty);
|
|
return false;
|
|
}
|
|
}
|
|
if (Stores.setting.icloudSync.fetch()) {
|
|
context.showSnackBar(l10n.autoBackupConflict);
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
callback: (val) async {
|
|
if (val) {
|
|
webdavLoading.value = true;
|
|
await Webdav.sync();
|
|
webdavLoading.value = false;
|
|
}
|
|
},
|
|
),
|
|
),
|
|
ListTile(
|
|
title: Text(l10n.manual),
|
|
trailing: ListenableBuilder(
|
|
listenable: webdavLoading,
|
|
builder: (_, __) {
|
|
if (webdavLoading.value) {
|
|
return UIs.centerSizedLoadingSmall;
|
|
}
|
|
return Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
TextButton(
|
|
onPressed: () async => _onTapWebdavDl(context),
|
|
child: Text(libL10n.restore),
|
|
),
|
|
UIs.width7,
|
|
TextButton(
|
|
onPressed: () async => _onTapWebdavUp(context),
|
|
child: Text(libL10n.backup),
|
|
),
|
|
],
|
|
);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildClipboard(BuildContext context) {
|
|
return CardX(
|
|
child: ExpandTile(
|
|
leading: const Icon(Icons.content_paste),
|
|
title: Text(libL10n.clipboard),
|
|
children: [
|
|
ListTile(
|
|
title: Text(libL10n.backup),
|
|
trailing: const Icon(Icons.save),
|
|
onTap: () async {
|
|
final path = await Backup.backup();
|
|
Pfs.copy(await File(path).readAsString());
|
|
context.showSnackBar(l10n.success);
|
|
},
|
|
),
|
|
ListTile(
|
|
trailing: const Icon(Icons.restore),
|
|
title: Text(libL10n.restore),
|
|
onTap: () async => _onTapClipboardRestore(context),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildBulkImportServers(BuildContext context) {
|
|
return CardX(
|
|
child: ListTile(
|
|
title: Text(l10n.server),
|
|
leading: const Icon(BoxIcons.bx_server),
|
|
onTap: () => _onBulkImportServers(context),
|
|
trailing: const Icon(Icons.keyboard_arrow_right),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildImportSnippet(BuildContext context) {
|
|
return ListTile(
|
|
title: Text(l10n.snippet),
|
|
leading: const Icon(MingCute.code_line),
|
|
trailing: const Icon(Icons.keyboard_arrow_right),
|
|
onTap: () async {
|
|
final data = await context.showImportDialog(
|
|
title: l10n.snippet,
|
|
modelDef: Snippet.example.toJson(),
|
|
);
|
|
if (data == null) return;
|
|
final str = String.fromCharCodes(data);
|
|
final (list, _) = await context.showLoadingDialog(
|
|
fn: () => Computer.shared.start((s) {
|
|
return json.decode(s) as List;
|
|
}, str),
|
|
);
|
|
if (list == null || list.isEmpty) return;
|
|
final snippets = <Snippet>[];
|
|
final errs = <String>[];
|
|
for (final item in list) {
|
|
try {
|
|
final snippet = Snippet.fromJson(item);
|
|
snippets.add(snippet);
|
|
} catch (e) {
|
|
errs.add(e.toString());
|
|
}
|
|
}
|
|
if (snippets.isEmpty) {
|
|
context.showSnackBar(libL10n.empty);
|
|
return;
|
|
}
|
|
if (errs.isNotEmpty) {
|
|
context.showRoundDialog(
|
|
title: libL10n.error,
|
|
child: SingleChildScrollView(child: Text(errs.join('\n'))),
|
|
);
|
|
return;
|
|
}
|
|
final snippetNames = snippets.map((e) => e.name).join(', ');
|
|
context.showRoundDialog(
|
|
title: libL10n.attention,
|
|
child: SingleChildScrollView(
|
|
child: Text(
|
|
libL10n.askContinue('${libL10n.import} [$snippetNames]'),
|
|
),
|
|
),
|
|
actions: Btn.ok(
|
|
onTap: () {
|
|
for (final snippet in snippets) {
|
|
Pros.snippet.add(snippet);
|
|
}
|
|
context.pop();
|
|
context.pop();
|
|
},
|
|
).toList,
|
|
);
|
|
},
|
|
).cardx;
|
|
}
|
|
|
|
Future<void> _onTapFileRestore(BuildContext context) async {
|
|
final text = await Pfs.pickFileString();
|
|
if (text == null) return;
|
|
|
|
try {
|
|
final (backup, err) = await context.showLoadingDialog(
|
|
fn: () => Computer.shared.start(Backup.fromJsonString, text.trim()),
|
|
);
|
|
if (err != null || backup == null) return;
|
|
if (backupFormatVersion != backup.version) {
|
|
context.showSnackBar(l10n.backupVersionNotMatch);
|
|
return;
|
|
}
|
|
|
|
await context.showRoundDialog(
|
|
title: libL10n.restore,
|
|
child: Text(libL10n.askContinue(
|
|
'${libL10n.restore} ${libL10n.backup}(${backup.date})',
|
|
)),
|
|
actions: Btn.ok(
|
|
onTap: () async {
|
|
await backup.restore(force: true);
|
|
context.pop();
|
|
},
|
|
).toList,
|
|
);
|
|
} catch (e, s) {
|
|
Loggers.app.warning('Import backup failed', e, s);
|
|
context.showErrDialog(e: e, s: s, operation: libL10n.restore);
|
|
}
|
|
}
|
|
|
|
Future<void> _onTapWebdavDl(BuildContext context) async {
|
|
webdavLoading.value = true;
|
|
try {
|
|
final files = await Webdav.list();
|
|
if (files.isEmpty) return context.showSnackBar(l10n.dirEmpty);
|
|
|
|
final fileName = await context.showPickSingleDialog(
|
|
title: libL10n.restore,
|
|
items: files,
|
|
);
|
|
if (fileName == null) return;
|
|
|
|
final result = await Webdav.download(relativePath: fileName);
|
|
if (result != null) {
|
|
throw result;
|
|
}
|
|
final dlFile = await File('${Paths.doc}/$fileName').readAsString();
|
|
final dlBak = await Computer.shared.start(Backup.fromJsonString, dlFile);
|
|
await dlBak.restore(force: true);
|
|
} catch (e, s) {
|
|
context.showErrDialog(e: e, s: s, operation: libL10n.restore);
|
|
Loggers.app.warning('Download webdav backup failed', e, s);
|
|
} finally {
|
|
webdavLoading.value = false;
|
|
}
|
|
}
|
|
|
|
Future<void> _onTapWebdavUp(BuildContext context) async {
|
|
webdavLoading.value = true;
|
|
final date = DateTime.now().ymdhms(ymdSep: "-", hmsSep: "-", sep: "-");
|
|
final bakName = '$date-${Miscs.bakFileName}';
|
|
try {
|
|
await Backup.backup(bakName);
|
|
final uploadResult = await Webdav.upload(relativePath: bakName);
|
|
if (uploadResult != null) {
|
|
throw uploadResult;
|
|
}
|
|
Loggers.app.info('Upload webdav backup success');
|
|
} catch (e, s) {
|
|
context.showErrDialog(e: e, s: s, operation: l10n.upload);
|
|
Loggers.app.warning('Upload webdav backup failed', e, s);
|
|
} finally {
|
|
webdavLoading.value = false;
|
|
}
|
|
}
|
|
|
|
Future<void> _onTapWebdavSetting(BuildContext context) async {
|
|
final url = TextEditingController(text: Stores.setting.webdavUrl.fetch());
|
|
final user = TextEditingController(text: Stores.setting.webdavUser.fetch());
|
|
final pwd = TextEditingController(text: Stores.setting.webdavPwd.fetch());
|
|
final nodeUser = FocusNode();
|
|
final nodePwd = FocusNode();
|
|
final result = await context.showRoundDialog<bool>(
|
|
title: 'WebDAV',
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Input(
|
|
label: 'URL',
|
|
hint: 'https://example.com/webdav/',
|
|
controller: url,
|
|
suggestion: false,
|
|
onSubmitted: (p0) => FocusScope.of(context).requestFocus(nodeUser),
|
|
),
|
|
Input(
|
|
label: libL10n.user,
|
|
controller: user,
|
|
node: nodeUser,
|
|
suggestion: false,
|
|
onSubmitted: (p0) => FocusScope.of(context).requestFocus(nodePwd),
|
|
),
|
|
Input(
|
|
label: l10n.pwd,
|
|
controller: pwd,
|
|
node: nodePwd,
|
|
suggestion: false,
|
|
onSubmitted: (_) => context.pop(true),
|
|
),
|
|
],
|
|
),
|
|
actions: Btnx.oks,
|
|
);
|
|
if (result == true) {
|
|
final result = await Webdav.test(url.text, user.text, pwd.text);
|
|
if (result != null) {
|
|
context.showSnackBar(result);
|
|
return;
|
|
}
|
|
context.showSnackBar(l10n.success);
|
|
Webdav.changeClient(url.text, user.text, pwd.text);
|
|
}
|
|
}
|
|
|
|
void _onTapClipboardRestore(BuildContext context) async {
|
|
final text = await Pfs.paste();
|
|
if (text == null || text.isEmpty) {
|
|
context.showSnackBar(libL10n.empty);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
final (backup, err) = await context.showLoadingDialog(
|
|
fn: () => Computer.shared.start(Backup.fromJsonString, text.trim()),
|
|
);
|
|
if (err != null || backup == null) return;
|
|
|
|
if (backupFormatVersion != backup.version) {
|
|
context.showSnackBar(l10n.backupVersionNotMatch);
|
|
return;
|
|
}
|
|
|
|
await context.showRoundDialog(
|
|
title: libL10n.restore,
|
|
child: Text(libL10n.askContinue(
|
|
'${libL10n.restore} ${libL10n.backup}(${backup.date})',
|
|
)),
|
|
actions: Btn.ok(
|
|
onTap: () async {
|
|
await backup.restore(force: true);
|
|
context.pop();
|
|
},
|
|
).toList,
|
|
);
|
|
} catch (e, s) {
|
|
Loggers.app.warning('Import backup failed', e, s);
|
|
context.showErrDialog(e: e, s: s, operation: libL10n.restore);
|
|
}
|
|
}
|
|
|
|
void _onBulkImportServers(BuildContext context) async {
|
|
final data = await context.showImportDialog(
|
|
title: l10n.server,
|
|
modelDef: ServerPrivateInfo.example.toJson(),
|
|
);
|
|
if (data == null) return;
|
|
final text = String.fromCharCodes(data);
|
|
|
|
try {
|
|
final (spis, err) = await context.showLoadingDialog(
|
|
fn: () => Computer.shared.start((val) {
|
|
final list = json.decode(val) as List;
|
|
return list.map((e) => ServerPrivateInfo.fromJson(e)).toList();
|
|
}, text.trim()),
|
|
);
|
|
if (err != null || spis == null) return;
|
|
final sure = await context.showRoundDialog<bool>(
|
|
title: libL10n.import,
|
|
child: Text(libL10n.askContinue('${spis.length} ${l10n.server}')),
|
|
actions: Btnx.oks,
|
|
);
|
|
if (sure == true) {
|
|
final (suc, err) = await context.showLoadingDialog(
|
|
fn: () async {
|
|
for (var spi in spis) {
|
|
Stores.server.put(spi);
|
|
}
|
|
return true;
|
|
},
|
|
);
|
|
if (err != null || suc != true) return;
|
|
context.showSnackBar(l10n.success);
|
|
}
|
|
} catch (e, s) {
|
|
context.showErrDialog(e: e, s: s, operation: libL10n.import);
|
|
Loggers.app.warning('Import servers failed', e, s);
|
|
}
|
|
}
|
|
}
|