mirror of
				https://gitlab.com/comunic/comunicmobile
				synced 2025-10-31 10:14:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			770 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			770 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'package:firebase_core/firebase_core.dart';
 | |
| import 'package:firebase_messaging/firebase_messaging.dart';
 | |
| 
 | |
| /// Firebase messaging helper
 | |
| ///
 | |
| /// @author Pierre Hubert
 | |
| 
 | |
| bool _isFirebaseReady = false;
 | |
| 
 | |
| class FirebaseMessagingHelper {
 | |
|   /// Pre configure notifications
 | |
|   static Future<void> preConfigure() async {
 | |
|     if (!_isFirebaseReady) await Firebase.initializeApp();
 | |
|     _isFirebaseReady = true;
 | |
| 
 | |
|     final settings = await FirebaseMessaging.instance.requestPermission();
 | |
| 
 | |
|     if (settings.authorizationStatus != AuthorizationStatus.authorized)
 | |
|       throw new Exception("The user did not authorize notifications!");
 | |
|   }
 | |
| 
 | |
|   /// Get a Firebase access token
 | |
|   static Future<String> getToken() async {
 | |
|     return await FirebaseMessaging.instance.getToken();
 | |
|   }
 | |
| }
 |