yas.js
3.83 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
import config from '../config';
import rules from '../router/rules';
import {MD5} from '../vendors/crypto';
import {parse} from '../vendors/query-stringify';
export default class yas {
constructor(app) {
let self = this;
this.app = app || getApp();
this.pvid = this.app.getPvid();
this.deviceInfo = {
os: '', // 系统类型
dm: '', // 设备型号
res: '', // 屏幕大小
osv: '', // 系统版本
ak: 'yhshop_mp',
ch: config.unionType,
udid: this.app.globalData.udid
};
// 获取设备信息
wx.getSystemInfo({
success(res) {
self.language = res.language;
if (res.platform === 'devtools') {
self.devEnv = true;
}
Object.assign(self.deviceInfo, {
os: res.platform,
dm: res.model,
res: `${res.screenWidth}*${res.screenHeight}`,
osv: res.system,
});
}
});
}
uploadData(params) {
let sid = '';
if (this.app && this.app.globalData) {
sid = this.app.globalData.sid || '';
}
// 开发环境不上报
if (this.devEnv) {
return console.log(params);
}
return wx.request({
url: config.domains.yasApi,
data: {_mlogs: JSON.stringify(params)},
method: 'POST',
header: {
'content-type': 'application/x-www-form-urlencoded',
'x-yoho-sid': MD5(sid).toString(),
},
});
}
report(event, info) {
let self = this;
let userInfo = info || {};
let statusInfo = {ln: this.language};
if (this.app) {
Object.assign(userInfo, {
UNION_ID: this.app.getUnionID(),
APP_ID: this.app.getAppId()
});
}
if (!userInfo.PV_ID) {
userInfo.PV_ID = this.pvid;
}
return new Promise(resolve => {
wx.getNetworkType({
success(res) {
switch (res.networkType) {
case 'wifi':
statusInfo.net = '1';
break;
case '2g':
statusInfo.net = '2';
break;
case '3g':
statusInfo.net = '3';
break;
case '4g':
statusInfo.net = '1';
break;
default:
statusInfo.net = '0';
break;
}
},
complete() {
return resolve(self.uploadData({
status: statusInfo,
device: self.deviceInfo,
events: [{
param: userInfo,
ts: new Date().getTime(),
op: event,
uid: self.app.getReportUid(),
sid: self.app.globalData.sid || '',
}]
}));
}
});
});
}
pageOpenReport(pvid, extra) {
let pages = getCurrentPages();
let currentPage = pages[pages.length - 1];
let path = `/${currentPage.route}`,
options = currentPage.options || {},
fromPage = options.fromPage || '',
fromParam = parse(decodeURIComponent(options.fromParam || ''));
let info = {PV_ID: pvid || this.pvid};
for (let i in rules) {
if (rules.hasOwnProperty(i) && rules[i].path === path) {
Object.assign(info, {
PAGE_PATH: path,
PAGE_NAME: rules[i].report && rules[i].report.pageName || i,
FROM_PAGE_NAME: fromPage && rules[fromPage].report && rules[fromPage].report.pageName || fromPage
});
info.PAGE_PARAM = '';
info.FROM_PAGE_PARAM = '';
if (rules[i].report && rules[i].report.paramKey) {
info.PAGE_PARAM = decodeURIComponent(options[rules[i].report.paramKey] || '');
}
if (fromPage && rules[fromPage].report && rules[fromPage].report.paramKey) {
info.FROM_PAGE_PARAM = decodeURIComponent(fromParam[rules[fromPage].report.paramKey] || '');
}
}
}
this.report('YB_PAGE_OPEN_L', Object.assign(info, extra || {}));
}
}