wheel-surf.js
4.08 KB
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
const _ = require('lodash');
const aes = require('../../../utils/aes');
class ActWheelSurfModel extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
this.redis = global.yoho.redis;
this.client = this.redis.client;
}
async list() {
let len = await this.client.llenAsync('turntable:activity');
return this.client.lrangeAsync('turntable:activity', 0, len - 1).then(acts => {
return acts.filter(act => act).map(act => {
return JSON.parse(act);
});
});
}
async create(data) {
let len = await this.client.llenAsync('turntable:activity');
data.id = len + 1;
data.encryptedId = aes.encryptUid(len + 1);
return this.client.rpushAsync('turntable:activity', JSON.stringify(data));
}
async actDelete(id) {
id = parseInt(aes.decryptUid(id), 10);
return this.client.lsetAsync('turntable:activity', id - 1, '');
}
actInfo(act_id) {
let idx = parseInt(aes.decryptUid(act_id), 10) - 1;
return this.client.lrangeAsync('turntable:activity', idx, idx).then(act => {
return JSON.parse(act[0] || {});
});
}
async userFind(obj) {
let pageNo = obj.pageNo || 1;
let pageSize = obj.pageSize || 20;
let actId = parseInt(aes.decryptUid(obj.act_id), 10);
let len = await this.client.llenAsync(`turntable:${actId}:prize:users`);
return this.client.lrangeAsync(`turntable:${actId}:prize:users`, (pageNo - 1) * pageSize, pageNo * pageSize - 1).then(prizes => {
let afters = prizes.map(prize => {
prize = prize.split(':::');
return {
uid: prize[0],
type: prize[1],
name: prize[2],
time: +prize[3]
};
});
return {
total: len,
list: afters
};
});
}
async exportRecords(actId = '') {
actId = actId.replace(/\s/g, '+');
actId = parseInt(aes.decryptUid(actId), 10);
let len = await this.client.llenAsync(`turntable:${actId}:prize:user`);
return this.client.lrangeAsync(`turntable:${actId}:prize:users`, 0, len - 1).then(prizes => {
return prizes.map(prize => {
prize = prize.split(':::');
return {
uid: prize[0],
type: prize[1],
name: prize[2],
time: prize[3]
};
});
});
}
getActConf(actId) {
actId = parseInt(aes.decryptUid(actId), 10);
return this.client.hgetallAsync(`turntable:${actId}`).then(conf => {
conf = conf || {};
Object.keys(conf).forEach(key => {
if (conf[key] && !_.isNaN(Number(conf[key]))) {
conf[key] = Number(conf[key]);
}
});
return conf;
});
}
setActConf(actId, confObj) {
confObj.id = 1;
actId = parseInt(aes.decryptUid(actId), 10);
return this.client.HMSET(`turntable:${actId}`, confObj);
}
getActPrize(actId, len = 7) {
actId = parseInt(aes.decryptUid(actId), 10);
return this.client.lrangeAsync(`turntable:${actId}:prize`, 0, len)
.then(async (prizes) => {
let left = 0;
for (let i = 0; i < prizes.length; i++) {
prizes[i] = JSON.parse(prizes[i]);
left = await this.client.getAsync(`turntable:${actId}:prize:${prizes[i].prize_idx}:stock`);
prizes[i].total_left = +left;
}
return prizes;
});
}
createActPrize(actId, prizesList) {
prizesList = prizesList || [];
actId = parseInt(aes.decryptUid(actId), 10);
let multi = this.client.multi();
prizesList.map((prize, idx) => {
prize.id = idx + 1;
multi.lpush(`turntable:${actId}:prize`, JSON.stringify(prize));
multi.set(`turntable:${actId}:prize:${prize.prize_idx}:stock`, prize.total_left);
});
return multi.execAsync();
}
updateActPrize(actId, prizesList) {
prizesList = prizesList || [];
actId = parseInt(aes.decryptUid(actId), 10);
let multi = this.client.multi();
prizesList.map((prize, idx) => {
multi.lset(`turntable:${actId}:prize`, idx, JSON.stringify(prize));
multi.set(`turntable:${actId}:prize:${prize.prize_idx}:stock`, prize.total_left);
});
return multi.execAsync();
}
}
module.exports = ActWheelSurfModel;