mirror of
https://github.com/jely2002/youtube-dl-gui.git
synced 2021-11-01 22:46:21 +03:00
73 lines
2.2 KiB
JavaScript
73 lines
2.2 KiB
JavaScript
const Sentry = require("@sentry/electron");
|
|
const Tracing = require("@sentry/tracing");
|
|
const version = require('./package.json').version;
|
|
const { contextBridge, ipcRenderer } = require('electron')
|
|
|
|
function initSentry() {
|
|
if(process.argv[2] === '--dev' && !process.argv.includes("--sentry")) return;
|
|
Sentry.init({
|
|
dsn: process.env.SENTRY_DSN,
|
|
release: "youtube-dl-gui@" + version,
|
|
sendDefaultPii: true,
|
|
integrations: [new Tracing.Integrations.BrowserTracing()],
|
|
tracesSampleRate: process.argv[2] === '--dev' ? 1.0 : 0.01,
|
|
environment: process.argv[2] === '--dev' ? "development" : "production",
|
|
autoSessionTracking: true
|
|
});
|
|
}
|
|
|
|
initSentry();
|
|
|
|
contextBridge.exposeInMainWorld(
|
|
"main",
|
|
{
|
|
invoke: async (channel, data) => {
|
|
let validChannels = [
|
|
"platform",
|
|
"messageBox",
|
|
"errorReport",
|
|
"titlebarClick",
|
|
"openInputMenu",
|
|
"openCopyMenu",
|
|
"settingsAction",
|
|
"videoAction",
|
|
"cookieFile",
|
|
"downloadFolder",
|
|
"installUpdate",
|
|
"iconProgress",
|
|
"theme",
|
|
"restoreTaskList",
|
|
"getDoneActions",
|
|
"setDoneAction",
|
|
"getSubtitles",
|
|
"getSelectedSubtitles",
|
|
"getLog",
|
|
"saveLog"
|
|
];
|
|
if (validChannels.includes(channel)) {
|
|
return await ipcRenderer.invoke(channel, data);
|
|
}
|
|
},
|
|
receive: (channel, cb) => {
|
|
let validChannels = [
|
|
"log",
|
|
"error",
|
|
"toast",
|
|
"maximized",
|
|
"videoAction",
|
|
"updateGlobalButtons",
|
|
"updateLinkPlaceholder",
|
|
"totalSize",
|
|
"binaryLock",
|
|
"addShortcut",
|
|
"downloadShortcut"
|
|
];
|
|
if (validChannels.includes(channel)) {
|
|
ipcRenderer.on(channel, (event, arg) => {
|
|
cb(arg)
|
|
});
|
|
}
|
|
}
|
|
}
|
|
);
|