ente/lib/ui/password_reentry_page.dart

112 lines
3.8 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:logging/logging.dart';
import 'package:photos/core/configuration.dart';
2021-01-06 16:09:42 +00:00
import 'package:photos/services/billing_service.dart';
2020-10-24 21:07:12 +00:00
import 'package:photos/ui/common_elements.dart';
2021-01-06 16:09:42 +00:00
import 'package:photos/ui/subscription_page.dart';
import 'package:photos/utils/dialog_util.dart';
2021-01-05 14:27:02 +00:00
class PasswordReentryPage extends StatefulWidget {
PasswordReentryPage({Key key}) : super(key: key);
@override
2021-01-05 14:27:02 +00:00
_PasswordReentryPageState createState() => _PasswordReentryPageState();
}
2021-01-05 14:27:02 +00:00
class _PasswordReentryPageState extends State<PasswordReentryPage> {
2021-01-05 15:26:10 +00:00
final _passwordController = TextEditingController();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
leading: Icon(Icons.lock),
title: Text(
2021-01-05 15:26:10 +00:00
"encryption password",
),
),
body: _getBody(),
);
}
Widget _getBody() {
return SingleChildScrollView(
child: Container(
padding: EdgeInsets.fromLTRB(16, 40, 16, 16),
child: Column(
children: [
Image.asset(
"assets/vault.png",
width: 196,
height: 196,
),
Padding(padding: EdgeInsets.all(20)),
2021-01-05 15:26:10 +00:00
Padding(
padding: const EdgeInsets.fromLTRB(32, 0, 32, 0),
child: TextFormField(
decoration: InputDecoration(
hintText: "enter your password",
contentPadding: EdgeInsets.all(20),
),
style: TextStyle(
fontSize: 14,
),
controller: _passwordController,
autofocus: false,
autocorrect: false,
obscureText: true,
keyboardType: TextInputType.visiblePassword,
onChanged: (_) {
setState(() {});
},
),
),
Padding(padding: EdgeInsets.all(12)),
2020-10-24 21:07:12 +00:00
Container(
2020-12-12 00:31:06 +00:00
padding: const EdgeInsets.fromLTRB(80, 0, 80, 0),
width: double.infinity,
2020-12-12 00:31:06 +00:00
height: 64,
2020-10-24 21:07:12 +00:00
child: button(
2021-01-05 15:26:10 +00:00
"sign in",
fontSize: 18,
onPressed: _passwordController.text.isNotEmpty
? () async {
final dialog =
2021-01-05 15:26:10 +00:00
createProgressDialog(context, "please wait...");
await dialog.show();
try {
await Configuration.instance.decryptAndSaveKey(
2021-01-05 15:26:10 +00:00
_passwordController.text,
Configuration.instance.getKeyAttributes());
} catch (e) {
Logger("PRP").warning(e);
await dialog.hide();
2021-01-05 15:26:10 +00:00
showErrorDialog(context, "incorrect password",
"please try again");
return;
}
await dialog.hide();
if (!BillingService.instance
.hasActiveSubscription()) {
2021-01-06 16:09:42 +00:00
Navigator.of(context).push(
MaterialPageRoute(
builder: (BuildContext context) {
return SubscriptionPage();
},
),
);
} else {
Navigator.of(context)
.popUntil((route) => route.isFirst);
2021-01-06 16:09:42 +00:00
}
}
: null,
)),
],
),
),
);
}
}