user-api.js
3.98 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
/**
* 个人中心 编辑资料api
* @author: gaohongwei<hongwei.gao@yoho.cn>
* @date: 2016/8/16
*/
const api = global.yoho.API;
const getUserInfo = uid => {
return api.get('', {
method: 'app.passport.profile',
uid: uid
});
};
const getUserContactInfo = uid => {
return api.get('', {
method: 'web.passport.getUserContacts',
uid: uid
});
};
const getProviceCityInfo = (parentId) => {
return api.get('', {
method: 'app.address.provinces',
id: parentId
});
};
const getUserHabitsInfo = (uid) => {
return api.get('', {
method: 'web.passport.getUserHabits',
uid: uid
});
};
const getUserLikeBrand = (uid) => {
return api.get('', {
method: 'web.passport.getLikeBrand',
uid: uid
});
};
const getTipConfig = (uid) => {
return api.post('', {
method: 'app.resources.config.clientInitConfig',
uid: uid
});
};
/**
* 修改用户联系信息
*/
const editUserInfo = (userInfo) => {
return api.get('', {
method: 'app.passport.modifyBase',
uid: userInfo.uid,
nick_name: userInfo.nickname,
username: userInfo.username,
gender: userInfo.gender,
profession: userInfo.profession,
income: userInfo.income,
birthday: userInfo.birthday
});
};
/**
* 修改用户联系信息
*/
const editUserContactInfo = (contactInfo) => {
return api.get('', {
method: 'web.passport.modifyUserContacts',
uid: contactInfo.uid,
area_code: contactInfo.areaCode,
phone: contactInfo.phone,
mobile: contactInfo.mobile,
qq: contactInfo.qq,
full_address: contactInfo.fullAddress,
zip_code: contactInfo.zipCode
});
};
/**
* 修改用户购物着装习惯信息
*/
const editUserHabitsInfo = (habitsInfo) => {
return api.get('', {
method: 'web.passport.modifyUserHabits',
uid: habitsInfo.uid,
shopping: habitsInfo.shopping,
dress: habitsInfo.dress
});
};
/**
* 修改用户喜欢品牌
*/
const editUserLikeBrand = (uid, brand) => {
return api.get('', {
method: 'web.passport.modifyLikeBrand',
uid: uid,
brand: brand
});
};
/**
* 根据手机号获取用户信息[TODO +cache]
* @param string $area
* @param string $mobile
* @return array
*/
const getUserInfoByMobile = (area, mobile) => {
return api.get('', {
method: 'app.passport.getProfileByMobile',
area: area,
mobile: mobile
});
};
/**
* 兑换礼品卡
* @param type $uid
* @param type $giftCardCode1
* @param type $giftCardCode2
* @param type $giftCardCode3
* @param type $captchaCode
*/
const exchangeGift = (params, uid) => {
return api.get('', {
method: 'web.personCen.giftExchange',
uid: uid,
giftCardCode1: params.giftCardCode1,
giftCardCode2: params.giftCardCode2,
giftCardCode3: params.giftCardCode3
});
};
const bind3partyAccount = (uid, param) => {
return api.get('', {
method: 'app.passport.bindOpenId',
uid: uid,
open_id: param.openId,
source_type: param.sourceType,
nickname: param.nickname
});
};
const cancelBind3partyAccount = (uid, type) => {
return api.get('', {
method: 'app.passport.removeBindOpenId',
uid: uid,
source_type: type
});
};
const getFavorBrand = () => {
return api.get('', {
method: 'web.search.favorBrand'
});
};
const getCanRemoveBindOpenIdTag = (uid) => {
return api.get('', {
method: 'app.passport.isCanRemoveBindOpenId',
uid: uid
});
};
module.exports = {
getUserInfo,
editUserInfo,
getUserContactInfo,
editUserContactInfo,
getProviceCityInfo,
getUserHabitsInfo,
editUserHabitsInfo,
getUserLikeBrand,
editUserLikeBrand,
getTipConfig,
getUserInfoByMobile,
exchangeGift,
bind3partyAccount,
cancelBind3partyAccount,
getFavorBrand,
getCanRemoveBindOpenIdTag
};