-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile_util.ts
148 lines (137 loc) · 2.81 KB
/
mobile_util.ts
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
import config from 'config';
import rp from 'request-promise';
import * as URL from 'url';
import logger from '../../config/logger';
import _ from 'lodash';
const mobileSvcConfig: any = config.has('mobile_service')
? config.get('mobile_service')
: {
protocol: 'http',
hostname: 'localhost',
port: 18012,
};
const request = rp.defaults({
baseUrl: URL.format(mobileSvcConfig),
json: true,
});
export const registerMobile = async (
{
token,
locale = 'en',
os,
osSubType,
osVersion,
appType,
appVersion,
imei,
rooted,
}: {
token: string;
locale: string;
os?: 'ios' | 'android';
osSubType?: 'simulator' | 'huawei';
osVersion?: string;
appType: 'rider' | 'driver';
appVersion: string;
imei?: string;
rooted?: boolean;
},
accessToken?: string,
headers?: any
) => {
const body = {
token,
locale,
os,
osSubType,
osVersion,
appType,
appVersion,
imei,
rooted,
};
let auth;
if (accessToken) {
auth = { bearer: accessToken };
}
try {
const opts: any = {
body,
};
if (auth) {
opts.auth = auth;
}
if (headers) {
opts.headers = _.omit(headers, ['content-length', 'Content-Length']);
}
const mobile = await request.post('/v1/mobiles', opts);
return mobile;
} catch (err) {
logger.warn(`register mobile failed ${err.message}`);
}
};
export const getAllMobiles = (uuid: string) => {
return request.get(`/v1/users/${uuid}/mobiles:all`).catch((err) => {
logger.warn(`get all mobiles of user=${uuid} error: ${err.message}`);
return [];
});
};
export const getMobiles = async (
{
userId,
appType,
os,
}: {
userId: string;
os?: 'ios' | 'android';
appType?: 'rider' | 'driver';
},
headers?: any
) => {
try {
const mobiles = await request.get({
uri: `/v1/users/${userId}/mobiles`,
qs: { os, appType },
...(headers || {}),
});
return mobiles;
} catch (err) {
logger.warn(`get all mobiles of user=${userId} error: ${err.message}`);
return [];
}
};
export const updateTopic = async({
status, region, driverType, locale = 'en', unsubscribeFromOldTopics = true
}: {
status: string;
region: string;
driverType: string;
locale: string;
unsubscribeFromOldTopics: boolean;
},
accessToken?: string,
headers?: any
) => {
let auth;
if (accessToken) {
auth = { bearer: accessToken };
}
const body = {
status,
region,
driverType,
locale,
unsubOld: unsubscribeFromOldTopics
};
const opts: any = {
body
};
if (headers) {
opts.headers = _.omit(headers, ['content-length', 'Content-Length']);
}
if (auth) {
opts.auth = auth;
}
const mobiles = await request.post('/v1/topics:subscribe', opts);
return mobiles;
};