-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdb.js
918 lines (856 loc) · 19.3 KB
/
db.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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
var exports = (module.exports = {});
const mongoose = require("mongoose");
const ObjectId = mongoose.Types.ObjectId;
const sjs = require("syscoinjs-lib");
const BigNumber = require("bignumber.js");
BigNumber.config({ DECIMAL_PLACES: 8 });
BigNumber.config({ EXPONENTIAL_AT: 1e9 });
const config = require("./config.json");
// import mongoose models
const Auction = require("./models/auction.js");
const Bid = require("./models/bid.js");
const Balance = require("./models/balance.js");
const Giveaway = require("./models/giveaway.js");
const Log = require("./models/log.js");
const Mission = require("./models/mission.js");
const Profile = require("./models/profile.js");
const SPT = require("./models/spt.js");
const Trade = require("./models/trade.js");
const NevmWallet = require("./models/nevm-wallet");
const mongodbhost = process.env.MONGODB_HOST ?? "mongodb://localhost";
exports.connect = function () {
try {
var dbStr = "sys-main";
if (config.testnet) {
dbStr = "test";
}
mongoose
.connect(`${mongodbhost}/${dbStr}`, {
useNewUrlParser: true,
useUnifiedTopology: true,
useFindAndModify: false,
useCreateIndex: true,
})
.catch((err) => {
console.error("Connection Error:", err);
console.log("Exiting: Could not connect to MongoDB");
process.exit(1);
});
} catch (error) {
console.log(error);
}
var db = mongoose.connection;
db.on("error", console.error.bind(console, "connection error:"));
};
// adds a new profile to the db
exports.createProfile = function (discordID, addy) {
try {
return Profile.create({
userID: discordID,
address: addy,
balances: new Array(),
restricted: false,
});
} catch (error) {
console.log(error);
return null;
}
};
// function to edit the details of a profile
exports.editProfile = function (discordID, addy, restriction) {
try {
return Profile.findOneAndUpdate(
{ userID: discordID },
{ address: addy, restricted: restriction },
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
// function to edit the address of a profile
exports.editProfileAddress = function (discordID, addy) {
try {
return Profile.findOneAndUpdate(
{ userID: discordID },
{ address: addy },
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
// creates and adds a log to a profile
exports.addLogToProfile = async function (
discordID,
id,
action,
amount,
targets
) {
try {
let log = await Log.create({
userID: id,
action: action,
amount: amount,
targets: targets,
});
let profile = await Profile.findOneAndUpdate(
{ userID: discordID },
{ $addToSet: { logs: log._id } },
{ new: true }
);
return log;
} catch (error) {
console.log(error);
return null;
}
};
// function to find a specific profile
exports.getProfile = function (discordID) {
try {
return Profile.findOne({ userID: discordID });
} catch (error) {
console.log(error);
return null;
}
};
// function to return all profiles in the db
exports.getProfiles = function () {
try {
return Profile.find({});
} catch (error) {
console.log(error);
return null;
}
};
// creates and adds a balance to a profile
exports.createBalance = async function (discordID, currencyID, value) {
try {
let balance = await Balance.create({
userID: discordID,
currencyID: currencyID,
amount: value.toString(),
lockedAmount: "0",
});
let profile = await Profile.findOneAndUpdate(
{ userID: discordID },
{ $addToSet: { balances: balance._id } }
);
return balance;
} catch (error) {
console.log(error);
return null;
}
};
// function to edit the balance of a coin/token in a specific profile
exports.editBalanceAmount = function (discordID, coinOrTokenID, value) {
try {
return Balance.findOneAndUpdate(
{ userID: discordID, currencyID: coinOrTokenID },
{ amount: value.toString() },
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
// function to edit the locked balance of a coin/token in a specific profile
exports.editBalanceLocked = function (discordID, coinOrTokenID, value) {
try {
return Balance.findOneAndUpdate(
{ userID: discordID, currencyID: coinOrTokenID },
{ lockedAmount: value.toString() },
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
// function to find the balance of a coin/token in a specific profile
// tokens stored under their guid
exports.getBalance = function (discordID, coinOrTokenID) {
try {
return Balance.findOne({ userID: discordID, currencyID: coinOrTokenID });
} catch (error) {
console.log(error);
return null;
}
};
// find all balances held by a specific profile
exports.getBalances = function (discordID) {
try {
let bals = Balance.find({ userID: discordID, amount: { $gt: 0 } });
if (!bals) {
return [];
} else {
return bals;
}
} catch (error) {
console.log(error);
return null;
}
};
// creates a new mission in the db
exports.createMission = function (
id,
creator,
payout,
currency,
endDate,
suggesterID,
suggesterPayout
) {
try {
let data = {
missionID: id,
creator: creator,
reward: payout.toString(),
currencyID: currency.toString(),
profiles: new Array(),
dateCreated: new Date(),
endTime: endDate,
active: true,
nevm: true,
};
if (suggesterID && suggesterPayout) {
data = {
...data,
suggesterID: suggesterID,
suggesterPayout: suggesterPayout.toString(),
};
}
return Mission.create(data);
} catch (error) {
console.log(error);
return null;
}
};
// edits a mission in the db
exports.editMission = function (
id,
payout,
currency,
endDate,
suggesterID,
suggesterPayout
) {
if (suggesterID && suggesterPayout) {
try {
return Mission.findOneAndUpdate(
{ missionID: id },
{
reward: payout.toString(),
suggesterID: suggesterID,
suggesterPayout: suggesterPayout.toString(),
currencyID: currency.toString(),
endTime: endDate,
active: true,
},
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
} else {
try {
return Mission.findOneAndUpdate(
{ missionID: id },
{
reward: payout.toString(),
currencyID: currency.toString(),
endTime: endDate,
active: true,
},
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
}
};
// finds a mission with the given name
exports.getMission = function (id) {
try {
return Mission.findOne({ missionID: id });
} catch (error) {
console.log(error);
return null;
}
};
// finds and returns all active missions
exports.getAllActiveMissions = function () {
try {
return Mission.find({ active: true });
} catch (error) {
console.log(error);
return null;
}
};
// finds and returns all active missions
exports.getAllArchivedMissions = function () {
try {
return Mission.find({ active: false });
} catch (error) {
console.log(error);
return null;
}
};
// adds a profile to a specific mission
exports.addProfileToMission = async function (discordID, missID) {
try {
let profile = await Profile.findOne({
userID: discordID,
});
if (profile) {
return Mission.findOneAndUpdate(
{ missionID: missID },
{ $addToSet: { profiles: profile._id } },
{ new: true }
);
} else {
return null;
}
} catch (error) {
console.log(error);
return null;
}
};
// removes a specific profile from a specific mission
exports.removeProfileFromMission = async function (discordID, missionID) {
try {
let profile = await Profile.findOne({ userID: discordID });
if (profile) {
return Mission.findOneAndUpdate(
{ missionID: missionID },
{ $pull: { profiles: profile._id } },
{ new: true }
);
} else {
return null;
}
} catch (error) {
console.log(error);
return null;
}
};
// checks if a specific profile is in a specific mission
exports.checkProfileInMission = async function (discordID, missionID) {
try {
var mission = await Mission.findOne({ missionID: missionID }).populate({
path: "profiles",
model: Profile,
});
for (var i = 0; i < mission.profiles.length; i++) {
if (mission.profiles[i].userID === discordID) {
return true;
}
}
return false;
} catch (error) {
console.log(error);
return null;
}
};
// finds and returns all profiles in a mission
exports.getMissionProfiles = async function (missID) {
try {
var mission = await Mission.findOne({ missionID: missID }).populate({
path: "profiles",
model: Profile,
});
if (mission) {
return mission.profiles;
} else {
return null;
}
} catch (error) {
console.log(error);
return null;
}
};
// function to archive a specific mission
exports.archiveMission = function (id) {
try {
return Mission.findOneAndUpdate(
{ missionID: id },
{ active: false },
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
/**
* Set txHash for mission
* @param {string} missionId
* @param {string} txHash
*/
exports.setMissionTxHash = function (missionId, txHash) {
try {
return Mission.findOneAndUpdate({ missionID: missionId }, { txHash });
} catch (error) {
console.log(error);
return null;
}
};
// adds a new "verified" SPT to the db, this links to the guid
// for using with the fetchBackednAsset function
exports.createSPT = function (symbol, guid, link) {
try {
return SPT.create({
symbol: symbol.toUpperCase(),
guid: guid,
linkToNFT: link,
});
} catch (error) {
console.log(error);
return null;
}
};
// finds a SPT with the given identifier, can be either symbol or guid
exports.getSPT = function (identifier) {
try {
return SPT.findOne({
$or: [{ symbol: identifier.toUpperCase() }, { guid: identifier }],
});
} catch (error) {
console.log(error);
return null;
}
};
// adds a new log to the db
exports.createLog = function (discordID, action, targets, value) {
try {
return Log.create({
userID: discordID,
action: action,
targets: targets,
amount: value,
date: new Date(),
});
} catch (error) {
console.log(error);
return null;
}
};
// creates a new giveaway in the db
exports.createGiveaway = function (
id,
payout,
currencyID,
endTime,
authorId,
expectedWinnerCount
) {
try {
return Giveaway.create({
giveawayID: id,
reward: payout,
currencyID: currencyID,
participants: new Array(),
winners: new Array(),
dateCreated: new Date(),
endTime: endTime,
active: true,
authorId,
expectedWinnerCount,
});
} catch (error) {
console.log(error);
return null;
}
};
exports.recordGiveawayMessage = function (id, messageId, channelId) {
try {
return Giveaway.findOneAndUpdate(
{ giveawayID: id },
{
messageId: messageId,
channelId: channelId,
}
);
} catch (error) {
console.log(error);
return null;
}
};
// finds and returns the giveaway with the given id
exports.getGiveaway = function (id) {
try {
return Giveaway.findOne({ giveawayID: id });
} catch (error) {
console.log(error);
return null;
}
};
// finds and ends the giveaway with the given id
exports.endGiveaway = function (id) {
try {
return Giveaway.findOneAndUpdate(
{ giveawayID: id },
{ active: false },
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
// get count of giveaways
exports.getGiveawayCount = function () {
try {
return Giveaway.countDocuments();
} catch (error) {
console.log(error);
return null;
}
};
exports.getActiveGiveaways = function () {
try {
return Giveaway.find({
active: true,
messageId: { $exists: true },
channelId: { $exists: true },
authorId: { $exists: true },
});
} catch (error) {
console.log(error);
return null;
}
};
// creates a new trade in the db
exports.createTrade = function (
trade_id,
id_a,
id_b,
token_a,
token_b,
amount_a,
amount_b,
end
) {
try {
return Trade.create({
tradeID: trade_id,
userA: id_a,
userB: id_b,
tokenA: token_a,
tokenB: token_b,
amountA: amount_a,
amountB: amount_b,
createdTime: new Date(),
completedTime: null,
endTime: end,
});
} catch (error) {
console.log(error);
return null;
}
};
// finds and returns a trade with the given id
exports.getTrade = function (id) {
try {
return Trade.findOne({ tradeID: id });
} catch (error) {
console.log(error);
return null;
}
};
// Completes a specific trade
exports.completeTrade = function (id) {
try {
return Trade.findOneAndUpdate(
{ tradeID: id },
{ completedTime: new Date() },
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
// Deletes a specific trade
exports.deleteTrade = function (id) {
try {
return Trade.deleteOne({ tradeID: id });
} catch (error) {
console.log(error);
return null;
}
};
// Returns the list of live trades
exports.getLiveTrades = async function () {
try {
var trades = await Trade.aggregate([
{ $match: { completedTime: { $eq: null } } },
{ $sort: { endTime: -1 } },
]);
if (trades) {
return trades;
} else {
return null;
}
} catch (error) {
console.log(error);
return null;
}
};
// Returns the most recent x number of completed trades
exports.getRecentTrades = async function (tradeCount) {
try {
var trades = await Trade.aggregate([
{ $match: { completedTime: { $ne: null } } },
{ $sort: { completedTime: -1 } },
{
$facet: {
results: [{ $skip: 0 }, { $limit: tradeCount }],
count: [{ $count: "count" }],
},
},
]);
if (trades[0]) {
return trades[0].results;
}
} catch (error) {
console.log(error);
return null;
}
};
// Returns the most recent x number of completed trades of a specific token
exports.getRecentTokenTrades = async function (token, tradeCount) {
try {
var trades = await Trade.aggregate([
{
$match: {
$and: [
{ $or: [{ tokenA: token }, { tokenB: token }] },
{ completedTime: { $ne: null } },
],
},
},
{ $sort: { completedTime: -1 } },
{
$facet: {
results: [{ $skip: 0 }, { $limit: tradeCount }],
count: [{ $count: "count" }],
},
},
]);
if (trades[0]) {
return trades[0].results;
}
} catch (error) {
console.log(error);
return null;
}
};
// creates a new auction in the db
exports.createAuction = function (
auctionID,
seller,
token,
amount,
reserve,
endTime
) {
try {
return Auction.create({
auctionID: auctionID,
seller: seller,
winner: null,
token: token,
tokenAmount: amount.toString(),
reservePrice: reserve.toString(),
bids: new Array(),
endAmount: null,
createdTime: new Date(),
endTime: endTime,
completed: false,
ended: false,
});
} catch (error) {
console.log(error);
return null;
}
};
// finds and returns an auction with the given id
exports.getAuction = function (id) {
try {
return Auction.findOne({ auctionID: id }).populate({
path: "bids",
model: Bid,
});
} catch (error) {
console.log(error);
return null;
}
};
// Returns auctions with the given token
exports.getTokenAuctions = function (guid) {
try {
return Auction.find({ token: guid, ended: false })
.populate({ path: "bids", model: Bid })
.sort({ endTime: 1 });
} catch (error) {
console.log(error);
return null;
}
};
// finds and returns live auctions
exports.getLiveAuctions = function () {
try {
return Auction.find({ ended: false })
.populate({ path: "bids", model: Bid })
.sort({ endTime: 1 });
} catch (error) {
console.log(error);
return null;
}
};
// Returns auctions with the given token
exports.getOldTokenAuctions = function (guid, auctionCount) {
try {
return Auction.find({ token: guid, ended: true })
.populate({ path: "bids", model: Bid })
.sort({ endTime: -1 })
.limit(auctionCount);
} catch (error) {
console.log(error);
return null;
}
};
// adds a bid to an auction
exports.bidAuction = async function (id, bidder, bidAmount) {
var bid;
try {
bid = await Bid.create({
bidder: bidder,
amount: bidAmount.toString(),
});
} catch (error) {
console.log(error);
return null;
}
try {
return Auction.findOneAndUpdate(
{ auctionID: id },
{ $push: { bids: bid } },
{ new: true }
).populate({ path: "bids", model: Bid });
} catch (error) {
console.log(error);
return null;
}
};
// Ends a specific auction, for example, if it ends with reserve price not being met
exports.endAuction = function (id) {
try {
return Auction.findOneAndUpdate(
{ auctionID: id },
{
endTime: new Date(),
ended: true,
},
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
// Completes a specific auction with reserve price being met
exports.completeAuction = function (id, endAmount, winner) {
try {
return Auction.findOneAndUpdate(
{ auctionID: id },
{
endAmount: endAmount.toString(),
winner: winner,
endTime: new Date(),
completed: true,
ended: true,
},
{ new: true }
);
} catch (error) {
console.log(error);
return null;
}
};
// Deletes a specific auction
exports.deleteAuction = function (id) {
try {
return Auction.deleteOne({ auctionID: id });
} catch (error) {
console.log(error);
return null;
}
};
/**
* Get NEVM Wallet
* @param {string} userId
*/
function getNevmWallet(userId) {
try {
return NevmWallet.findOne({ userId });
} catch (e) {
console.log(e);
return null;
}
}
/**
* Creates new entry in NEVM Wallet
* @param {string} userId Discord user id
* @param {string} address Ethereum address
* @param {string} privateKey Ethereum private key
*/
function createNevmWallet(userId, address, privateKey) {
try {
return NevmWallet.create({
userId,
address,
privateKey,
});
} catch (e) {
console.log(e);
return null;
}
}
/**
* Gets number of NEVM Walelts
* @returns {Promise<number>}
*/
function getNevmWalletCount() {
try {
return NevmWallet.countDocuments();
} catch (e) {
console.log(e);
return null;
}
}
/**
* Gets all wallets matching list of user ids
* @param {string[]} userIds
*/
function getNevmWallets(userIds) {
try {
return NevmWallet.find({ userId: { $in: userIds } });
} catch (e) {
console.log(e);
return null;
}
}
exports.nevm = {
getNevmWallet,
getNevmWallets,
getNevmWalletCount,
createNevmWallet,
};