user-api.js
1.59 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
/**
* Created by TaoHuang on 2016/6/17.
*/
'use strict';
const _ = require('lodash');
const EMPTY = {};
module.exports = class extends global.yoho.BaseModel {
constructor(ctx) {
super(ctx);
}
/**
* 根据手机号获取用户信息
*/
findByMobileAsync(area, mobile) {
return this.get({
data: {
mobile: mobile,
area: area,
method: 'app.passport.getProfileByMobile'
}
}).then(result => {
if (!result.code || result.code !== 200 || !result.data || _.isEmpty(result.data)) {
return EMPTY;
}
return result.data;
}).catch(() => {
return EMPTY;
});
}
/**
* 根据邮箱获取用户信息
*/
findByEmailAsync(email) {
return this.get({
data: {
email: email,
method: 'app.passport.getProfileByEmail'
}
}).then(result => {
if (!result.code || result.code !== 200 || !result.data || _.isEmpty(result.data)) {
return EMPTY;
}
return result.data;
}).catch(() => {
return EMPTY;
});
}
profile(uid) {
let param = {
uid: uid,
method: 'app.passport.profile'
};
return this.get({data: param});
}
checkNoCertEmailUser(uid) {
let param = {
method: 'app.passport.checkIsNeedPopupRelated',
uid: uid
};
return this.get({data: param});
}
};