-
Notifications
You must be signed in to change notification settings - Fork 6
/
main.mo
421 lines (321 loc) · 14.4 KB
/
main.mo
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
// Backup NFT canister
import AID "mo:ext/util/AccountIdentifier";
import Array "mo:base/Array";
import Cycles "mo:base/ExperimentalCycles";
import Debug "mo:base/Debug";
import Error "mo:base/Error";
import ExtCommon "mo:ext/Common";
import ExtCore "mo:ext/Core";
import ExtNonFungible "mo:ext/NonFungible";
import Hash "mo:base/Hash";
import HashMap "mo:base/HashMap";
import Iter "mo:base/Iter";
import JSON "mo:json/JSON";
import Ledger "../nft/Ledger";
import List "mo:base/List";
import Nat "mo:base/Nat";
import Option "mo:base/Option";
import Principal "mo:base/Principal";
import Result "mo:base/Result";
import Text "mo:base/Text";
actor Backup {
// Types
type AccountIdentifier = ExtCore.AccountIdentifier;
type TokenIndex = ExtCore.TokenIndex ;
type Extension = ExtCore.Extension;
type Metadata = ExtCommon.Metadata;
public type ApprovedPrice = {
ulid : Text;
amount : Ledger.ICP;
};
// This type must be kept in sync with the type of the same name in backup/main.mo
public type RawCreatorPost = {
postLabel : Text;
content : Text;
nftRequirement : Nat;
timestamp: Nat;
id : Text;
categoryId : Text;
creatorId : Text;
};
// This type must be kept in sync with the type of the same name in backup/main.mo
public type RawCreatorCategory = {
categoryLabel : Text;
nftRequirement: Nat;
order: Nat;
id : Text;
postIds: [Text];
};
// This type must be kept in sync with the type of the same name in backup/main.mo
public type RawCreator = {
name : Text;
avatarUrl : Text;
id : Text;
};
private let EXTENSIONS : [Extension] = ["@ext/common", "@ext/nonfungible"];
// State variables
private stable var _registryBackupsState : [[(TokenIndex, AccountIdentifier)]] = [[]];
private var _registryBackups : List.List<[(TokenIndex, AccountIdentifier)]> = List.fromArray<[(TokenIndex, AccountIdentifier)]>(_registryBackupsState);
private stable var _tokenMetadataBackupsState : [[(TokenIndex, Metadata)]] = [[]];
private var _tokenMetadataBackups : List.List<[(TokenIndex, Metadata)]> = List.fromArray<[(TokenIndex, Metadata)]>(_tokenMetadataBackupsState);
private stable var _urlCountBackupsState : [[(Text, Nat)]] = [[]];
private var _urlCountMapperBackups : List.List<[(Text, Nat)]> = List.fromArray<[(Text, Nat)]>(_urlCountBackupsState);
private stable var _pendingOrderBackupState : [[(Principal, ApprovedPrice)]] = [[]]; // (UUID, ApprovedPrice)
private var _pendingOrderBackups : List.List<[(Principal, ApprovedPrice)]> = List.fromArray<[(Principal, ApprovedPrice)]>(_pendingOrderBackupState);
private stable var _orderHistoryBackupState : [[(Text, TokenIndex)]] = [[]]; // (BlockId, TokenIndexPurchasedByBlockId)
private var _orderHistoryBackups : List.List<[(Text, TokenIndex)]> = List.fromArray<[(Text, TokenIndex)]>(_orderHistoryBackupState);
private stable var _refundsBackupState : [[(Text, Text)]] = [[]]; // (PurchaseTxId, RefundTxId)
private var _refundsBackups : List.List<[(Text, Text)]> = List.fromArray<[(Text, Text)]>(_refundsBackupState);
private stable var _creatorBackupState : [[(Text, RawCreator)]] = [[]];
private var _creatorBackups : List.List<[(Text, RawCreator)]> = List.fromArray<[(Text, RawCreator)]>(_creatorBackupState);
private stable var _creatorPostBackupState : [[(Text, RawCreatorPost)]] = [[]];
private var _creatorPostBackups : List.List<[(Text, RawCreatorPost)]> = List.fromArray<[(Text, RawCreatorPost)]>(_creatorPostBackupState);
private stable var _creatorCategoryBackupState : [[(Text, RawCreatorCategory)]] = [[]];
private var _creatorCategoryBackups : List.List<[(Text, RawCreatorCategory)]> = List.fromArray<[(Text, RawCreatorCategory)]>(_creatorCategoryBackupState);
private stable let versionsToKeep : Nat = 10;
// State management functions
system func preupgrade() {
_registryBackupsState := List.toArray<[(TokenIndex, AccountIdentifier)]>(_registryBackups);
_tokenMetadataBackupsState := List.toArray<[(TokenIndex, Metadata)]>(_tokenMetadataBackups);
_urlCountBackupsState := List.toArray<[(Text, Nat)]>(_urlCountMapperBackups);
_pendingOrderBackupState := List.toArray<[(Principal, ApprovedPrice)]>(_pendingOrderBackups);
_orderHistoryBackupState := List.toArray<[(Text, TokenIndex)]>(_orderHistoryBackups);
_refundsBackupState := List.toArray<[(Text, Text)]>(_refundsBackups);
_creatorBackupState := List.toArray<[(Text, RawCreator)]>(_creatorBackups);
_creatorPostBackupState := List.toArray<[(Text, RawCreatorPost)]>(_creatorPostBackups);
_creatorCategoryBackupState := List.toArray<[(Text, RawCreatorCategory)]>(_creatorCategoryBackups);
};
system func postupgrade() {
_registryBackupsState := [];
_tokenMetadataBackupsState := [];
_urlCountBackupsState := [];
_pendingOrderBackupState := [];
_orderHistoryBackupState := [];
_refundsBackupState := [];
_creatorBackupState := [];
_creatorPostBackupState := [];
_creatorCategoryBackupState := [];
};
/**
* Non-EXT functions
*/
/**
* Debug functions
*/
public query({caller}) func logRegistryBackups() : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("_registryBackups", _registryBackups));
return;
};
public query({caller}) func logTokenMetadataBackups() : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("_tokenMetadataBackups", _registryBackups));
return;
};
public query({caller}) func logUrlCountMapperBackups() : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("_urlCountMapperBackups", _registryBackups));
return;
};
public query({caller}) func logPendingOrderBackups() : async () {
assertIsContentCreator(caller); // do not expose to unauthorized users. contains price approval guid.
Debug.print(debug_show("_pendingOrderBackups", _pendingOrderBackups));
return;
};
public query({caller}) func logOrderHistoryBackups() : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("_orderHistoryBackups", _orderHistoryBackups));
return;
};
public query({caller}) func logRefundsBackups() : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("_refundsBackups", _refundsBackups));
return;
};
public query({caller}) func logCreatorBackups() : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("_creatorBackups", _creatorBackups));
return;
};
public query({caller}) func logCreatorPostBackups() : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("_creatorPostBackups", _creatorPostBackups));
return;
};
public query({caller}) func logCreatorCategoryBackups() : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("_creatorCategoryBackups", _creatorCategoryBackups));
return;
};
/**
* Restoration functions
*/
public shared({caller}) func restoreRegistry(versionsBack : ?Nat) : async ?[(TokenIndex, AccountIdentifier)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_registryBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
public shared({caller}) func restoreTokens(versionsBack : ?Nat) : async ?[(TokenIndex, Metadata)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_tokenMetadataBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
public shared({caller}) func restoreURLCountMapper(versionsBack : ?Nat) : async ?[(Text, Nat)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_urlCountMapperBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
public shared({caller}) func restorePendingOrders(versionsBack : ?Nat) : async ?[(Principal, ApprovedPrice)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_pendingOrderBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
public shared({caller}) func restoreOrderHistory(versionsBack : ?Nat) : async ?[(Text, TokenIndex)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_orderHistoryBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
public shared({caller}) func restoreRefunds(versionsBack : ?Nat) : async ?[(Text, Text)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_refundsBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
public shared({caller}) func restoreCreators(versionsBack : ?Nat) : async ?[(Text, RawCreator)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_creatorBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
public shared({caller}) func restoreCreatorPosts(versionsBack : ?Nat) : async ?[(Text, RawCreatorPost)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_creatorPostBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
public shared({caller}) func restoreCreatorCategories(versionsBack : ?Nat) : async ?[(Text, RawCreatorCategory)] {
assertIsContentCreator(caller);
let versionsBackOption = Option.get(versionsBack, 0);
let versionData = List.get(_creatorCategoryBackups, versionsBackOption);
Debug.print(debug_show("Returning restored data:", versionData));
return versionData;
};
/*
* Backup functions
*/
public shared({caller}) func backupRegistry(data : [(TokenIndex, AccountIdentifier)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("registryToBackUp", data));
_registryBackups := List.push(data, _registryBackups);
_registryBackups := List.split(versionsToKeep, _registryBackups).0;
return;
};
public shared({caller}) func backupTokenMetadata(data : [(TokenIndex, Metadata)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("tokensToBackUp", data));
_tokenMetadataBackups := List.push(data, _tokenMetadataBackups);
_tokenMetadataBackups := List.split(versionsToKeep, _tokenMetadataBackups).0;
return;
};
public shared({caller}) func backupUrlCountMapper(data : [(Text, Nat)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("UrlsToBackUp", data));
_urlCountMapperBackups := List.push(data, _urlCountMapperBackups);
_urlCountMapperBackups := List.split(versionsToKeep, _urlCountMapperBackups).0;
return;
};
public shared({caller}) func backupPendingOrders(data : [(Principal, ApprovedPrice)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("PendingOrdersToBackUp", data));
_pendingOrderBackups := List.push(data, _pendingOrderBackups);
_pendingOrderBackups := List.split(versionsToKeep, _pendingOrderBackups).0;
return;
};
public shared({caller}) func backupOrderHistory(data : [(Text, TokenIndex)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("OrderHistoryToBackUp", data));
_orderHistoryBackups := List.push(data, _orderHistoryBackups);
_orderHistoryBackups := List.split(versionsToKeep, _orderHistoryBackups).0;
return;
};
public shared({caller}) func backupRefunds(data : [(Text, Text)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("RefundsToBackUp", data));
_refundsBackups := List.push(data, _refundsBackups);
_refundsBackups := List.split(versionsToKeep, _refundsBackups).0;
return;
};
public shared({caller}) func backupCreators(data : [(Text, RawCreator)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("RefundsToBackUp", data));
_creatorBackups := List.push(data, _creatorBackups);
_creatorBackups := List.split(versionsToKeep, _creatorBackups).0;
return;
};
public shared({caller}) func backupCreatorPosts(data : [(Text, RawCreatorPost)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("RefundsToBackUp", data));
_creatorPostBackups := List.push(data, _creatorPostBackups);
_creatorPostBackups := List.split(versionsToKeep, _creatorPostBackups).0;
return;
};
public shared({caller}) func backupCreatorCategories(data : [(Text, RawCreatorCategory)]) : async () {
assertIsContentCreator(caller);
Debug.print(debug_show("RefundsToBackUp", data));
_creatorCategoryBackups:= List.push(data, _creatorCategoryBackups);
_creatorCategoryBackups := List.split(versionsToKeep, _creatorCategoryBackups).0;
return;
};
public func acceptCycles() : async () {
let available = Cycles.available();
let accepted = Cycles.accept(available);
assert (accepted == available);
};
public query func availableCycles() : async Nat {
return Cycles.balance();
};
/* cspell:disable */
// TODO: fill in adminDfx principal
private let creatorPrincipal = Principal.fromText("2vxsx-fae");
// TODO fill in deployed NFT canister principal
private let nftCanister = Principal.fromText("2vxsx-fae");
/* cspell:enable */
private let creatorPrincipals : [Principal] = [
creatorPrincipal,
nftCanister,
];
private func internalIsContentCreator(caller : Principal): Bool {
let foundPrincipal = Array.find(
creatorPrincipals,
func (entry : Principal) : Bool {
return entry == caller;
}
);
let isCreator = switch (foundPrincipal) {
case (?foundPrincipal) {
true;
};
case (null) {
false;
};
};
Debug.print(debug_show("Is content creator caller:", isCreator, caller));
return isCreator;
};
private func assertIsContentCreator(caller: Principal) : () {
assert(internalIsContentCreator(caller));
};
};