forked from doomhz/coinnext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cakefile
122 lines (110 loc) · 4.75 KB
/
Cakefile
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
environment = process.env.NODE_ENV or 'development'
GLOBAL.appConfig = require "./configs/config"
GLOBAL.db = require './models/index'
option "-e", "--email [EMAIL]", "User email"
option "-p", "--pass [PASS]", "User pass"
option "-w", "--wallet [ID]", "Wallet ID"
option "-u", "--user [ID]", "User ID"
option "-o", "--order [ID]", "Order ID"
task "db:create_tables", "Create all tables", ()->
GLOBAL.db.sequelize.sync().complete ()->
task "db:create_tables_force", "Drop and create all tables", ()->
return console.log "Not in production!" if environment is "production"
GLOBAL.db.sequelize.query("DROP TABLE SequelizeMeta").complete ()->
GLOBAL.db.sequelize.sync({force: true}).complete ()->
task "db:seed_market_stats", "Seed default market stats", ()->
MarketStats = GLOBAL.db.MarketStats
marketStats = require './models/seeds/market_stats'
for stats in marketStats
MarketStats.create(stats).complete ()->
task "db:seed_trade_stats", "Seed default trade stats", ()->
return console.log "Not in production!" if environment is "production"
TradeStats = GLOBAL.db.TradeStats
tradeStats = require './models/seeds/trade_stats'
now = Date.now()
halfHour = 1800000
oneDay = 86400000
endTime = now - now % halfHour
startTime = endTime - oneDay
startTimes =
LTC_BTC: startTime
PPC_BTC: startTime
DOGE_BTC: startTime
for stat in tradeStats
stat.start_time = startTimes[stat.type]
stat.end_time = stat.start_time + halfHour
startTimes[stat.type] = stat.end_time
GLOBAL.db.sequelize.query("TRUNCATE TABLE #{TradeStats.tableName}").complete ()->
TradeStats.bulkCreate(tradeStats).success ()->
TradeStats.findAll().success (result)->
console.log JSON.stringify result
task "db:migrate", "Run pending database migrations", ()->
migrator = GLOBAL.db.sequelize.getMigrator
path: "#{process.cwd()}/models/migrations"
filesFilter: /\.coffee$/
coffee: true
migrator.migrate().success ()->
console.log "Database migrations finished."
task "db:migrate_undo", "Undo database migrations", ()->
migrator = GLOBAL.db.sequelize.getMigrator
path: "#{process.cwd()}/models/migrations"
filesFilter: /\.coffee$/
coffee: true
migrator.migrate({method: "down"}).success ()->
console.log "Database migrations reverted."
task "admin:generate_user", "Add new admin user -e -p", (opts)->
data =
email: opts.email
password: opts.pass
GLOBAL.db.AdminUser.createNewUser data, (err, newUser)->
return console.error err if err
newUser.generateGAuthData (data, newUser)->
console.log data.google_auth_qr
console.log newUser.gauth_key
task "order:cancel_open", "Cancel open order", (opts)->
TradeHelper = require "./lib/trade_helper"
TradeHelper.cancelOrder opts.order, ()->
task "fraud:check_wallet", "Check wallet for fraud", (opts)->
FraudHelper = require "./lib/fraud_helper"
FraudHelper.checkWalletBalance opts.wallet, (err, result)->
return console.error err if err
console.log result
task "fraud:check_user_wallets", "Check user wallets for fraud", (opts)->
FraudHelper = require "./lib/fraud_helper"
async = require "async"
checkWalletBalance = (wallet, cb)->
FraudHelper.checkWalletBalance wallet.id, (err, result)->
return console.error err if err
cb err,
wallet_id: wallet.id
result: result
GLOBAL.db.Wallet.findAll({where: {user_id: opts.user}}).complete (err, wallets)->
async.mapSeries wallets, checkWalletBalance, (err, results)->
console.log results
task "fraud:check_all_wallets_balances", "Check user wallets for fraud", ()->
MarketHelper = require "./lib/market_helper"
FraudHelper = require "./lib/fraud_helper"
async = require "async"
wrongHoldBalanceWalletsIds = []
wrongBalanceWalletsIds = []
lost = {}
totals = {}
checkWalletBalance = (wallet, cb)->
FraudHelper.checkWalletBalance wallet.id, (err, result)->
return console.error err if err
wrongHoldBalanceWalletsIds.push wallet.id if not result.valid_hold_balance
wrongBalanceWalletsIds.push wallet.id if result.final_balance < 0
if result.final_balance < 0
lost[wallet.currency] = 0 if not lost[wallet.currency]?
lost[wallet.currency] += (result.final_balance * -1)
totals[wallet.currency] = 0 if not totals[wallet.currency]?
totals[wallet.currency] += (wallet.total_balance)
cb err
GLOBAL.db.Wallet.findAll().complete (err, wallets)->
async.mapSeries wallets, checkWalletBalance, (err, results)->
console.log "Wrong hold balances: ", wrongHoldBalanceWalletsIds
console.log "Wrong balances: ", wrongBalanceWalletsIds
console.log "Lost: ", lost
for curr, amount of totals
totals[curr] = MarketHelper.fromBigint(amount)
console.log "Totals: ", totals