Add crash settings to web UI

This commit is contained in:
Dale Glass 2023-06-27 00:33:18 +02:00
parent e7fb5049ec
commit f218e54eac
2 changed files with 23 additions and 0 deletions

View file

@ -73,6 +73,21 @@
}
]
},
{
"label": "Networking / Crash Reporting",
"name": "crash_reporting",
"restart": false,
"settings": [
{
"name": "enable_crash_reporter",
"label": "Enable Crash Reporter",
"help": "Enable the automatic submission of crash reports to Overte e.V. This will help us find bugs and improve the code. Crash data will only be shared with developers trusted by Overte e.V., and will only be used to aid in development.",
"default": false,
"type": "checkbox",
"advanced": true
}
]
},
{
"name": "webrtc",
"label": "Networking / WebRTC",

View file

@ -61,6 +61,8 @@
#include <OctreeDataUtils.h>
#include <ThreadHelpers.h>
#include <crash-handler/CrashHandler.h>
using namespace std::chrono;
@ -199,6 +201,8 @@ DomainServer::DomainServer(int argc, char* argv[]) :
_httpManager(QHostAddress::AnyIPv4, DOMAIN_SERVER_HTTP_PORT,
QString("%1/resources/web/").arg(QCoreApplication::applicationDirPath()), this)
{
static const QString CRASH_REPORTER = "crash_reporting.enable_crash_reporter";
if (_parentPID != -1) {
watchParentProcess(_parentPID);
}
@ -239,12 +243,16 @@ DomainServer::DomainServer(int argc, char* argv[]) :
_settingsManager.setupConfigMap(userConfigFilename);
// setup a shutdown event listener to handle SIGTERM or WM_CLOSE for us
#ifdef _WIN32
installNativeEventFilter(&ShutdownEventListener::getInstance());
#else
ShutdownEventListener::getInstance();
#endif
auto &ch = CrashHandler::getInstance();
ch.setEnabled(_settingsManager.valueOrDefaultValueForKeyPath(CRASH_REPORTER).toBool());
qRegisterMetaType<DomainServerWebSessionData>("DomainServerWebSessionData");
qRegisterMetaTypeStreamOperators<DomainServerWebSessionData>("DomainServerWebSessionData");