setting.js
3.5 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
/**
* [个人中心]个人设置
* @author: jiangmin
* @date: 2016/07/13
*/
'use strict';
const api = global.yoho.API;
const crypto = require('crypto');
/**
* 查询个人信息
* @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
};
}
});
};
const _getUserContactInfo = (uid)=> {
return api.get('', {
method: 'web.passport.getUserContacts',
uid: uid
}).then(result => result.data);
};
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);
};
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);
};
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);
};
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('');
};
module.exports = {
getUserInfo: getUserInfo,
getVerifyInfo: getVerifyInfo,
editUserInfo: editUserInfo,
cipheriv: cipheriv,
decipheriv: decipheriv
};