You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Dart
		
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Dart
		
	
import 'package:matrix/encryption.dart';
 | 
						|
import 'package:matrix/matrix.dart';
 | 
						|
import 'package:fluffychat/pages/views/chat_encryption_settings_view.dart';
 | 
						|
import 'package:fluffychat/widgets/matrix.dart';
 | 
						|
import 'package:flutter/material.dart';
 | 
						|
import 'package:vrouter/vrouter.dart';
 | 
						|
import 'key_verification_dialog.dart';
 | 
						|
 | 
						|
class ChatEncryptionSettings extends StatefulWidget {
 | 
						|
  const ChatEncryptionSettings({Key key}) : super(key: key);
 | 
						|
 | 
						|
  @override
 | 
						|
  ChatEncryptionSettingsController createState() =>
 | 
						|
      ChatEncryptionSettingsController();
 | 
						|
}
 | 
						|
 | 
						|
class ChatEncryptionSettingsController extends State<ChatEncryptionSettings> {
 | 
						|
  String get roomId => VRouter.of(context).pathParameters['roomid'];
 | 
						|
  Future<void> onSelected(
 | 
						|
      BuildContext context, String action, DeviceKeys key) async {
 | 
						|
    final room = Matrix.of(context).client.getRoomById(roomId);
 | 
						|
    final unblock = () async {
 | 
						|
      if (key.blocked) {
 | 
						|
        await key.setBlocked(false);
 | 
						|
      }
 | 
						|
    };
 | 
						|
    switch (action) {
 | 
						|
      case 'verify':
 | 
						|
        await unblock();
 | 
						|
        final req = key.startVerification();
 | 
						|
        req.onUpdate = () {
 | 
						|
          if (req.state == KeyVerificationState.done) {
 | 
						|
            setState(() => null);
 | 
						|
          }
 | 
						|
        };
 | 
						|
        await KeyVerificationDialog(request: req).show(context);
 | 
						|
        break;
 | 
						|
      case 'verify_user':
 | 
						|
        await unblock();
 | 
						|
        final req =
 | 
						|
            await room.client.userDeviceKeys[key.userId].startVerification();
 | 
						|
        req.onUpdate = () {
 | 
						|
          if (req.state == KeyVerificationState.done) {
 | 
						|
            setState(() => null);
 | 
						|
          }
 | 
						|
        };
 | 
						|
        await KeyVerificationDialog(request: req).show(context);
 | 
						|
        break;
 | 
						|
      case 'block':
 | 
						|
        if (key.directVerified) {
 | 
						|
          await key.setVerified(false);
 | 
						|
        }
 | 
						|
        await key.setBlocked(true);
 | 
						|
        setState(() => null);
 | 
						|
        break;
 | 
						|
      case 'unblock':
 | 
						|
        await unblock();
 | 
						|
        setState(() => null);
 | 
						|
        break;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  @override
 | 
						|
  Widget build(BuildContext context) => ChatEncryptionSettingsView(this);
 | 
						|
}
 |