Merge pull request #3645 from vector-im/rav/refactor_rageshake
Factor out rageshake upload to a separate file
This commit is contained in:
commit
062cf47290
4 changed files with 105 additions and 73 deletions
|
@ -16,7 +16,8 @@ limitations under the License.
|
||||||
|
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import sdk from 'matrix-react-sdk';
|
import sdk from 'matrix-react-sdk';
|
||||||
import rageshake from '../../../vector/rageshake';
|
import submit_rageshake from '../../../vector/submit-rageshake';
|
||||||
|
import SdkConfig from 'matrix-react-sdk/lib/SdkConfig';
|
||||||
|
|
||||||
export default class BugReportDialog extends React.Component {
|
export default class BugReportDialog extends React.Component {
|
||||||
constructor(props, context) {
|
constructor(props, context) {
|
||||||
|
@ -47,7 +48,10 @@ export default class BugReportDialog extends React.Component {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.setState({ busy: true, err: null });
|
this.setState({ busy: true, err: null });
|
||||||
rageshake.sendBugReport(userText, sendLogs).then(() => {
|
submit_rageshake(SdkConfig.get().bug_report_endpoint_url, {
|
||||||
|
userText: userText,
|
||||||
|
sendLogs: sendLogs,
|
||||||
|
}).then(() => {
|
||||||
this.setState({ busy: false });
|
this.setState({ busy: false });
|
||||||
this.props.onFinished(false);
|
this.props.onFinished(false);
|
||||||
}, (err) => {
|
}, (err) => {
|
||||||
|
|
|
@ -259,7 +259,6 @@ async function loadApp() {
|
||||||
let configError;
|
let configError;
|
||||||
try {
|
try {
|
||||||
configJson = await getConfig();
|
configJson = await getConfig();
|
||||||
rageshake.setBugReportEndpoint(configJson.bug_report_endpoint_url);
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
configError = e;
|
configError = e;
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,8 +14,6 @@ See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import PlatformPeg from 'matrix-react-sdk/lib/PlatformPeg';
|
|
||||||
import request from "browser-request";
|
|
||||||
import q from "q";
|
import q from "q";
|
||||||
|
|
||||||
// This module contains all the code needed to log the console, persist it to
|
// This module contains all the code needed to log the console, persist it to
|
||||||
|
@ -396,7 +394,6 @@ function selectQuery(store, keyRange, resultMapper) {
|
||||||
let store = null;
|
let store = null;
|
||||||
let logger = null;
|
let logger = null;
|
||||||
let initPromise = null;
|
let initPromise = null;
|
||||||
let bugReportEndpoint = null;
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -430,81 +427,29 @@ module.exports = {
|
||||||
await store.consume();
|
await store.consume();
|
||||||
},
|
},
|
||||||
|
|
||||||
setBugReportEndpoint: function(url) {
|
|
||||||
bugReportEndpoint = url;
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Send a bug report.
|
* Get a recent snapshot of the logs, ready for attaching to a bug report
|
||||||
* @param {string} userText Any additional user input.
|
*
|
||||||
* @param {boolean} sendLogs True to send logs
|
* @return {Array<{lines: string, id, string}>} list of log data
|
||||||
* @return {Promise} Resolved when the bug report is sent.
|
|
||||||
*/
|
*/
|
||||||
sendBugReport: async function(userText, sendLogs) {
|
getLogsForReport: async function() {
|
||||||
if (!logger) {
|
if (!logger) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
"No console logger, did you forget to call init()?"
|
"No console logger, did you forget to call init()?"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (!bugReportEndpoint) {
|
|
||||||
throw new Error("No bug report endpoint has been set.");
|
|
||||||
}
|
|
||||||
|
|
||||||
let version = "UNKNOWN";
|
|
||||||
try {
|
|
||||||
version = await PlatformPeg.get().getAppVersion();
|
|
||||||
}
|
|
||||||
catch (err) {} // PlatformPeg already logs this.
|
|
||||||
|
|
||||||
let userAgent = "UNKNOWN";
|
|
||||||
if (window.navigator && window.navigator.userAgent) {
|
|
||||||
userAgent = window.navigator.userAgent;
|
|
||||||
}
|
|
||||||
|
|
||||||
// If in incognito mode, store is null, but we still want bug report
|
// If in incognito mode, store is null, but we still want bug report
|
||||||
// sending to work going off the in-memory console logs.
|
// sending to work going off the in-memory console logs.
|
||||||
console.log("Sending bug report.");
|
if (store) {
|
||||||
let logs = [];
|
// flush most recent logs
|
||||||
if (sendLogs) {
|
await store.flush();
|
||||||
if (store) {
|
return await store.consume();
|
||||||
// flush most recent logs
|
|
||||||
await store.flush();
|
|
||||||
logs = await store.consume();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
logs.push({
|
|
||||||
lines: logger.flush(true),
|
|
||||||
id: "-",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
await q.Promise((resolve, reject) => {
|
return [{
|
||||||
request({
|
lines: logger.flush(true),
|
||||||
method: "POST",
|
id: "-",
|
||||||
url: bugReportEndpoint,
|
}];
|
||||||
body: {
|
}
|
||||||
logs: logs,
|
},
|
||||||
text: (
|
|
||||||
userText || "User did not supply any additional text."
|
|
||||||
),
|
|
||||||
app: 'riot-web',
|
|
||||||
version: version,
|
|
||||||
user_agent: userAgent,
|
|
||||||
},
|
|
||||||
json: true,
|
|
||||||
timeout: 5 * 60 * 1000,
|
|
||||||
}, (err, res) => {
|
|
||||||
if (err) {
|
|
||||||
reject(err);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (res.status < 200 || res.status >= 400) {
|
|
||||||
reject(new Error(`HTTP ${res.status}`));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
resolve();
|
|
||||||
})
|
|
||||||
});
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
84
src/vector/submit-rageshake.js
Normal file
84
src/vector/submit-rageshake.js
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
/*
|
||||||
|
Copyright 2017 OpenMarket Ltd
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
import q from "q";
|
||||||
|
import request from "browser-request";
|
||||||
|
|
||||||
|
import PlatformPeg from 'matrix-react-sdk/lib/PlatformPeg';
|
||||||
|
|
||||||
|
import rageshake from './rageshake'
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Send a bug report.
|
||||||
|
* @param {string} bugReportEndpoint HTTP url to send the report to
|
||||||
|
* @param {object} opts optional dictionary of options
|
||||||
|
* @param {string} opts.userText Any additional user input.
|
||||||
|
* @param {boolean} opts.sendLogs True to send logs
|
||||||
|
* @return {Promise} Resolved when the bug report is sent.
|
||||||
|
*/
|
||||||
|
export default async function sendBugReport(bugReportEndpoint, opts) {
|
||||||
|
if (!bugReportEndpoint) {
|
||||||
|
throw new Error("No bug report endpoint has been set.");
|
||||||
|
}
|
||||||
|
|
||||||
|
opts = opts || {};
|
||||||
|
|
||||||
|
let version = "UNKNOWN";
|
||||||
|
try {
|
||||||
|
version = await PlatformPeg.get().getAppVersion();
|
||||||
|
}
|
||||||
|
catch (err) {} // PlatformPeg already logs this.
|
||||||
|
|
||||||
|
let userAgent = "UNKNOWN";
|
||||||
|
if (window.navigator && window.navigator.userAgent) {
|
||||||
|
userAgent = window.navigator.userAgent;
|
||||||
|
}
|
||||||
|
|
||||||
|
console.log("Sending bug report.");
|
||||||
|
|
||||||
|
let logs = [];
|
||||||
|
if (opts.sendLogs) {
|
||||||
|
logs = await rageshake.getLogsForReport();
|
||||||
|
}
|
||||||
|
|
||||||
|
await q.Promise((resolve, reject) => {
|
||||||
|
request({
|
||||||
|
method: "POST",
|
||||||
|
url: bugReportEndpoint,
|
||||||
|
body: {
|
||||||
|
logs: logs,
|
||||||
|
text: (
|
||||||
|
opts.userText || "User did not supply any additional text."
|
||||||
|
),
|
||||||
|
app: 'riot-web',
|
||||||
|
version: version,
|
||||||
|
user_agent: userAgent,
|
||||||
|
},
|
||||||
|
json: true,
|
||||||
|
timeout: 5 * 60 * 1000,
|
||||||
|
}, (err, res) => {
|
||||||
|
if (err) {
|
||||||
|
reject(err);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (res.status < 200 || res.status >= 400) {
|
||||||
|
reject(new Error(`HTTP ${res.status}`));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
resolve();
|
||||||
|
})
|
||||||
|
});
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue