setting.js
4.33 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
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
/**
* [个人中心]个人设置
* @author: jiangmin
* @date: 2016/07/13
*/
'use strict';
const api = global.yoho.API;
const crypto = require('crypto');
const fs = require('fs');
/**
* 查询个人详细信息
* @param uid
* @returns {*}
*/
const _getUserInfo = (uid) => {
return api.get('', {
method: 'app.passport.profile',
uid: uid
}).then(result => {
if (result && result.data) {
let genders = [
{
name: '男',
value: '1'
},
{
name: '女',
value: '2'
},
{
name: '保密',
value: '3'
}
];
return {
info: result.data,
genders: genders
};
}
});
};
/**
* 查询个人联系信息
* @param uid
* @returns {*}
* @private
*/
const _getUserContactInfo = (uid)=> {
return api.get('', {
method: 'web.passport.getUserContacts',
uid: uid
}).then(result => result.data);
};
/**
* 合并查询个人信息
* @param uid
* @returns {*}
*/
const getUserInfo = (uid) => {
let getData = [_getUserInfo(uid), _getUserContactInfo(uid)];
return Promise.all(getData).then(result => {
return {
info: result[0].info,
genders: result[0].genders,
concat: result[1]
};
});
};
/* const getVerifyInfo = (uid)=> {
return api.get('', {
method: 'web.passport.getUserVerifyInfo',
uid: uid
}).then(result => result);
};*/
/**
* 编辑个人详细信息
* @param uid
* @param nickName
* @param username
* @param gender
* @param birthday
* @returns {*}
* @private
*/
const _editInfo = (uid, nickName, username, gender, birthday)=> {
return api.get('', {
method: 'app.passport.modifyBase',
uid: uid,
nick_name: nickName,
username: username,
gender: gender,
birthday: birthday
}).then(result => result);
};
/**
* 编辑个人联系信息
* @param uid
* @param areaCode
* @param mobile
* @param fullAddress
* @param zipCode
* @returns {*}
* @private
*/
const _editUserContactInfo = (uid, areaCode, mobile, fullAddress, zipCode)=> {
return api.get('', {
method: 'web.passport.modifyUserContacts',
uid: uid,
area_code: areaCode,
mobile: mobile,
full_address: fullAddress,
zip_code: zipCode
}).then(result => result);
};
/**
* 合并编辑个人信息
* @param uid
* @param info
* @returns {*}
*/
const editUserInfo = (uid, info) => {
let getData = [
_editInfo(uid, info.nick_name, info.username, info.gender, info.birthday),
_editUserContactInfo(uid, info.area_code, info.mobile, info.full_address, info.zip_code)
];
return Promise.all(getData).then(result => result);
};
/**
* 加密
* @param data
* @returns {string}
*/
const cipheriv = (data) => {
let algorithm = 'aes-128-ecb';
let key = 'yoho9646yoho9646';
let clearEncoding = 'utf8';
let cipherEncoding = 'base64';
let iv = '';
let cipher = crypto.createCipheriv(algorithm, key, iv);
let cipherChunks = [];
cipherChunks.push(cipher.update(data, clearEncoding, cipherEncoding));
cipherChunks.push(cipher.final(cipherEncoding));
return cipherChunks.join('');
};
/**
* 解密
* @param data
* @returns {string}
*/
const decipheriv = (data) => {
let algorithm = 'aes-128-ecb';
let key = 'yoho9646yoho9646';
let decipherEncoding = 'utf8';
let clearEncoding = 'base64';
let iv = '';
let decipher = crypto.createDecipheriv(algorithm, key, iv);
let decipherChunks = [];
decipherChunks.push(decipher.update(data, clearEncoding, decipherEncoding));
decipherChunks.push(decipher.final(decipherEncoding));
return decipherChunks.join('');
};
/**
* 上传头像
* @param uid
* @param bucket
* @param fileData
*/
const modifyHead = (uid, bucket, fileData)=> {
return api.postFile('', {
method: 'app.passport.modifyHead',
uid: uid,
bucket: bucket
}, {
file_data: fs.createReadStream(fileData)
});
};
module.exports = {
getUserInfo: getUserInfo,
editUserInfo: editUserInfo,
cipheriv: cipheriv,
decipheriv: decipheriv,
modifyHead: modifyHead
};