123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473 |
- import 'dart:io';
- import 'package:flutter/cupertino.dart';
- import 'package:flutter/gestures.dart';
- import 'package:flutter/material.dart';
- import 'package:flutter/widgets.dart';
- import 'package:flutter_password_strength/flutter_password_strength.dart';
- import 'package:logging/logging.dart';
- import 'package:photos/core/configuration.dart';
- import 'package:photos/models/billing_plan.dart';
- import 'package:photos/services/billing_service.dart';
- import 'package:photos/services/user_service.dart';
- import 'package:photos/ui/common_elements.dart';
- import 'package:photos/ui/loading_widget.dart';
- import 'package:photos/ui/web_page.dart';
- import 'package:photos/utils/data_util.dart';
- import 'package:photos/utils/dialog_util.dart';
- import 'package:photos/utils/email_util.dart';
- class EmailEntryPage extends StatefulWidget {
- EmailEntryPage({Key key}) : super(key: key);
- @override
- _EmailEntryPageState createState() => _EmailEntryPageState();
- }
- class _EmailEntryPageState extends State<EmailEntryPage> {
- static const kPasswordStrengthThreshold = 0.4;
- static final _logger = Logger("EmailEntry");
- final _config = Configuration.instance;
- final _passwordController1 = TextEditingController(),
- _passwordController2 = TextEditingController();
- String _email;
- double _passwordStrength = 0;
- bool _hasAgreedToTOS = true;
- bool _hasAgreedToE2E = false;
- @override
- void initState() {
- _email = _config.getEmail();
- super.initState();
- }
- @override
- Widget build(BuildContext context) {
- final appBar = AppBar(
- title: Text(
- "sign up",
- style: TextStyle(
- fontSize: 18,
- ),
- ),
- );
- return Scaffold(
- appBar: appBar,
- body: _getBody(),
- resizeToAvoidBottomInset: false,
- );
- }
- Widget _getBody() {
- return Column(
- children: [
- FlutterPasswordStrength(
- password: _passwordController1.text,
- backgroundColor: Colors.white.withOpacity(0.1),
- strengthCallback: (strength) {
- _passwordStrength = strength;
- },
- ),
- Expanded(child: Container()),
- SingleChildScrollView(
- child: Container(
- padding: EdgeInsets.all(8),
- child: Column(
- crossAxisAlignment: CrossAxisAlignment.stretch,
- mainAxisAlignment: MainAxisAlignment.center,
- mainAxisSize: MainAxisSize.max,
- children: [
- Padding(
- padding: const EdgeInsets.fromLTRB(32, 0, 32, 0),
- child: TextFormField(
- decoration: InputDecoration(
- hintText: 'email',
- hintStyle: TextStyle(
- color: Colors.white30,
- ),
- contentPadding: EdgeInsets.all(12),
- ),
- onChanged: (value) {
- setState(() {
- _email = value;
- });
- },
- autocorrect: false,
- keyboardType: TextInputType.emailAddress,
- initialValue: _email,
- ),
- ),
- Padding(padding: EdgeInsets.all(8)),
- Padding(
- padding: const EdgeInsets.fromLTRB(32, 0, 32, 0),
- child: TextFormField(
- decoration: InputDecoration(
- hintText: "password",
- hintStyle: TextStyle(
- color: Colors.white30,
- ),
- contentPadding: EdgeInsets.all(12),
- ),
- controller: _passwordController1,
- autofocus: false,
- autocorrect: false,
- keyboardType: TextInputType.visiblePassword,
- onChanged: (_) {
- setState(() {});
- },
- ),
- ),
- Padding(padding: EdgeInsets.all(8)),
- Padding(
- padding: const EdgeInsets.fromLTRB(32, 0, 32, 0),
- child: TextFormField(
- decoration: InputDecoration(
- hintText: "confirm password",
- hintStyle: TextStyle(
- color: Colors.white30,
- ),
- contentPadding: EdgeInsets.all(12),
- ),
- controller: _passwordController2,
- autofocus: false,
- autocorrect: false,
- obscureText: true,
- keyboardType: TextInputType.visiblePassword,
- onChanged: (_) {
- setState(() {});
- },
- ),
- ),
- Padding(
- padding: EdgeInsets.all(20),
- ),
- _getAgreement(),
- Padding(padding: EdgeInsets.all(16)),
- Container(
- width: double.infinity,
- height: 64,
- padding: const EdgeInsets.fromLTRB(80, 0, 80, 0),
- child: button(
- "sign up",
- onPressed: _isFormValid()
- ? () {
- if (!isValidEmail(_email)) {
- showErrorDialog(context, "invalid email address",
- "please enter a valid email address.");
- } else if (_passwordController1.text !=
- _passwordController2.text) {
- showErrorDialog(context, "uhm...",
- "the passwords you entered don't match");
- } else if (_passwordStrength <
- kPasswordStrengthThreshold) {
- showErrorDialog(context, "weak password",
- "the password you have chosen is too simple, please choose another one");
- } else {
- _config.setVolatilePassword(
- _passwordController1.text);
- _config.setEmail(_email);
- UserService.instance.getOtt(context, _email);
- }
- }
- : null,
- fontSize: 18,
- ),
- ),
- ],
- ),
- ),
- ),
- Expanded(child: Container()),
- ],
- );
- }
- Container _getAgreement() {
- return Container(
- padding: const EdgeInsets.only(left: 20, right: 20),
- child: Column(
- children: [
- _getTOSAgreement(),
- _getPasswordAgreement(),
- ],
- ),
- );
- }
- Widget _getTOSAgreement() {
- return GestureDetector(
- onTap: () {
- setState(() {
- _hasAgreedToTOS = !_hasAgreedToTOS;
- });
- },
- behavior: HitTestBehavior.translucent,
- child: Row(
- children: [
- Checkbox(
- value: _hasAgreedToTOS,
- onChanged: (value) {
- setState(() {
- _hasAgreedToTOS = value;
- });
- }),
- Expanded(
- child: RichText(
- text: TextSpan(
- children: [
- TextSpan(
- text: "I agree to the ",
- ),
- TextSpan(
- text: "terms of service",
- style: TextStyle(
- color: Colors.blue,
- fontFamily: 'Ubuntu',
- ),
- recognizer: TapGestureRecognizer()
- ..onTap = () {
- Navigator.of(context).push(
- MaterialPageRoute(
- builder: (BuildContext context) {
- return WebPage("terms", "https://ente.io/terms");
- },
- ),
- );
- },
- ),
- TextSpan(text: " and "),
- TextSpan(
- text: "privacy policy",
- style: TextStyle(
- color: Colors.blue,
- fontFamily: 'Ubuntu',
- ),
- recognizer: TapGestureRecognizer()
- ..onTap = () {
- Navigator.of(context).push(
- MaterialPageRoute(
- builder: (BuildContext context) {
- return WebPage(
- "privacy", "https://ente.io/privacy");
- },
- ),
- );
- },
- ),
- ],
- style: TextStyle(
- height: 1.25,
- fontSize: 12,
- fontFamily: 'Ubuntu',
- color: Colors.white70,
- ),
- ),
- textAlign: TextAlign.left,
- ),
- ),
- ],
- ),
- );
- }
- Widget _getPasswordAgreement() {
- return GestureDetector(
- onTap: () {
- setState(() {
- _hasAgreedToE2E = !_hasAgreedToE2E;
- });
- },
- behavior: HitTestBehavior.translucent,
- child: Row(
- children: [
- Checkbox(
- value: _hasAgreedToE2E,
- onChanged: (value) {
- setState(() {
- _hasAgreedToE2E = value;
- });
- }),
- Expanded(
- child: RichText(
- text: TextSpan(
- children: [
- TextSpan(
- text:
- "I understand that if I lose my password, I may lose my data since my data is ",
- ),
- TextSpan(
- text: "end-to-end encrypted",
- style: TextStyle(
- color: Colors.blue,
- fontFamily: 'Ubuntu',
- ),
- recognizer: TapGestureRecognizer()
- ..onTap = () {
- Navigator.of(context).push(
- MaterialPageRoute(
- builder: (BuildContext context) {
- return WebPage(
- "encryption", "https://ente.io/encryption");
- },
- ),
- );
- },
- ),
- TextSpan(text: " with ente"),
- ],
- style: TextStyle(
- height: 1.5,
- fontSize: 12,
- fontFamily: 'Ubuntu',
- color: Colors.white70,
- ),
- ),
- textAlign: TextAlign.left,
- ),
- ),
- ],
- ),
- );
- }
- bool _isFormValid() {
- return _email != null &&
- _email.isNotEmpty &&
- _passwordController1.text.isNotEmpty &&
- _passwordController2.text.isNotEmpty &&
- _hasAgreedToTOS &&
- _hasAgreedToE2E;
- }
- }
- class PricingWidget extends StatelessWidget {
- const PricingWidget({
- Key key,
- }) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return FutureBuilder<BillingPlans>(
- future: BillingService.instance.getBillingPlans(),
- builder: (BuildContext context, AsyncSnapshot snapshot) {
- if (snapshot.hasData) {
- return _buildPlans(context, snapshot.data);
- } else if (snapshot.hasError) {
- return Text("Oops, something went wrong.");
- }
- return loadWidget;
- },
- );
- }
- Container _buildPlans(BuildContext context, BillingPlans plans) {
- final planWidgets = List<BillingPlanWidget>();
- for (final plan in plans.plans) {
- final productID = Platform.isAndroid ? plan.androidID : plan.iosID;
- if (productID != null && productID.isNotEmpty) {
- planWidgets.add(BillingPlanWidget(plan));
- }
- }
- final freePlan = plans.freePlan;
- return Container(
- height: 280,
- color: Theme.of(context).cardColor,
- child: Column(
- mainAxisAlignment: MainAxisAlignment.spaceEvenly,
- children: <Widget>[
- Text(
- "pricing",
- style: TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 18,
- ),
- ),
- SingleChildScrollView(
- scrollDirection: Axis.horizontal,
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- children: planWidgets,
- ),
- ),
- Text("we offer a free trial of " +
- convertBytesToReadableFormat(freePlan.storage) +
- " for " +
- freePlan.duration.toString() +
- " " +
- freePlan.period),
- GestureDetector(
- child: Row(
- mainAxisAlignment: MainAxisAlignment.center,
- crossAxisAlignment: CrossAxisAlignment.center,
- children: [
- Icon(
- Icons.close,
- size: 12,
- color: Colors.white38,
- ),
- Padding(padding: EdgeInsets.all(1)),
- Text(
- "close",
- style: TextStyle(
- color: Colors.white38,
- ),
- ),
- ],
- ),
- onTap: () => Navigator.pop(context),
- )
- ],
- ),
- );
- }
- }
- class BillingPlanWidget extends StatelessWidget {
- final BillingPlan plan;
- const BillingPlanWidget(
- this.plan, {
- Key key,
- }) : super(key: key);
- @override
- Widget build(BuildContext context) {
- return Padding(
- padding: const EdgeInsets.all(2.0),
- child: Card(
- shape: RoundedRectangleBorder(
- borderRadius: BorderRadius.circular(12.0),
- ),
- color: Colors.grey[850],
- child: Container(
- padding: EdgeInsets.fromLTRB(12, 20, 12, 20),
- child: Column(
- children: [
- Text(
- convertBytesToGBs(plan.storage, precision: 0).toString() +
- " GB",
- style: TextStyle(
- fontWeight: FontWeight.bold,
- fontSize: 16,
- ),
- ),
- Padding(
- padding: EdgeInsets.all(4),
- ),
- Text(
- plan.price + " / " + plan.period,
- style: TextStyle(
- fontSize: 12,
- color: Colors.white70,
- ),
- ),
- ],
- ),
- ),
- ),
- );
- }
- }
|