|
|
const path = require( 'path' ); |
|
|
const { app } = require( 'electron' ); |
|
|
|
|
|
const request = require( 'superagent' ); |
|
|
const config = require( '../../lib/config' ); |
|
|
const log = require( '../../lib/logger' )( 'desktop:crash-tracker' ); |
|
|
const system = require( '../../lib/system' ); |
|
|
|
|
|
function finished( error, response, cb ) { |
|
|
if ( error ) { |
|
|
log.error( 'Failed to upload crash report', error ); |
|
|
} else { |
|
|
log.info( 'Uploaded crash report' ); |
|
|
} |
|
|
|
|
|
if ( typeof cb !== 'undefined' ) { |
|
|
cb( response ); |
|
|
} |
|
|
} |
|
|
|
|
|
function gatherData( errorType, errorData ) { |
|
|
|
|
|
return Object.assign( {}, system.getVersionData(), { |
|
|
time: parseInt( new Date().getTime() / 1000, 10 ), |
|
|
type: errorType, |
|
|
data: errorData, |
|
|
} ); |
|
|
} |
|
|
|
|
|
module.exports = { |
|
|
isEnabled: function () { |
|
|
return config.crash_reporter.tracker; |
|
|
}, |
|
|
|
|
|
track: function ( errorType, errorData, cb ) { |
|
|
if ( config.crash_reporter.tracker ) { |
|
|
|
|
|
log.info( 'Sending crash report to ' + config.crash_reporter.url ); |
|
|
|
|
|
request |
|
|
.post( config.crash_reporter.url ) |
|
|
.send( gatherData( errorType, errorData ) ) |
|
|
.end( function ( error, response ) { |
|
|
finished( error, response, cb ); |
|
|
} ); |
|
|
} |
|
|
}, |
|
|
|
|
|
trackLog: function ( cb ) { |
|
|
const logFile = path.join( app.getPath( 'userData' ), config.debug.log_file ); |
|
|
|
|
|
log.info( 'Uploading log file: ' + logFile ); |
|
|
|
|
|
request |
|
|
.post( config.crash_reporter.url ) |
|
|
.send( gatherData( 'logfile', logFile ) ) |
|
|
.attach( 'log', logFile ) |
|
|
.end( function ( error, response ) { |
|
|
finished( error, response, cb ); |
|
|
} ); |
|
|
}, |
|
|
}; |
|
|
|