-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
176 lines (155 loc) · 5.33 KB
/
index.js
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
const { Contract, ethers } = require("ethers");
const { OdisUtils } = require("@celo/identity");
const {
federatedAttestationsABI,
odisPaymentsABI,
stableTokenABI,
} = require("@celo/abis");
const {
getCoreContractAddress,
ONE_CENT_CUSD,
NOW_TIMESTAMP,
SERVICE_CONTEXT,
} = require("./constants");
class SocialConnectIssuer {
wallet;
authSigner;
federatedAttestationsContract;
odisPaymentsContract;
stableTokenContract;
serviceContext;
initialized = false;
constructor(wallet, authSigner) {
this.wallet = wallet;
this.authSigner = authSigner;
this.serviceContext =
OdisUtils.Query.getServiceContext(SERVICE_CONTEXT);
}
async initialize() {
this.federatedAttestationsContract = new Contract(
await getCoreContractAddress("FederatedAttestations"),
federatedAttestationsABI,
this.wallet
);
this.odisPaymentsContract = new Contract(
await getCoreContractAddress("OdisPayments"),
odisPaymentsABI,
this.wallet
);
this.stableTokenContract = new Contract(
await getCoreContractAddress("StableToken"),
stableTokenABI,
this.wallet
);
this.initialize = true;
}
async #getObfuscatedId(plaintextId, identifierType) {
// TODO look into client side blinding
const { obfuscatedIdentifier } =
await OdisUtils.Identifier.getObfuscatedIdentifier(
plaintextId,
identifierType,
this.wallet.address,
this.authSigner,
this.serviceContext
);
return obfuscatedIdentifier;
}
async #checkAndTopUpODISQuota() {
const remainingQuota = await this.checkODISQuota();
if (remainingQuota < 1) {
// TODO make threshold a constant
const approvalTxReceipt = (
await this.stableTokenContract.increaseAllowance(
this.odisPaymentsContract.address,
ONE_CENT_CUSD // TODO we should increase by more
)
).wait();
const odisPaymentTxReceipt = (
await this.odisPaymentsContract.payInCUSD(
this.wallet.address,
ONE_CENT_CUSD // TODO we should increase by more
)
).wait();
}
}
async getObfuscatedIdWithQuotaRetry(plaintextId, identifierType) {
if (this.initialized) {
try {
return await this.#getObfuscatedId(plaintextId, identifierType);
} catch {
await this.#checkAndTopUpODISQuota();
return this.#getObfuscatedId(plaintextId, identifierType);
}
}
throw new Error("SocialConnect instance not initialized");
}
async registerOnChainIdentifier(plaintextId, identifierType, address) {
if (this.initialized) {
const obfuscatedId = await this.getObfuscatedIdWithQuotaRetry(
plaintextId,
identifierType
);
const tx =
await this.federatedAttestationsContract.registerAttestationAsIssuer(
// TODO check if there are better code patterns for sending txs
obfuscatedId,
address,
NOW_TIMESTAMP
);
const receipt = await tx.wait();
return receipt;
}
throw new Error("SocialConnect instance not initialized");
}
async deregisterOnChainIdentifier(plaintextId, identifierType, address) {
if (this.initialized) {
const obfuscatedId = await this.getObfuscatedIdWithQuotaRetry(
plaintextId,
identifierType
);
const tx =
await this.federatedAttestationsContract.revokeAttestation(
obfuscatedId,
this.wallet.address,
address
);
const receipt = await tx.wait();
return receipt;
}
throw new Error("SocialConnect instance not initialized");
}
async checkODISQuota() {
if (this.initialized) {
const { remainingQuota } = await OdisUtils.Quota.getPnpQuotaStatus(
this.wallet.address,
this.authSigner,
this.serviceContext
);
console.log("Remaining Quota", remainingQuota);
return remainingQuota;
}
throw new Error("SocialConnect instance not initialized");
}
async lookup(plaintextId, identifierType, issuerAddresses) {
if (this.initialized) {
const obfuscatedId = await this.getObfuscatedIdWithQuotaRetry(
plaintextId,
identifierType
);
const attestations =
await this.federatedAttestationsContract.lookupAttestations(
obfuscatedId,
issuerAddresses
);
return {
accounts: attestations.accounts, // TODO typesafety
obfuscatedId,
};
}
throw new Error("SocialConnect instance not initialized");
}
}
module.exports = {
SocialConnectIssuer,
};