yubioath-flutter/lib/oath/views/account_mixin.dart

263 lines
7.7 KiB
Dart
Raw Normal View History

import 'dart:async';
2022-04-05 18:12:11 +03:00
import 'dart:ui';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
2022-03-25 17:43:32 +03:00
import '../../app/message.dart';
import '../../app/models.dart';
import '../../app/state.dart';
2022-04-05 18:12:11 +03:00
import '../../widgets/circle_timer.dart';
import '../models.dart';
import '../state.dart';
import 'delete_account_dialog.dart';
import 'rename_account_dialog.dart';
2022-03-03 15:55:07 +03:00
class _StrikethroughClipper extends CustomClipper<Path> {
@override
Path getClip(Size size) {
Path path = Path()
..moveTo(0, 2)
..lineTo(0, size.height)
..lineTo(size.width - 2, size.height)
..lineTo(0, 2)
..moveTo(2, 0)
..lineTo(size.width, size.height - 2)
..lineTo(size.width, 0)
..lineTo(2, 0)
..close();
return path;
}
@override
bool shouldReclip(covariant CustomClipper<Path> oldClipper) {
return false;
}
}
class _StrikethroughPainter extends CustomPainter {
final Color color;
_StrikethroughPainter(this.color);
@override
void paint(Canvas canvas, Size size) {
final paint = Paint();
paint.color = color;
paint.strokeWidth = 1.3;
canvas.drawLine(Offset(size.width * 0.15, size.height * 0.15),
Offset(size.width * 0.8, size.height * 0.8), paint);
}
@override
bool shouldRepaint(covariant CustomPainter oldDelegate) {
return false;
}
}
mixin AccountMixin {
OathCredential get credential;
@protected
String get label => credential.issuer != null
? '${credential.issuer} (${credential.name})'
: credential.name;
2022-03-31 13:25:14 +03:00
@protected
String get title => credential.issuer ?? credential.name;
@protected
String? get subtitle => credential.issuer != null ? credential.name : null;
@protected
OathCode? getCode(WidgetRef ref) => ref.watch(codeProvider(credential));
@protected
2022-03-31 13:25:14 +03:00
String formatCode(OathCode? code) {
final value = code?.value;
if (value == null) {
return '';
} else if (value.length < 6) {
return value;
} else {
var i = value.length ~/ 2;
2022-05-12 09:34:51 +03:00
return '${value.substring(0, i)} ${value.substring(i)}';
}
}
@protected
2022-03-31 13:25:14 +03:00
bool isExpired(OathCode? code, WidgetRef ref) {
return code == null ||
(credential.oathType == OathType.totp &&
ref.watch(expiredProvider(code.validTo)));
}
@protected
2022-03-03 15:55:07 +03:00
bool isPinned(WidgetRef ref) =>
ref.watch(favoritesProvider).contains(credential.id);
@protected
Future<OathCode> calculateCode(BuildContext context, WidgetRef ref) async {
final node = ref.read(currentDeviceProvider)!;
return await ref
.read(credentialListProvider(node.path).notifier)
.calculate(credential);
}
@protected
void copyToClipboard(BuildContext context, WidgetRef ref) {
final code = getCode(ref);
if (code != null) {
Clipboard.setData(ClipboardData(text: code.value));
2022-03-25 17:43:32 +03:00
showMessage(context, 'Code copied to clipboard');
}
}
@protected
Future<OathCredential?> renameCredential(
BuildContext context, WidgetRef ref) async {
final node = ref.read(currentDeviceProvider)!;
return await showDialog(
context: context,
builder: (context) => RenameAccountDialog(node, credential),
);
}
@protected
Future<bool> deleteCredential(BuildContext context, WidgetRef ref) async {
final node = ref.read(currentDeviceProvider)!;
return await showDialog(
context: context,
builder: (context) => DeleteAccountDialog(node, credential),
) ??
false;
}
@protected
2022-03-03 15:55:07 +03:00
List<MenuAction> buildActions(BuildContext context, WidgetRef ref) {
final deviceData = ref.watch(currentDeviceDataProvider);
if (deviceData == null) {
return [];
}
final code = getCode(ref);
2022-03-31 13:25:14 +03:00
final expired = isExpired(code, ref);
final manual =
credential.touchRequired || credential.oathType == OathType.hotp;
final ready = expired || credential.oathType == OathType.hotp;
2022-03-03 15:55:07 +03:00
final pinned = isPinned(ref);
return [
MenuAction(
text: 'Copy to clipboard',
icon: const Icon(Icons.copy),
action: code == null || expired
? null
: (context) {
Clipboard.setData(ClipboardData(text: code.value));
2022-03-25 17:43:32 +03:00
showMessage(context, 'Code copied to clipboard');
},
),
2022-05-18 18:29:50 +03:00
if (manual)
MenuAction(
text: 'Calculate',
icon: const Icon(Icons.refresh),
action: ready
? (context) {
calculateCode(context, ref);
}
: null,
),
MenuAction(
2022-03-03 16:23:51 +03:00
text: pinned ? 'Unpin account' : 'Pin account',
2022-03-03 15:55:07 +03:00
//TODO: Replace this with a custom icon.
icon: pinned
? Builder(builder: (context) {
return CustomPaint(
painter: _StrikethroughPainter(
IconTheme.of(context).color ?? Colors.black),
child: ClipPath(
clipper: _StrikethroughClipper(),
child: const Icon(Icons.push_pin)),
);
})
2022-04-05 14:20:22 +03:00
: const Icon(Icons.push_pin_outlined),
action: (context) {
ref.read(favoritesProvider.notifier).toggleFavorite(credential.id);
},
),
if (deviceData.info.version.isAtLeast(5, 3))
MenuAction(
2022-04-05 14:20:22 +03:00
icon: const Icon(Icons.edit_outlined),
text: 'Rename account',
action: (context) async {
await renameCredential(context, ref);
},
),
MenuAction(
text: 'Delete account',
2022-05-18 11:53:22 +03:00
icon: const Icon(Icons.delete_outline),
action: (context) async {
await deleteCredential(context, ref);
},
),
];
}
2022-04-05 18:12:11 +03:00
@protected
2022-05-20 12:10:49 +03:00
Widget buildCodeView(WidgetRef ref) {
2022-04-05 18:12:11 +03:00
final code = getCode(ref);
final expired = isExpired(code, ref);
2022-05-18 18:29:50 +03:00
return AnimatedSize(
alignment: Alignment.centerRight,
duration: const Duration(milliseconds: 100),
2022-05-20 12:10:49 +03:00
child: Builder(builder: (context) {
return Row(
2022-05-18 18:29:50 +03:00
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: code == null
? [
Icon(
credential.oathType == OathType.hotp
? Icons.refresh
: Icons.touch_app,
),
2022-05-20 12:10:49 +03:00
const Text(''),
2022-05-18 18:29:50 +03:00
]
: [
if (credential.oathType == OathType.totp) ...[
...expired
? [
if (credential.touchRequired) ...[
2022-05-20 12:10:49 +03:00
const Icon(Icons.touch_app),
2022-04-05 18:12:11 +03:00
const SizedBox(width: 8.0),
2022-05-18 18:29:50 +03:00
]
]
: [
SizedBox.square(
2022-05-20 12:10:49 +03:00
dimension:
(IconTheme.of(context).size ?? 18) * 0.8,
2022-05-18 18:29:50 +03:00
child: CircleTimer(
code.validFrom * 1000,
code.validTo * 1000,
),
),
const SizedBox(width: 8.0),
],
],
Opacity(
opacity: expired ? 0.4 : 1.0,
child: Text(
formatCode(code),
2022-05-20 12:10:49 +03:00
style: const TextStyle(
fontFeatures: [FontFeature.tabularFigures()],
//fontWeight: FontWeight.w400,
2022-04-05 18:12:11 +03:00
),
),
2022-05-18 18:29:50 +03:00
),
],
2022-05-20 12:10:49 +03:00
);
}),
2022-04-05 18:12:11 +03:00
);
}
}