-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathiap_repo.dart
82 lines (70 loc) · 2.07 KB
/
iap_repo.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
import 'dart:async';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import '../constants.dart';
import '../logic/firebase_notifier.dart';
import '../model/past_purchase.dart';
class IAPRepo extends ChangeNotifier {
late FirebaseFirestore _firestore;
late FirebaseAuth _auth;
bool get isLoggedIn => _user != null;
User? _user;
bool hasActiveSubscription = false;
bool hasUpgrade = false;
List<PastPurchase> purchases = [];
StreamSubscription<User?>? _userSubscription;
StreamSubscription<QuerySnapshot>? _purchaseSubscription;
IAPRepo(FirebaseNotifier firebaseNotifier) {
firebaseNotifier.firestore.then((value) {
_auth = FirebaseAuth.instance;
_firestore = value;
updatePurchases();
listenToLogin();
});
}
void listenToLogin() {
_user = _auth.currentUser;
_userSubscription = FirebaseAuth.instance.authStateChanges().listen((user) {
_user = user;
updatePurchases();
});
}
void updatePurchases() {
_purchaseSubscription?.cancel();
var user = _user;
if (user == null) {
purchases = [];
hasActiveSubscription = false;
hasUpgrade = false;
return;
}
var purchaseStream =
_firestore
.collection('purchases')
.where('userId', isEqualTo: user.uid)
.snapshots();
_purchaseSubscription = purchaseStream.listen((snapshot) {
purchases =
snapshot.docs.map((document) {
var data = document.data();
return PastPurchase.fromJson(data);
}).toList();
hasActiveSubscription = purchases.any(
(element) =>
element.productId == storeKeySubscription &&
element.status != Status.expired,
);
hasUpgrade = purchases.any(
(element) => element.productId == storeKeyUpgrade,
);
notifyListeners();
});
}
@override
void dispose() {
_userSubscription?.cancel();
_purchaseSubscription?.cancel();
super.dispose();
}
}