| const fetch = require( 'electron-fetch' ).default; |
| const log = require( '../../lib/logger' )( 'desktop:analytics' ); |
|
|
| function buildQuerystring( group, name ) { |
| let uriComponent = ''; |
|
|
| if ( 'object' === typeof group ) { |
| for ( const key in group ) { |
| checkLength( key, group[ key ] ); |
| uriComponent += '&x_' + encodeURIComponent( key ) + '=' + encodeURIComponent( group[ key ] ); |
| } |
| } else { |
| checkLength( group, name ); |
| uriComponent = '&x_' + encodeURIComponent( group ) + '=' + encodeURIComponent( name ); |
| } |
|
|
| return uriComponent; |
| } |
|
|
| async function bumpStat( group, name ) { |
| if ( 'object' === typeof group ) { |
| log.info( 'Bumping stats ', group ); |
| } else { |
| log.info( |
| 'Bumping stat,' + `${ group ? ' group: ' + group : '' }` + `${ name ? ' name: ' + name : '' }` |
| ); |
| } |
|
|
| const uriComponent = buildQuerystring( group, name ); |
| const url = `https://pixel.wp.com/g.gif?v=wpcom-no-pv${ uriComponent }&t=${ Math.random() }`; |
|
|
| const resp = await fetch( url ); |
| if ( resp.status !== 200 ) { |
| log.warn( `Analytics ping failed (${ resp.status }): `, resp.statusText ); |
| } |
| } |
|
|
| |
| |
| |
| function sanitizeVersion( version ) { |
| return version.replace( /\./g, '-' ).replace( 'beta', 'b' ); |
| } |
|
|
| const PLATFORMS = { |
| darwin: 'osx', |
| win32: 'windows', |
| linux: 'linux', |
| }; |
|
|
| |
| function getPlatform( platform ) { |
| return PLATFORMS[ platform ]; |
| } |
|
|
| |
| function checkLength( key, val ) { |
| if ( key.length > 32 ) { |
| log.warn( `bumpStat() key '${ key }' is longer than 32 chars` ); |
| } |
| if ( val.length > 32 ) { |
| log.warn( `bumpStat() value '${ val }' is longer than 32 chars` ); |
| } |
| } |
|
|
| module.exports = { |
| bumpStat, |
| sanitizeVersion, |
| getPlatform, |
| }; |
|
|