1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- // @dart=2.9
- import 'package:ente_auth/core/configuration.dart';
- import 'package:ente_auth/l10n/l10n.dart';
- import 'package:ente_auth/ui/settings/common_settings.dart';
- import 'package:ente_auth/ui/settings/settings_section_title.dart';
- import 'package:ente_auth/ui/settings/settings_text_item.dart';
- import 'package:expandable/expandable.dart';
- import 'package:flutter/material.dart';
- import 'package:flutter_sodium/flutter_sodium.dart';
- class DebugSectionWidget extends StatelessWidget {
- const DebugSectionWidget({Key key}) : super(key: key);
- @override
- Widget build(BuildContext context) {
- // This is a debug only section not shown to end users, so these strings are
- // not translated.
- return ExpandablePanel(
- header: const SettingsSectionTitle("Debug"),
- collapsed: Container(),
- expanded: _getSectionOptions(context),
- theme: getExpandableTheme(context),
- );
- }
- Widget _getSectionOptions(BuildContext context) {
- return Column(
- children: [
- GestureDetector(
- behavior: HitTestBehavior.translucent,
- onTap: () async {
- _showKeyAttributesDialog(context);
- },
- child: const SettingsTextItem(
- text: "Key attributes",
- icon: Icons.navigate_next,
- ),
- ),
- ],
- );
- }
- void _showKeyAttributesDialog(BuildContext context) {
- final l10n = context.l10n;
- final keyAttributes = Configuration.instance.getKeyAttributes();
- final AlertDialog alert = AlertDialog(
- title: const Text("key attributes"),
- content: SingleChildScrollView(
- child: Column(
- children: [
- const Text(
- "Key",
- style: TextStyle(fontWeight: FontWeight.bold),
- ),
- Text(Sodium.bin2base64(Configuration.instance.getKey())),
- const Padding(padding: EdgeInsets.all(12)),
- const Text(
- "Encrypted Key",
- style: TextStyle(fontWeight: FontWeight.bold),
- ),
- Text(keyAttributes.encryptedKey),
- const Padding(padding: EdgeInsets.all(12)),
- const Text(
- "Key Decryption Nonce",
- style: TextStyle(fontWeight: FontWeight.bold),
- ),
- Text(keyAttributes.keyDecryptionNonce),
- const Padding(padding: EdgeInsets.all(12)),
- const Text(
- "KEK Salt",
- style: TextStyle(fontWeight: FontWeight.bold),
- ),
- Text(keyAttributes.kekSalt),
- const Padding(padding: EdgeInsets.all(12)),
- ],
- ),
- ),
- actions: [
- TextButton(
- child: Text(l10n.ok),
- onPressed: () {
- Navigator.of(context, rootNavigator: true).pop('dialog');
- },
- ),
- ],
- );
- showDialog(
- context: context,
- builder: (BuildContext context) {
- return alert;
- },
- );
- }
- }
|