uni-cloud-stat.cjs.js 34.2 KB
Newer Older
M
mehaotian 已提交
1 2 3 4 5 6 7 8
'use strict';

/**
 * 获取系统信息
 */
const sys = uni.getSystemInfoSync();

// 访问开始即启动小程序,访问结束结分为:进入后台超过5min、在前台无任何操作超过30min、在新的来源打开小程序;
M
mehaotian 已提交
9
const STAT_VERSION = process.env.UNI_COMPILER_VERSION;
M
mehaotian 已提交
10 11 12 13 14 15 16 17
const STAT_URL = 'https://tongji.dcloud.io/uni/stat';
const STAT_H5_URL = 'https://tongji.dcloud.io/uni/stat.gif';
const PAGE_PVER_TIME = 1800; // 页面在前台无操作结束访问时间 单位s
const APP_PVER_TIME = 300; // 应用在后台结束访问时间 单位s
const OPERATING_TIME = 10; // 数据上报时间 单位s
const DIFF_TIME = 60 * 1000 * 60 * 24;

let statConfig = {
M
mehaotian 已提交
18 19 20 21 22 23
  appid: process.env.UNI_APP_ID,
};
let titleJsons = {};
let debug = !!process.env.UNI_STAT_DEBUG || false;
// #ifdef VUE3
titleJsons = process.env.UNI_STAT_TITLE_JSON;
M
mehaotian 已提交
24
// #endif
25

M
mehaotian 已提交
26
// #ifndef VUE3
27

M
mehaotian 已提交
28 29
// eslint-disable-next-line no-restricted-globals
const pagesTitle = require('uni-pages?{"type":"style"}').default;
M
mehaotian 已提交
30
let pagesData = pagesTitle.pages;
M
mehaotian 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43
for (let i in pagesData) {
  const style = pagesData[i];
  const titleText =
    // MP
    style.navigationBarTitleText ||
    // ali
    style.defaultTitle ||
    // H5 || App
    style.navigationBar?.titleText ||
    '';
  if (titleText) {
    titleJsons[i] = titleText;
  }
M
mehaotian 已提交
44
}
M
mehaotian 已提交
45
// #endif
M
mehaotian 已提交
46

M
mehaotian 已提交
47
// TODO 在云函数中获取,暂时注释
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
const UUID_KEY = '__DC_STAT_UUID';
const UUID_VALUE = '__DC_UUID_VALUE';
function getUuid() {
  let uuid = '';
  if (get_platform_name() === 'n') {
    try {
      uuid = plus.runtime.getDCloudId();
    } catch (e) {
      uuid = '';
    }
    return uuid
  }

  try {
    uuid = uni.getStorageSync(UUID_KEY);
  } catch (e) {
    uuid = UUID_VALUE;
  }

  if (!uuid) {
    uuid = Date.now() + '' + Math.floor(Math.random() * 1e7);
    try {
      uni.setStorageSync(UUID_KEY, uuid);
    } catch (e) {
      uni.setStorageSync(UUID_KEY, UUID_VALUE);
    }
  }
  return uuid
}

const get_uuid = (statData) => {
  // 有可能不存在 deviceId(一般不存在就是出bug了),就自己生成一个
  return sys.deviceId || getUuid()
};
M
mehaotian 已提交
82

M
mehaotian 已提交
83 84
/**
 * 获取配置信息 如 appid
M
mehaotian 已提交
85
 */
M
mehaotian 已提交
86
const stat_config = statConfig;
M
mehaotian 已提交
87 88

const get_sgin = (statData) => {
M
mehaotian 已提交
89 90 91 92 93 94 95 96
  let arr = Object.keys(statData);
  let sortArr = arr.sort();
  let sgin = {};
  let sginStr = '';
  for (var i in sortArr) {
    sgin[sortArr[i]] = statData[sortArr[i]];
    sginStr += sortArr[i] + '=' + statData[sortArr[i]] + '&';
  }
M
mehaotian 已提交
97

M
mehaotian 已提交
98 99 100 101 102 103 104 105 106 107 108 109
  return {
    sign: '',
    options: sginStr.substr(0, sginStr.length - 1),
  }
};

const get_encodeURIComponent_options = (statData) => {
  let data = {};
  for (let prop in statData) {
    data[prop] = encodeURIComponent(statData[prop]);
  }
  return data
M
mehaotian 已提交
110 111 112
};

/**
M
mehaotian 已提交
113
 * 获取当前平台
M
mehaotian 已提交
114 115 116 117 118 119 120 121 122
 * 移动端  : 'n',
 * h5	  : 'h5',
 * 微信	  : 'wx',
 * 阿里	  : 'ali',
 * 百度	  : 'bd',
 * 头条	  : 'tt',
 * qq	  : 'qq',
 * 快应用  : 'qn',
 * 快手	  : 'ks',
M
mehaotian 已提交
123 124
 * 飞书	  : 'lark',
 * 快应用  : 'qw',
M
mehaotian 已提交
125 126 127
 * 钉钉	  : 'dt'
 */
const get_platform_name = () => {
M
mehaotian 已提交
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
  // 苹果审核代码中禁止出现 alipay 字样 ,需要特殊处理一下
  const aliArr = ['y', 'a', 'p', 'mp-ali'];
  const platformList = {
    app: 'n',
    'app-plus': 'n',
    h5: 'h5',
    'mp-weixin': 'wx',
    [aliArr.reverse().join('')]: 'ali',
    'mp-baidu': 'bd',
    'mp-toutiao': 'tt',
    'mp-qq': 'qq',
    'quickapp-native': 'qn',
    'mp-kuaishou': 'ks',
    'mp-lark': 'lark',
    'quickapp-webview': 'qw',
  };
  if (platformList[process.env.VUE_APP_PLATFORM] === 'ali') {
    if (my && my.env) {
      const clientName = my.env.clientName;
      if (clientName === 'ap') return 'ali'
      if (clientName === 'dingtalk') return 'dt'
      // TODO 缺少 ali 下的其他平台
    }
  }
  return platformList[process.env.VUE_APP_PLATFORM]
M
mehaotian 已提交
153 154 155 156 157 158
};

/**
 * 获取小程序 appid
 */
const get_pack_name = () => {
M
mehaotian 已提交
159 160 161 162 163 164 165 166 167
  let packName = '';
  if (get_platform_name() === 'wx' || get_platform_name() === 'qq') {
    // 兼容微信小程序低版本基础库
    if (uni.canIUse('getAccountInfoSync')) {
      packName = uni.getAccountInfoSync().miniProgram.appId || '';
    }
  }
  if (get_platform_name() === 'n') ;
  return packName
M
mehaotian 已提交
168 169 170 171 172 173
};

/**
 * 应用版本
 */
const get_version = () => {
M
mehaotian 已提交
174
  return get_platform_name() === 'n' ? plus.runtime.version : ''
M
mehaotian 已提交
175 176 177 178 179 180
};

/**
 * 获取渠道
 */
const get_channel = () => {
M
mehaotian 已提交
181 182 183 184 185 186
  const platformName = get_platform_name();
  let channel = '';
  if (platformName === 'n') {
    channel = plus.runtime.channel;
  }
  return channel
M
mehaotian 已提交
187 188 189 190 191 192 193
};

/**
 * 获取小程序场景值
 * @param {Object} options 页面信息
 */
const get_scene = (options) => {
M
mehaotian 已提交
194 195 196 197 198 199 200 201 202
  const platformName = get_platform_name();
  let scene = '';
  if (options) {
    return options
  }
  if (platformName === 'wx') {
    scene = uni.getLaunchOptionsSync().scene;
  }
  return scene
M
mehaotian 已提交
203 204 205 206 207
};

/**
 * 获取页面url,不包含参数
 */
M
mehaotian 已提交
208
const get_route$1 = (pageVm) => {
M
mehaotian 已提交
209 210 211 212 213 214
  let _self = pageVm || get_page_vm();
  if (get_platform_name() === 'bd') {
    let mp_route = _self.$mp && _self.$mp.page && _self.$mp.page.is;
    let scope_route = _self.$scope && _self.$scope.is;
    return mp_route || scope_route || ''
  } else {
M
mehaotian 已提交
215 216 217 218 219
    return (
      _self.route ||
      (_self.$scope && _self.$scope.route) ||
      (_self.$mp && _self.$mp.page.route)
    )
M
mehaotian 已提交
220 221 222 223 224 225 226 227 228 229
  }
};

/**
 * 获取页面url, 包含参数
 */
const get_page_route = (pageVm) => {
  // 从 app 进入应用 ,没有 $page ,获取不到路由 ,需要获取页面 尝试从 getCurrentPages 获取也页面实例
  // FIXME 尽量不使用 getCurrentPages ,大部分获取路由是从 onHide 获取 ,这时可以获取到,如果是 onload ,则可能获取不到,比如 百度

M
mehaotian 已提交
230
  let page = pageVm && (pageVm.$page || (pageVm.$scope && pageVm.$scope.$page));
M
mehaotian 已提交
231
  let lastPageRoute = uni.getStorageSync('_STAT_LAST_PAGE_ROUTE');
M
mehaotian 已提交
232
  if (!page) return lastPageRoute || ''
M
mehaotian 已提交
233
  // 如果找不到 fullPath 就取 route 的值
M
mehaotian 已提交
234
  return page.fullPath === '/' ? page.route : page.fullPath || page.route
M
mehaotian 已提交
235 236
};

M
mehaotian 已提交
237 238
/**
 * 获取页面实例
M
mehaotian 已提交
239 240
 */
const get_page_vm = () => {
M
mehaotian 已提交
241 242 243 244
  let pages = getCurrentPages();
  let $page = pages[pages.length - 1];
  if (!$page) return null
  return $page.$vm
M
mehaotian 已提交
245 246 247 248 249 250
};

/**
 * 获取页面类型
 */
const get_page_types = (self) => {
M
mehaotian 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
  // XXX 百度有问题 ,获取的都是 componet ,等待修复
  if (
    self.mpType === 'page' ||
    self.$mpType === 'page' ||
    (self.$mp && self.$mp.mpType === 'page') ||
    self.$options.mpType === 'page'
  ) {
    return 'page'
  }
  if (
    self.mpType === 'app' ||
    self.$mpType === 'app' ||
    (self.$mp && self.$mp.mpType === 'app') ||
    self.$options.mpType === 'app'
  ) {
    return 'app'
  }
  return null
M
mehaotian 已提交
269 270 271 272 273 274 275
};

/**
 * 处理上报参数
 * @param {Object}  需要处理的数据
 */
const handle_data = (statData) => {
M
mehaotian 已提交
276 277 278 279 280 281
  let firstArr = [];
  let contentArr = [];
  let lastArr = [];
  for (let i in statData) {
    const rd = statData[i];
    rd.forEach((elm) => {
M
mehaotian 已提交
282 283 284 285
      let newData = '';
      {
        newData = elm;
      }
M
mehaotian 已提交
286 287 288 289 290 291 292 293 294
      if (i === 0) {
        firstArr.push(newData);
      } else if (i === 3) {
        lastArr.push(newData);
      } else {
        contentArr.push(newData);
      }
    });
  }
M
mehaotian 已提交
295

M
mehaotian 已提交
296 297 298
  firstArr.push(...contentArr, ...lastArr);
  // 参数需要处理成字符串,方便上传
  return JSON.stringify(firstArr)
M
mehaotian 已提交
299 300 301 302 303 304
};

/**
 * 自定义事件参数校验
 */
const calibration = (eventName, options) => {
M
mehaotian 已提交
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
  //  login 、 share 、pay_success 、pay_fail 、register 、title
  if (!eventName) {
    console.error(`uni.report Missing [eventName] parameter`);
    return true
  }
  if (typeof eventName !== 'string') {
    console.error(
      `uni.report [eventName] Parameter type error, it can only be of type String`
    );
    return true
  }
  if (eventName.length > 255) {
    console.error(
      `uni.report [eventName] Parameter length cannot be greater than 255`
    );
    return true
  }
M
mehaotian 已提交
322

M
mehaotian 已提交
323 324 325 326 327 328
  if (typeof options !== 'string' && typeof options !== 'object') {
    console.error(
      'uni.report [options] Parameter type error, Only supports String or Object type'
    );
    return true
  }
M
mehaotian 已提交
329

M
mehaotian 已提交
330 331 332 333 334 335
  if (typeof options === 'string' && options.length > 255) {
    console.error(
      `uni.report [options] Parameter length cannot be greater than 255`
    );
    return true
  }
M
mehaotian 已提交
336

M
mehaotian 已提交
337 338 339 340 341 342
  if (eventName === 'title' && typeof options !== 'string') {
    console.error(
      `uni.report [eventName] When the parameter is title, the [options] parameter can only be of type String`
    );
    return true
  }
M
mehaotian 已提交
343 344 345
};

const get_page_name = (routepath) => {
M
mehaotian 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
  return (titleJsons && titleJsons[routepath]) || ''
};

const Report_Data_Time = 'Report_Data_Time';
const Report_Status = 'Report_Status';
const is_report_data = () => {
  return new Promise((resolve, reject) => {
    let start_time = '';
    let end_time = new Date().getTime();
    let diff_time = DIFF_TIME;
    let report_status = 1;
    try {
      start_time = uni.getStorageSync(Report_Data_Time);
      report_status = uni.getStorageSync(Report_Status);
    } catch (e) {
      start_time = '';
      report_status = 1;
    }

    if (report_status === '') {
      requestData(({ enable }) => {
        uni.setStorageSync(Report_Data_Time, end_time);
        uni.setStorageSync(Report_Status, enable);
        if (enable === 1) {
          resolve();
        }
      });
      return
    }

    if (report_status === 1) {
      resolve();
    }

    if (!start_time) {
      uni.setStorageSync(Report_Data_Time, end_time);
      start_time = end_time;
    }

    if (end_time - start_time > diff_time) {
      requestData(({ enable }) => {
        uni.setStorageSync(Report_Data_Time, end_time);
        uni.setStorageSync(Report_Status, enable);
      });
    }
  })
};

const requestData = (done) => {
  const appid = process.env.UNI_APP_ID;
  let formData = {
    usv: STAT_VERSION,
    conf: JSON.stringify({
      ak: appid,
    }),
  };
  uni.request({
    url: STAT_URL,
    method: 'GET',
    data: formData,
    success: (res) => {
      const { data } = res;
      if (data.ret === 0) {
        typeof done === 'function' &&
          done({
            enable: data.enable,
          });
      }
    },
    fail: (e) => {
      let report_status_code = 1;
      try {
        report_status_code = uni.getStorageSync(Report_Status);
      } catch (e) {
        report_status_code = 1;
      }
      if (report_status_code === '') {
        report_status_code = 1;
      }
      typeof done === 'function' &&
        done({
          enable: report_status_code,
        });
    },
  });
};

/**
 * 获取uniCloud服务空间配置
 * @returns {Object}
 */
const uni_cloud_config = () => {
  return process.env.UNI_STAT_UNI_CLOUD || {}
};

/**
 * 获取服务空间
 * @param {*} config
 * @returns
 */
const get_space = (config) => {
  const uniCloudConfig = uni_cloud_config();
  const { spaceId, provider, clientSecret } = uniCloudConfig;
  const space_type = ['tcb', 'aliyun'];
  const is_provider = space_type.indexOf(provider) !== -1;
  const is_aliyun = provider === 'aliyun' && spaceId && clientSecret;
  const is_tcb = provider === 'tcb' && spaceId;

  if (is_provider && (is_aliyun || is_tcb)) {
    return uniCloudConfig
  } else {
    if (config && config.spaceId) {
      return config
    }
  }

  return null
};

/**
 * 是否开启 debug 模式
 */
const is_debug = debug;

/**
 * 日志输出
 * @param {*} data
 */
const log = (data) => {
  let msg_type = '';
  switch (data.lt) {
    case '1':
      msg_type = '应用启动';
      break
    case '3':
      msg_type = '应用进入后台';
      break

    case '11':
      msg_type = '页面切换';
      break
    case '21':
      msg_type = '事件触发';
      break
    case '31':
      msg_type = '应用错误';
      break
  }
  if (msg_type) {
    console.log(`=== 统计数据采集:${msg_type} ===`);
    console.log(data);
    console.log(`=== 采集结束 ===`);
  }
M
mehaotian 已提交
499 500
};

M
mehaotian 已提交
501
const appid = process.env.UNI_APP_ID; // 做应用隔离
M
mehaotian 已提交
502
const dbSet = (name, value) => {
M
mehaotian 已提交
503 504
  let data = uni.getStorageSync('$$STAT__DBDATA:'+appid) || {};

M
mehaotian 已提交
505 506 507 508
  if (!data) {
    data = {};
  }
  data[name] = value;
M
mehaotian 已提交
509
  uni.setStorageSync('$$STAT__DBDATA:'+appid, data);
M
mehaotian 已提交
510 511 512
};

const dbGet = (name) => {
M
mehaotian 已提交
513
  let data = uni.getStorageSync('$$STAT__DBDATA:'+appid) || {};
M
mehaotian 已提交
514
  if (!data[name]) {
M
mehaotian 已提交
515
    let dbdata = uni.getStorageSync('$$STAT__DBDATA:'+appid);
M
mehaotian 已提交
516 517 518 519 520 521 522 523 524
    if (!dbdata) {
      dbdata = {};
    }
    if (!dbdata[name]) {
      return undefined
    }
    data[name] = dbdata[name];
  }
  return data[name]
M
mehaotian 已提交
525 526 527
};

const dbRemove = (name) => {
M
mehaotian 已提交
528
  let data = uni.getStorageSync('$$STAT__DBDATA:'+appid) || {};
M
mehaotian 已提交
529 530
  if (data[name]) {
    delete data[name];
M
mehaotian 已提交
531
    uni.setStorageSync('$$STAT__DBDATA:'+appid, data);
M
mehaotian 已提交
532
  } else {
M
mehaotian 已提交
533
    data = uni.getStorageSync('$$STAT__DBDATA:'+appid);
M
mehaotian 已提交
534 535
    if (data[name]) {
      delete data[name];
M
mehaotian 已提交
536
      uni.setStorageSync('$$STAT__DBDATA:'+appid, data);
M
mehaotian 已提交
537 538
    }
  }
M
mehaotian 已提交
539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561
};

// 首次访问时间
const FIRST_VISIT_TIME_KEY = '__first__visit__time';
// 最后访问时间
const LAST_VISIT_TIME_KEY = '__last__visit__time';
/**
 * 获取当前时间
 */
const get_time = () => {
	return parseInt(new Date().getTime() / 1000)
};

/**
 * 获取首次访问时间
 */
const get_first_visit_time = () => {
	const timeStorge = dbGet(FIRST_VISIT_TIME_KEY);
	let time = 0;
	if (timeStorge) {
		time = timeStorge;
	} else {
		time = get_time();
562
		dbSet(FIRST_VISIT_TIME_KEY, time);
M
mehaotian 已提交
563 564 565 566 567
		// 首次访问需要 将最后访问时间置 0
		dbRemove(LAST_VISIT_TIME_KEY);
	}
	return time
};
568 569 570

/**
 * 最后访问时间
M
mehaotian 已提交
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
 */
const get_last_visit_time = () => {
	const timeStorge = dbGet(LAST_VISIT_TIME_KEY);
	let time = 0;
	if (timeStorge) {
		time = timeStorge;
	}
	dbSet(LAST_VISIT_TIME_KEY, get_time());
	return time
};

// 页面停留时间记录key
const PAGE_RESIDENCE_TIME = '__page__residence__time';
let First_Page_Residence_Time = 0;
let Last_Page_Residence_Time = 0;

/**
 * 设置页面停留时间
 */
const set_page_residence_time = () => {
	First_Page_Residence_Time = get_time();
	dbSet(PAGE_RESIDENCE_TIME, First_Page_Residence_Time);
	return First_Page_Residence_Time
};

/**
 * 获取页面停留时间
 */
const get_page_residence_time = () => {
	Last_Page_Residence_Time = get_time();
601
	First_Page_Residence_Time = dbGet(PAGE_RESIDENCE_TIME);
M
mehaotian 已提交
602 603
	return Last_Page_Residence_Time - First_Page_Residence_Time
};
604 605 606

/**
 * 获取总访问次数
M
mehaotian 已提交
607
 */
608
const TOTAL_VISIT_COUNT = '__total__visit__count';
M
mehaotian 已提交
609 610
const get_total_visit_count = () => {
	const timeStorge = dbGet(TOTAL_VISIT_COUNT);
611
	let count = 1;
M
mehaotian 已提交
612 613
	if (timeStorge) {
		count = timeStorge;
614
		count++;
M
mehaotian 已提交
615 616 617 618 619
	}
	dbSet(TOTAL_VISIT_COUNT, count);
	return count
};

620

M
mehaotian 已提交
621
const FIRST_TIME = '__first_time';
622
/**
M
mehaotian 已提交
623
 * 设置页面首次访问时间,用户获取页面/应用停留时常
M
mehaotian 已提交
624
 */
M
mehaotian 已提交
625 626 627 628
const set_first_time = () => {
	const time = new Date().getTime();
	const timeStorge = dbSet(FIRST_TIME,time);
	return timeStorge
M
mehaotian 已提交
629 630
};

631
/**
M
mehaotian 已提交
632
 * 获取最后一次时间 ,暂时用不到,直接获取当前时间即可
M
mehaotian 已提交
633
 */
M
mehaotian 已提交
634 635 636 637 638
// export const get_last_time = () => {
// 	let time = new Date().getTime()
// 	Set__Last__Time = time
// 	return time
// }
M
mehaotian 已提交
639

640 641
/**
 * 获取页面 \ 应用停留时间
M
mehaotian 已提交
642 643
 */
const get_residence_time = (type) => {
644
	let residenceTime = 0;
M
mehaotian 已提交
645 646 647 648
	const first_time = dbGet(FIRST_TIME);
	const last_time = get_time();
	if (first_time !== 0) {
		residenceTime = last_time - first_time;
M
mehaotian 已提交
649 650
	}

651
	residenceTime = parseInt(residenceTime / 1000);
M
mehaotian 已提交
652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673
	residenceTime = residenceTime < 1 ? 1 : residenceTime;
	if (type === 'app') {
		let overtime = residenceTime > APP_PVER_TIME ? true : false;
		return {
			residenceTime,
			overtime,
		}
	}
	if (type === 'page') {
		let overtime = residenceTime > PAGE_PVER_TIME ? true : false;
		return {
			residenceTime,
			overtime,
		}
	}
	return {
		residenceTime,
	}
};

// 统计数据默认值
let statData = {
674 675 676
  uuid: get_uuid(), // 设备标识
  ak: stat_config.appid, // uni-app 应用 Appid
  p: sys.platform === 'android' ? 'a' : 'i', // 手机系统
M
mehaotian 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
  ut: get_platform_name(), // 平台类型
  mpn: get_pack_name(), // 原生平台包名、小程序 appid
  usv: STAT_VERSION, // 统计 sdk 版本
  v: get_version(), // 应用版本,仅app
  ch: get_channel(), // 渠道信息
  cn: '', // 国家
  pn: '', // 省份
  ct: '', // 城市
  t: get_time(), // 上报数据时的时间戳
  tt: '',
  brand: sys.brand || '', // 手机品牌
  md: sys.model, // 手机型号
  sv: sys.system.replace(/(Android|iOS)\s/, ''), // 手机系统版本
  mpsdk: sys.SDKVersion || '', // x程序 sdk version
  mpv: sys.version || '', // 小程序平台版本 ,如微信、支付宝
  lang: sys.language, // 语言
  pr: sys.pixelRatio, // pixelRatio 设备像素比
  ww: sys.windowWidth, // windowWidth 可使用窗口宽度
  wh: sys.windowHeight, // windowHeight 可使用窗口高度
  sw: sys.screenWidth, // screenWidth 屏幕宽度
  sh: sys.screenHeight, // screenHeight 屏幕高度
M
mehaotian 已提交
698 699
};
class Report {
M
mehaotian 已提交
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730
  constructor() {
    // 页面实例
    this.self = '';
    // 进入应用标识
    this.__licationShow = false;
    // 离开应用标识
    this.__licationHide = false;
    // 统计默认值
    this.statData = statData;
    // 标题默认值
    this._navigationBarTitle = {
      config: '',
      page: '',
      report: '',
      lt: '',
    };

    // 页面参数
    this._query = {};
    // 页面最后停留页面的 url
    // this._lastPageRoute = ''

    // 注册拦截器
    let registerInterceptor = typeof uni.addInterceptor === 'function';
    if (registerInterceptor) {
      this.addInterceptorInit();
      this.interceptLogin();
      this.interceptShare(true);
      this.interceptRequestPayment();
    }
  }
M
mehaotian 已提交
731

M
mehaotian 已提交
732 733 734 735 736 737 738 739
  addInterceptorInit() {
    let self = this;
    uni.addInterceptor('setNavigationBarTitle', {
      invoke(args) {
        self._navigationBarTitle.page = args.title;
      },
    });
  }
M
mehaotian 已提交
740

M
mehaotian 已提交
741 742 743 744 745 746 747 748
  interceptLogin() {
    let self = this;
    uni.addInterceptor('login', {
      complete() {
        self._login();
      },
    });
  }
M
mehaotian 已提交
749

M
mehaotian 已提交
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764
  interceptShare(type) {
    let self = this;
    if (!type) {
      self._share();
      return
    }
    uni.addInterceptor('share', {
      success() {
        self._share();
      },
      fail() {
        self._share();
      },
    });
  }
M
mehaotian 已提交
765

M
mehaotian 已提交
766 767 768 769 770 771 772 773 774 775 776
  interceptRequestPayment() {
    let self = this;
    uni.addInterceptor('requestPayment', {
      success() {
        self._payment('pay_success');
      },
      fail() {
        self._payment('pay_fail');
      },
    });
  }
M
mehaotian 已提交
777

M
mehaotian 已提交
778 779 780 781 782 783 784 785
  _login() {
    this.sendEventRequest(
      {
        key: 'login',
      },
      0
    );
  }
M
mehaotian 已提交
786

M
mehaotian 已提交
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802
  _share() {
    this.sendEventRequest(
      {
        key: 'share',
      },
      0
    );
  }
  _payment(key) {
    this.sendEventRequest(
      {
        key,
      },
      0
    );
  }
M
mehaotian 已提交
803

M
mehaotian 已提交
804 805 806 807 808 809 810 811 812 813 814 815 816
  /**
   * 进入应用触发
   */
  applicationShow() {
    // 通过 __licationHide 判断保证是进入后台后在次进入应用,避免重复上报数据
    if (this.__licationHide) {
      const time = get_residence_time('app');
      // 需要判断进入后台是否超过时限 ,默认是 30min ,是的话需要执行进入应用的上报
      if (time.overtime) {
        let lastPageRoute = uni.getStorageSync('_STAT_LAST_PAGE_ROUTE');
        let options = {
          path: lastPageRoute,
          scene: this.statData.sc,
817
          cst: 2,
M
mehaotian 已提交
818 819 820 821 822 823 824
        };
        this.sendReportRequest(options);
      }
      // 状态重置
      this.__licationHide = false;
    }
  }
M
mehaotian 已提交
825

M
mehaotian 已提交
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
  /**
   * 离开应用触发
   * @param {Object} self
   * @param {Object} type
   */
  applicationHide(self, type) {
    if (!self) {
      // 表示应用切换到后台 ,此时需要从页面栈获取页面实例
      self = get_page_vm();
    }
    // 进入应用后台保存状态,方便进入前台后判断是否上报应用数据
    this.__licationHide = true;
    const time = get_residence_time();
    const route = get_page_route(self);
    uni.setStorageSync('_STAT_LAST_PAGE_ROUTE', route);
    this.sendHideRequest(
      {
        urlref: route,
        urlref_ts: time.residenceTime,
      },
      type
    );
M
mehaotian 已提交
848 849
    // 更新页面首次访问时间
    set_first_time();
M
mehaotian 已提交
850
  }
M
mehaotian 已提交
851

M
mehaotian 已提交
852 853 854 855 856 857 858 859 860 861 862 863 864
  /**
   * 进入页面触发
   */
  pageShow(self) {
    // 清空值 ,初始化 ,避免污染后面的上报数据
    this._navigationBarTitle = {
      config: '',
      page: '',
      report: '',
      lt: '',
    };

    const route = get_page_route(self);
M
mehaotian 已提交
865
    const routepath = get_route$1(self);
M
mehaotian 已提交
866 867 868 869

    this._navigationBarTitle.config = get_page_name(routepath);
    // 表示应用触发 ,页面切换不触发之后的逻辑
    if (this.__licationShow) {
M
mehaotian 已提交
870 871
      // 更新页面首次访问时间
      set_first_time();
M
mehaotian 已提交
872 873 874 875 876 877 878 879 880 881 882 883
      // this._lastPageRoute = route
      uni.setStorageSync('_STAT_LAST_PAGE_ROUTE', route);
      this.__licationShow = false;
      return
    }

    const time = get_residence_time('page');
    // 停留时间
    if (time.overtime) {
      let options = {
        path: route,
        scene: this.statData.sc,
884
        cst: 3,
M
mehaotian 已提交
885 886 887
      };
      this.sendReportRequest(options);
    }
M
mehaotian 已提交
888 889
    // 更新页面首次访问时间
    set_first_time();
M
mehaotian 已提交
890
  }
M
mehaotian 已提交
891

M
mehaotian 已提交
892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
  /**
   * 离开页面触发
   */
  pageHide(self) {
    if (!this.__licationHide) {
      const time = get_residence_time('page');
      let route = get_page_route(self);
      let lastPageRoute = uni.getStorageSync('_STAT_LAST_PAGE_ROUTE');
      if (!lastPageRoute) {
        lastPageRoute = route;
      }
      uni.setStorageSync('_STAT_LAST_PAGE_ROUTE', route);
      this.sendPageRequest({
        url: route,
        urlref: lastPageRoute,
        urlref_ts: time.residenceTime,
      });
      // this._lastPageRoute = route
      return
    }
  }
M
mehaotian 已提交
913

M
mehaotian 已提交
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930
  /**
   * 发送请求,应用维度上报
   * @param {Object} options 页面信息
   */
  sendReportRequest(options) {
    this._navigationBarTitle.lt = '1';
    this._navigationBarTitle.config = get_page_name(options.path);
    let is_opt = options.query && JSON.stringify(options.query) !== '{}';
    let query = is_opt ? '?' + JSON.stringify(options.query) : '';
    Object.assign(this.statData, {
      lt: '1',
      url: options.path + query || '',
      t: get_time(),
      sc: get_scene(options.scene),
      fvts: get_first_visit_time(),
      lvts: get_last_visit_time(),
      tvc: get_total_visit_count(),
931 932
      // create session type  上报类型 ,1 应用进入 2.后台30min进入 3.页面30min进入
      cst: options.cst || 1,
M
mehaotian 已提交
933 934 935 936 937 938 939
    });
    if (get_platform_name() === 'n') {
      this.getProperty();
    } else {
      this.getNetworkInfo();
    }
  }
M
mehaotian 已提交
940

M
mehaotian 已提交
941 942 943 944 945 946 947 948
  /**
   * 发送请求,页面维度上报
   * @param {Object} opt
   */
  sendPageRequest(opt) {
    let { url, urlref, urlref_ts } = opt;
    this._navigationBarTitle.lt = '11';
    let options = {
949 950 951
      ak: this.statData.ak,
      uuid: this.statData.uuid,
      p: this.statData.p,
M
mehaotian 已提交
952 953 954 955 956 957 958 959 960 961 962 963
      lt: '11',
      ut: this.statData.ut,
      url,
      tt: this.statData.tt,
      urlref,
      urlref_ts,
      ch: this.statData.ch,
      usv: this.statData.usv,
      t: get_time(),
    };
    this.request(options);
  }
M
mehaotian 已提交
964

M
mehaotian 已提交
965 966 967 968 969 970 971 972
  /**
   * 进入后台上报数据
   * @param {Object} opt
   * @param {Object} type
   */
  sendHideRequest(opt, type) {
    let { urlref, urlref_ts } = opt;
    let options = {
973 974 975
      ak: this.statData.ak,
      uuid: this.statData.uuid,
      p: this.statData.p,
M
mehaotian 已提交
976 977 978 979 980 981 982 983 984 985
      lt: '3',
      ut: this.statData.ut,
      urlref,
      urlref_ts,
      ch: this.statData.ch,
      usv: this.statData.usv,
      t: get_time(),
    };
    this.request(options, type);
  }
M
mehaotian 已提交
986

M
mehaotian 已提交
987 988 989 990
  /**
   * 自定义事件上报
   */
  sendEventRequest({ key = '', value = '' } = {}) {
M
mehaotian 已提交
991 992 993 994 995 996
    let routepath = '';

    try {
      routepath = get_route$1();
    } catch (error) {
      const launch_options = dbGet('__launch_options');
997
      routepath = launch_options.path;
M
mehaotian 已提交
998
    }
999

M
mehaotian 已提交
1000 1001 1002
    this._navigationBarTitle.config = get_page_name(routepath);
    this._navigationBarTitle.lt = '21';
    let options = {
1003 1004 1005
      ak: this.statData.ak,
      uuid: this.statData.uuid,
      p: this.statData.p,
M
mehaotian 已提交
1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016
      lt: '21',
      ut: this.statData.ut,
      url: routepath,
      ch: this.statData.ch,
      e_n: key,
      e_v: typeof value === 'object' ? JSON.stringify(value) : value.toString(),
      usv: this.statData.usv,
      t: get_time(),
    };
    this.request(options);
  }
M
mehaotian 已提交
1017

M
mehaotian 已提交
1018 1019 1020 1021 1022 1023 1024 1025 1026
  /**
   * 获取wgt资源版本
   */
  getProperty() {
    plus.runtime.getProperty(plus.runtime.appid, (wgtinfo) => {
      this.statData.v = wgtinfo.version || '';
      this.getNetworkInfo();
    });
  }
M
mehaotian 已提交
1027

M
mehaotian 已提交
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
  /**
   * 获取网络信息
   */
  getNetworkInfo() {
    uni.getNetworkType({
      success: (result) => {
        this.statData.net = result.networkType;
        this.getLocation();
      },
    });
  }
M
mehaotian 已提交
1039

M
mehaotian 已提交
1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
  /**
   * 获取位置信息
   */
  getLocation() {
    if (stat_config.getLocation) {
      uni.getLocation({
        type: 'wgs84',
        geocode: true,
        success: (result) => {
          if (result.address) {
            this.statData.cn = result.address.country;
            this.statData.pn = result.address.province;
            this.statData.ct = result.address.city;
          }

          this.statData.lat = result.latitude;
          this.statData.lng = result.longitude;
          this.request(this.statData);
        },
      });
    } else {
      this.statData.lat = 0;
      this.statData.lng = 0;
      this.request(this.statData);
    }
  }
M
mehaotian 已提交
1066

M
mehaotian 已提交
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
  /**
   * 发送请求
   * @param {Object} data 上报数据
   * @param {Object} type 类型
   */
  request(data, type) {
    let time = get_time();
    const title = this._navigationBarTitle;
    Object.assign(data, {
      ttn: title.page,
      ttpj: title.config,
      ttc: title.report,
    });

    let uniStatData = dbGet('__UNI__STAT__DATA') || {};
    if (!uniStatData[data.lt]) {
      uniStatData[data.lt] = [];
    }
    // 加入队列
    uniStatData[data.lt].push(data);
    dbSet('__UNI__STAT__DATA', uniStatData);

    let page_residence_time = get_page_residence_time();
    // debug 打印打点信息
    if (is_debug) {
      log(data);
    }
    // 判断时候到达上报时间 ,默认 10 秒上报
    if (page_residence_time < OPERATING_TIME && !type) return

    // 时间超过,重新获取时间戳
    set_page_residence_time();
    const stat_data = handle_data(uniStatData);
    let optionsData = {
      usv: STAT_VERSION, //统计 SDK 版本号
      t: time, //发送请求时的时间戮
      requests: stat_data,
    };

    // 重置队列
    dbRemove('__UNI__STAT__DATA');

    // XXX 安卓需要延迟上报 ,否则会有未知错误,需要验证处理
    if (get_platform_name() === 'n' && this.statData.p === 'a') {
      setTimeout(() => {
        this.sendRequest(optionsData);
      }, 200);
      return
    }

    this.sendRequest(optionsData);
  }
M
mehaotian 已提交
1119

M
mehaotian 已提交
1120 1121 1122
  getIsReportData() {
    return is_report_data()
  }
M
mehaotian 已提交
1123

M
mehaotian 已提交
1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
  /**
   * 数据上报
   * @param {Object} optionsData 需要上报的数据
   */
  sendRequest(optionsData) {
    {
      if (!uni.__stat_uniCloud_space) {
        console.error('当前尚未关联服务空间.');
        return
      }

1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
      const uniCloudObj = uni.__stat_uniCloud_space.importObject(
        'uni-stat-receiver',
        {
          customUI: true,
        }
      );
      uniCloudObj
        .report(optionsData)
        .then(() => {
          if (is_debug) {
            console.log(`=== 统计队列数据上报 ===`);
            console.log(optionsData);
            console.log(`=== 上报结束 ===`);
          }
        })
        .catch((err) => {
          if (is_debug) {
            console.warn('=== 统计上报错误');
            console.error(err);
          }
        });
M
mehaotian 已提交
1156 1157
    }
  }
M
mehaotian 已提交
1158

M
mehaotian 已提交
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
  /**
   * h5 请求
   */
  imageRequest(data) {
    this.getIsReportData().then(() => {
      let image = new Image();
      let options = get_sgin(get_encodeURIComponent_options(data)).options;
      image.src = STAT_H5_URL + '?' + options;
      if (is_debug) {
        console.log(`=== 统计队列数据上报 ===`);
        console.log(data);
        console.log(`=== 上报结束 ===`);
      }
    });
  }
M
mehaotian 已提交
1174

M
mehaotian 已提交
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
  sendEvent(key, value) {
    // 校验 type 参数
    if (calibration(key, value)) return

    if (key === 'title') {
      this._navigationBarTitle.report = value;
      return
    }
    this.sendEventRequest(
      {
        key,
        value: typeof value === 'object' ? JSON.stringify(value) : value,
      },
      1
    );
  }
M
mehaotian 已提交
1191 1192
}

M
mehaotian 已提交
1193 1194 1195 1196 1197
class Stat extends Report {
  static getInstance() {
    if (!uni.__stat_instance) {
      uni.__stat_instance = new Stat();
    }
M
mehaotian 已提交
1198

M
mehaotian 已提交
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222
    // 2.0 init 服务空间
    {
      let space = get_space(uniCloud.config);
      if (!uni.__stat_uniCloud_space) {
        //   判断不为空对象
        if (space && Object.keys(space).length !== 0) {
          let spaceData = {
            provider: space.provider,
            spaceId: space.spaceId,
            clientSecret: space.clientSecret
          };
          if(space.endpoint){
            spaceData.endpoint = space.endpoint;
          }
          uni.__stat_uniCloud_space = uniCloud.init(spaceData);
          // console.log(
          //   '=== 当前绑定的统计服务空间spaceId:' +
          //     uni.__stat_uniCloud_space.config.spaceId
          // )
        } else {
          console.error('当前尚未关联统计服务空间,请先在manifest.json中配置服务空间!');
        }
      }
    }
M
mehaotian 已提交
1223

M
mehaotian 已提交
1224 1225 1226 1227 1228
    return uni.__stat_instance
  }
  constructor() {
    super();
  }
M
mehaotian 已提交
1229

M
mehaotian 已提交
1230 1231 1232 1233 1234 1235 1236 1237 1238
  /**
   * 进入应用
   * @param {Object} options 页面参数
   * @param {Object} self	当前页面实例
   */
  launch(options, self) {
    // 初始化页面停留时间  start
    set_page_residence_time();
    this.__licationShow = true;
M
mehaotian 已提交
1239
    dbSet('__launch_options', options);
1240 1241
    // 应用初始上报参数为1 
    options.cst = 1;
M
mehaotian 已提交
1242 1243 1244 1245 1246 1247
    this.sendReportRequest(options, true);
  }
  load(options, self) {
    this.self = self;
    this._query = options;
  }
M
mehaotian 已提交
1248

M
mehaotian 已提交
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
  appHide(self) {
    this.applicationHide(self, true);
  }

  appShow(self) {
    this.applicationShow(self);
  }

  show(self) {
    this.self = self;
    if (get_page_types(self) === 'page') {
      this.pageShow(self);
    }

    // #ifdef VUE3
M
mehaotian 已提交
1264
    if (get_platform_name() === 'h5' || get_platform_name() === 'n') {
M
mehaotian 已提交
1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
      if (get_page_types(self) === 'app') {
        this.appShow();
      }
    }
    // #endif

    // #ifndef VUE3
    if (get_page_types(self) === 'app') {
      this.appShow();
    }
    // #endif
  }

  hide(self) {
    this.self = self;
    if (get_page_types(self) === 'page') {
      this.pageHide(self);
    }

    // #ifdef VUE3
M
mehaotian 已提交
1285
    if (get_platform_name() === 'h5' || get_platform_name() === 'n') {
M
mehaotian 已提交
1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
      if (get_page_types(self) === 'app') {
        this.appHide();
      }
    }
    // #endif

    // #ifndef VUE3
    if (get_page_types(self) === 'app') {
      this.appHide();
    }
    // #endif
  }

  error(em) {
    // 开发工具内不上报错误
M
mehaotian 已提交
1301 1302 1303 1304 1305 1306
    // if (this._platform === 'devtools') {
    //   if (process.env.NODE_ENV === 'development') {
    //     console.info('当前运行环境为开发者工具,不上报数据。')
    //     return
    //   }
    // }
M
mehaotian 已提交
1307 1308 1309 1310 1311 1312
    let emVal = '';
    if (!em.message) {
      emVal = JSON.stringify(em);
    } else {
      emVal = em.stack;
    }
M
mehaotian 已提交
1313 1314 1315 1316 1317 1318 1319 1320 1321

    let route = '';
    try {
      route =  get_route(); 
    }catch(e){
      // 未获取到页面路径
      route = '';
    }

M
mehaotian 已提交
1322
    let options = {
1323 1324 1325
      ak: this.statData.ak,
      uuid: this.statData.uuid,
      p: this.statData.p,
M
mehaotian 已提交
1326
      lt: '31',
M
mehaotian 已提交
1327
      url:route,
M
mehaotian 已提交
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
      ut: this.statData.ut,
      ch: this.statData.ch,
      mpsdk: this.statData.mpsdk,
      mpv: this.statData.mpv,
      v: this.statData.v,
      em: emVal,
      usv: this.statData.usv,
      t: parseInt(new Date().getTime() / 1000),
    };
    this.request(options);
  }
}
M
mehaotian 已提交
1340 1341 1342 1343 1344 1345 1346 1347
var Stat$1 = Stat;

const stat = Stat$1.getInstance();

// 用于判断是隐藏页面还是卸载页面
let isHide = false;

const lifecycle = {
M
mehaotian 已提交
1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380
  onLaunch(options) {
    // 进入应用上报数据
    stat.launch(options, this);
  },
  onLoad(options) {
    stat.load(options, this);
    // 重写分享,获取分享上报事件
    if (this.$scope && this.$scope.onShareAppMessage) {
      let oldShareAppMessage = this.$scope.onShareAppMessage;
      this.$scope.onShareAppMessage = function (options) {
        stat.interceptShare(false);
        return oldShareAppMessage.call(this, options)
      };
    }
  },
  onShow() {
    isHide = false;
    stat.show(this);
  },
  onHide() {
    isHide = true;
    stat.hide(this);
  },
  onUnload() {
    if (isHide) {
      isHide = false;
      return
    }
    stat.hide(this);
  },
  onError(e) {
    stat.error(e);
  },
M
mehaotian 已提交
1381 1382
};

M
mehaotian 已提交
1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411
// 加载统计代码
function load_stat() {
  // #ifdef VUE3
  uni.onCreateVueApp((app) => {
    app.mixin(lifecycle);
    uni.report = function (type, options) {
      stat.sendEvent(type, options);
    };
  });

  if (get_platform_name() !== 'h5' && get_platform_name() !== 'n') {
    uni.onAppHide(() => {
      stat.appHide(get_page_vm());
    });
    uni.onAppShow(() => {
      stat.appShow(get_page_vm());
    });
  }
  // #endif

  // #ifndef VUE3
  // eslint-disable-next-line no-restricted-globals
  const Vue = require('vue')
  ;(Vue.default || Vue).mixin(lifecycle);
  uni.report = function (type, options) {
    stat.sendEvent(type, options);
  };
  // #endif
}
M
mehaotian 已提交
1412 1413

function main() {
M
mehaotian 已提交
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427
  if (is_debug) {
    {
      // #ifndef APP-NVUE
      console.log('=== uni统计开启,version:2.0');
      // #endif
    }
    load_stat();
  } else {
    if (process.env.NODE_ENV === 'development') {
      uni.report = function (type, options) {};
    } else {
      load_stat();
    }
  }
M
mehaotian 已提交
1428 1429 1430
}

main();