mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 10:49:11 -04:00 
			
		
		
		
	* feat(server): require auth for more endpoints * dev: add authorization header to profile image on mobile --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:math';
 | |
| 
 | |
| import 'package:flutter/material.dart';
 | |
| import 'package:hooks_riverpod/hooks_riverpod.dart';
 | |
| import 'package:immich_mobile/modules/login/models/authentication_state.model.dart';
 | |
| import 'package:immich_mobile/modules/login/providers/authentication.provider.dart';
 | |
| import 'package:immich_mobile/shared/models/store.dart';
 | |
| import 'package:immich_mobile/shared/ui/transparent_image.dart';
 | |
| 
 | |
| class UserCircleAvatar extends ConsumerWidget {
 | |
|   final double radius;
 | |
|   final double size;
 | |
|   const UserCircleAvatar({super.key, required this.radius, required this.size});
 | |
| 
 | |
|   @override
 | |
|   Widget build(BuildContext context, WidgetRef ref) {
 | |
|     AuthenticationState authState = ref.watch(authenticationProvider);
 | |
| 
 | |
|     var profileImageUrl =
 | |
|         '${Store.get(StoreKey.serverEndpoint)}/user/profile-image/${authState.userId}?d=${Random().nextInt(1024)}';
 | |
|     return CircleAvatar(
 | |
|       backgroundColor: Theme.of(context).primaryColor,
 | |
|       radius: radius,
 | |
|       child: ClipRRect(
 | |
|         borderRadius: BorderRadius.circular(50),
 | |
|         child: FadeInImage(
 | |
|           fit: BoxFit.cover,
 | |
|           placeholder: MemoryImage(kTransparentImage),
 | |
|           width: size,
 | |
|           height: size,
 | |
|           image: NetworkImage(
 | |
|             profileImageUrl,
 | |
|             headers: {
 | |
|               "Authorization": "Bearer ${Store.get(StoreKey.accessToken)}"
 | |
|             },
 | |
|           ),
 | |
|           fadeInDuration: const Duration(milliseconds: 200),
 | |
|           imageErrorBuilder: (context, error, stackTrace) =>
 | |
|               Image.memory(kTransparentImage),
 | |
|         ),
 | |
|       ),
 | |
|     );
 | |
|   }
 | |
| }
 |