-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathFtms.js
146 lines (132 loc) · 4.63 KB
/
Ftms.js
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
class Ftms {
constructor(carWidget) {
this.$ = carWidget;
}
name = '一汽丰田';
en = 'ftms';
logo = 'https://www.toyota.com.cn/favicon.ico';
baseOpt = {
headers: {
Connection: `keep-alive`,
Host: `appiov.ftms.com.cn`,
'Content-Type': `application/json`,
},
body: ``,
};
init = async () => {
if (this.$.settings.dataSource) {
this.$.serveInfo = this.$.settings.serveInfo;
this.$.dataSource = this.$.settings.dataSource;
} else {
await this.cacheData();
}
this.cacheData();
};
cacheData = async () => {
try {
await this.getOilPrice();
await this.getBmuServeHicleInfo();
await this.getRemoteInfoDetail();
} catch (e) {
console.log(e);
}
};
getBaseOptions(api) {
const baseURL = `https://appiov.ftms.com.cn`;
console.log({ url: `${baseURL}/${api}`, ...this.baseOpt });
return { url: `${baseURL}/${api}`, ...this.baseOpt };
}
getRemoteInfoDetail = async () => {
const options = this.getBaseOptions(
'ftms-iov-app-gbook/api/gbook/getRemoteInfoDetail'
);
const response = await this.$.$request.post(options);
if (response.msg === 'success') {
this.$.dataSource.remoteInfo = response.result;
const safeData =
response.result.list.filter((item) => item.security !== 'safe') || [];
if (safeData.length > 0) {
this.$.dataSource.safeText = `${safeData[0].typeName}:${safeData[0].dataName}`;
} else {
this.$.dataSource.safeText = ``;
}
const dataTime = this.$.dataSource.remoteInfo.datatime.split('-');
this.$.dataSource.remoteInfo.datatime = `${dataTime[1] || ''}-${
dataTime[2] || ''
}`;
} else {
this.$.notify(this.name, response.msg);
}
await this.getDrivingMonitorInfo();
};
getDrivingMonitorInfo = async () => {
const options = this.getBaseOptions(
'ftms-iov-app-gbook/api/gbook/getDrivingMonitorInfo'
);
const response = await this.$.$request.post(options);
console.log(response);
if (response.msg === 'success') {
this.$.dataSource.monitorInfo = response.result;
}
this.$.dataSource.monitorInfo.oilWasteText = `油耗:${this.$.dataSource.monitorInfo.oilWaste}L/100km`;
this.$.settings.dataSource = this.$.dataSource;
this.$.saveSettings(false);
};
getBmuServeHicleInfo = async () => {
let headers = await this.$.getCache('@ftms.headers');
headers = JSON.parse(headers || '{}');
this.baseOpt.headers = {
token: headers.token,
'User-Agent': headers['User-Agent'],
...this.baseOpt.headers,
};
const options = {
url: `https://superapp.ftms.com.cn/superapp/users/wt/getbmuservehicleinfo?scriptable=1`,
headers,
};
if (!this.$.settings.serveInfo) {
const response = await this.$.$request.post(options);
console.log(response);
if (response.code === '200') {
this.$.settings.serveInfo = response.data;
this.$.serveInfo = response.data;
this.$.saveSettings(false);
} else {
this.$.notify(this.name, response.msg);
}
} else {
this.$.serveInfo = this.$.settings.serveInfo || {};
}
this.baseOpt.headers.userId = this.$.serveInfo.userId;
this.baseOpt.headers['USER-ID'] = this.$.serveInfo.userId;
this.baseOpt.body = JSON.stringify({ vin: this.$.serveInfo.vin });
this.baseOpt.headers.Authorization = `Bearer ${this.baseOpt.headers.token}`;
this.baseOpt.headers.accessToken = this.baseOpt.headers.token;
this.baseOpt.headers['ACCESS-TOKEN'] = this.baseOpt.headers.token;
};
getOilPrice = async () => {
const location = await Location.current();
const locationText = await Location.reverseGeocode(
location.latitude,
location.longitude
);
const { administrativeArea = '' } = locationText[0] || {};
const oilNumber = `${this.$.settings.oilNumber || '92'}`;
const filter = `(CITYNAME="${administrativeArea.replace('省', '')}")`;
const time = Date.now();
const url = `https://datacenter-web.eastmoney.com/api/data/v1/get?reportName=RPTA_WEB_YJ_JH&columns=ALL&filter=${encodeURIComponent(
filter
)}&sortColumns=DIM_DATE&sortTypes=-1&pageNumber=1&pageSize=1&source=WEB&_=${time}`;
const options = { url };
const response = await this.$.$request.post(options);
console.log(response);
if (response.result) {
this.$.dataSource.oilPrice = response.result.data[0];
this.$.dataSource.oilZDE = response.result.data[0][`ZDE${oilNumber}`];
this.$.dataSource.oilPriceText = `油价:${
response.result.data[0][`V${oilNumber}`]
}`;
}
};
}
module.exports = Ftms;