- GeminiService (integrations/gemini, @Global): extractDocument (OCR fields) + faceMatch; graceful if no GEMINI_API_KEY - documents: face-match now real via Gemini; POST /admin/documents/:id/ocr extracts fields for CS auto-fill - roles: PATCH /admin/users/:id/role (admin) + POST /platform/users/role (bootstrap via x-platform-secret) - config: gemini + platform.secret; .env.example entries Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
35 lines
958 B
Dart
Executable File
35 lines
958 B
Dart
Executable File
import 'package:firebase_auth/firebase_auth.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:sign_in_with_apple/sign_in_with_apple.dart';
|
|
|
|
class AuthController extends GetxController {
|
|
final FirebaseAuth _auth = FirebaseAuth.instance;
|
|
|
|
Future<User?> signInWithApple() async {
|
|
try {
|
|
final appleCredential = await SignInWithApple.getAppleIDCredential(
|
|
scopes: [
|
|
AppleIDAuthorizationScopes.email,
|
|
AppleIDAuthorizationScopes.fullName,
|
|
],
|
|
);
|
|
|
|
final oAuthProvider = OAuthProvider('apple.com');
|
|
final credential = oAuthProvider.credential(
|
|
idToken: appleCredential.identityToken,
|
|
accessToken: appleCredential.authorizationCode,
|
|
);
|
|
|
|
UserCredential userCredential =
|
|
await _auth.signInWithCredential(credential);
|
|
return userCredential.user;
|
|
} catch (error) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
void signOut() async {
|
|
await _auth.signOut();
|
|
}
|
|
}
|