2019-11-26 20:04:28 +01:00
|
|
|
import 'babel-polyfill';
|
2020-02-14 19:58:09 +01:00
|
|
|
import * as Sentry from '@sentry/browser';
|
2019-03-07 22:46:15 +01:00
|
|
|
import ErrorBoundary from 'component/errorBoundary';
|
2017-12-28 00:48:11 +01:00
|
|
|
import App from 'component/app';
|
|
|
|
import SnackBar from 'component/snackBar';
|
2019-02-22 06:01:59 +01:00
|
|
|
// @if TARGET='app'
|
2019-03-28 17:53:13 +01:00
|
|
|
import SplashScreen from 'component/splash';
|
2017-12-28 00:48:11 +01:00
|
|
|
import * as ACTIONS from 'constants/action_types';
|
2020-07-10 08:26:05 +02:00
|
|
|
import { changeZoomFactor } from 'util/zoomWindow';
|
2019-02-22 06:01:59 +01:00
|
|
|
// @endif
|
2019-07-29 16:34:20 +02:00
|
|
|
import { ipcRenderer, remote, shell } from 'electron';
|
|
|
|
import moment from 'moment';
|
2018-11-28 18:40:52 +01:00
|
|
|
import * as MODALS from 'constants/modal_types';
|
2019-08-27 16:43:42 +02:00
|
|
|
import React, { Fragment, useState, useEffect } from 'react';
|
2017-12-21 18:32:51 +01:00
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import { Provider } from 'react-redux';
|
2020-02-19 07:31:40 +01:00
|
|
|
import { doDaemonReady, doAutoUpdate, doOpenModal, doHideModal, doToggle3PAnalytics } from 'redux/actions/app';
|
2020-07-27 22:04:12 +02:00
|
|
|
import { Lbry, isURIValid, apiCall } from 'lbry-redux';
|
|
|
|
import { setSearchApi } from 'redux/actions/search';
|
2020-05-07 20:44:11 +02:00
|
|
|
import { doSetLanguage, doFetchLanguage, doUpdateIsNightAsync } from 'redux/actions/settings';
|
2020-06-15 22:33:03 +02:00
|
|
|
import { Lbryio, doBlackListedOutpointsSubscribe, doFilteredOutpointsSubscribe } from 'lbryinc';
|
|
|
|
import rewards from 'rewards';
|
2019-07-23 10:05:51 +02:00
|
|
|
import { store, persistor, history } from 'store';
|
2017-12-21 23:09:30 +01:00
|
|
|
import app from './app';
|
2018-05-23 04:37:09 +02:00
|
|
|
import doLogWarningConsoleMessage from './logWarningConsoleMessage';
|
2019-04-18 21:10:46 +02:00
|
|
|
import { ConnectedRouter, push } from 'connected-react-router';
|
2019-12-03 18:55:29 +01:00
|
|
|
import { formatLbryUrlForWeb, formatInAppUrl } from 'util/url';
|
2019-07-23 10:05:51 +02:00
|
|
|
import { PersistGate } from 'redux-persist/integration/react';
|
2019-10-02 20:20:25 +02:00
|
|
|
import analytics from 'analytics';
|
2020-06-12 22:44:25 +02:00
|
|
|
import { doToast } from 'redux/actions/notifications';
|
2020-03-12 15:56:13 +01:00
|
|
|
import {
|
|
|
|
getAuthToken,
|
|
|
|
setAuthToken,
|
|
|
|
doDeprecatedPasswordMigrationMarch2020,
|
|
|
|
doAuthTokenRefresh,
|
|
|
|
} from 'util/saved-passwords';
|
2019-10-24 18:06:38 +02:00
|
|
|
import { X_LBRY_AUTH_TOKEN } from 'constants/token';
|
2020-05-29 21:20:01 +02:00
|
|
|
import { LBRY_WEB_API, DEFAULT_LANGUAGE } from 'config';
|
2019-04-18 21:10:46 +02:00
|
|
|
|
2019-04-18 21:40:53 +02:00
|
|
|
// Import our app styles
|
|
|
|
// If a style is not necessary for the initial page load, it should be removed from `all.scss`
|
|
|
|
// and loaded dynamically in the component that consumes it
|
|
|
|
import 'scss/all.scss';
|
2016-11-22 21:19:08 +01:00
|
|
|
|
2019-09-30 22:11:45 +02:00
|
|
|
// @if TARGET='web'
|
2020-05-07 20:44:11 +02:00
|
|
|
// These overrides can't live in web/ because they need to use the same instance of `Lbry`
|
|
|
|
import apiPublishCallViaWeb from 'web/setup/publish';
|
2019-11-11 18:17:54 +01:00
|
|
|
|
2020-02-05 04:46:00 +01:00
|
|
|
// Sentry error logging setup
|
|
|
|
// Will only work if you have a SENTRY_AUTH_TOKEN env
|
|
|
|
// We still add code in analytics.js to send the error to sentry manually
|
|
|
|
// If it's caught by componentDidCatch in component/errorBoundary, it will not bubble up to this error reporter
|
2020-02-14 19:58:09 +01:00
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
|
|
Sentry.init({
|
|
|
|
dsn: 'https://1f3c88e2e4b341328a638e138a60fb73@sentry.lbry.tech/2',
|
|
|
|
whitelistUrls: [/\/public\/ui.js/],
|
|
|
|
});
|
|
|
|
}
|
2020-02-05 04:46:00 +01:00
|
|
|
|
2020-03-24 19:43:51 +01:00
|
|
|
if (process.env.SDK_API_URL) {
|
2020-06-15 22:33:03 +02:00
|
|
|
console.warn('SDK_API_URL env var is deprecated. Use SDK_API_HOST instead'); // @eslint-disable-line
|
2020-03-24 19:43:51 +01:00
|
|
|
}
|
|
|
|
|
2020-05-21 17:38:28 +02:00
|
|
|
let sdkAPIHost = process.env.SDK_API_HOST || process.env.SDK_API_URL;
|
|
|
|
// @if TARGET='web'
|
2020-05-07 20:44:11 +02:00
|
|
|
sdkAPIHost = LBRY_WEB_API;
|
2020-05-21 17:38:28 +02:00
|
|
|
// @endif
|
|
|
|
|
2020-03-24 19:43:51 +01:00
|
|
|
export const SDK_API_PATH = `${sdkAPIHost}/api/v1`;
|
|
|
|
const proxyURL = `${SDK_API_PATH}/proxy`;
|
2019-11-11 18:17:54 +01:00
|
|
|
|
2020-03-24 19:43:51 +01:00
|
|
|
Lbry.setDaemonConnectionString(proxyURL);
|
2019-11-11 18:17:54 +01:00
|
|
|
|
|
|
|
Lbry.setOverride(
|
|
|
|
'publish',
|
|
|
|
params =>
|
|
|
|
new Promise((resolve, reject) => {
|
|
|
|
apiPublishCallViaWeb(
|
2019-11-15 20:42:31 +01:00
|
|
|
apiCall,
|
2020-03-24 19:43:51 +01:00
|
|
|
proxyURL,
|
2019-11-11 18:17:54 +01:00
|
|
|
Lbry.getApiRequestHeaders() && Object.keys(Lbry.getApiRequestHeaders()).includes(X_LBRY_AUTH_TOKEN)
|
|
|
|
? Lbry.getApiRequestHeaders()[X_LBRY_AUTH_TOKEN]
|
|
|
|
: '',
|
|
|
|
'publish',
|
|
|
|
params,
|
|
|
|
resolve,
|
|
|
|
reject
|
|
|
|
);
|
|
|
|
})
|
|
|
|
);
|
2019-09-30 22:11:45 +02:00
|
|
|
// @endif
|
|
|
|
|
2019-10-22 22:42:13 +02:00
|
|
|
const startTime = Date.now();
|
|
|
|
analytics.startupEvent();
|
|
|
|
|
2019-02-22 06:01:59 +01:00
|
|
|
// @if TARGET='app'
|
|
|
|
const { autoUpdater } = remote.require('electron-updater');
|
2018-02-24 01:24:00 +01:00
|
|
|
autoUpdater.logger = remote.require('electron-log');
|
2019-02-22 06:01:59 +01:00
|
|
|
// @endif
|
2017-12-10 09:06:30 +01:00
|
|
|
|
2019-01-08 03:46:33 +01:00
|
|
|
if (process.env.LBRY_API_URL) {
|
|
|
|
Lbryio.setLocalApi(process.env.LBRY_API_URL);
|
|
|
|
}
|
|
|
|
|
2019-01-29 17:46:56 +01:00
|
|
|
if (process.env.SEARCH_API_URL) {
|
|
|
|
setSearchApi(process.env.SEARCH_API_URL);
|
|
|
|
}
|
|
|
|
|
2020-03-12 03:29:53 +01:00
|
|
|
// Fix to make sure old users' cookies are set to the correct domain
|
|
|
|
// This can be removed after March 11th, 2021
|
|
|
|
// https://github.com/lbryio/lbry-desktop/pull/3830
|
2020-03-12 15:56:13 +01:00
|
|
|
doDeprecatedPasswordMigrationMarch2020();
|
|
|
|
doAuthTokenRefresh();
|
2020-03-12 03:29:53 +01:00
|
|
|
|
2018-09-24 05:44:42 +02:00
|
|
|
// We need to override Lbryio for getting/setting the authToken
|
2019-10-13 19:41:51 +02:00
|
|
|
// We interact with ipcRenderer to get the auth key from a users keyring
|
|
|
|
// We keep a local variable for authToken because `ipcRenderer.send` does not
|
2018-11-30 18:57:12 +01:00
|
|
|
// contain a response, so there is no way to know when it's been set
|
2018-11-30 06:55:45 +01:00
|
|
|
let authToken;
|
2018-11-30 18:57:12 +01:00
|
|
|
Lbryio.setOverride(
|
|
|
|
'setAuthToken',
|
2019-10-22 22:46:50 +02:00
|
|
|
status =>
|
2018-11-30 18:57:12 +01:00
|
|
|
new Promise(resolve => {
|
|
|
|
Lbryio.call(
|
|
|
|
'user',
|
|
|
|
'new',
|
|
|
|
{
|
|
|
|
auth_token: '',
|
2020-05-07 20:44:11 +02:00
|
|
|
language: DEFAULT_LANGUAGE,
|
2019-10-24 17:48:58 +02:00
|
|
|
app_id: status.installation_id,
|
2018-11-30 18:57:12 +01:00
|
|
|
},
|
|
|
|
'post'
|
|
|
|
).then(response => {
|
|
|
|
if (!response.auth_token) {
|
|
|
|
throw new Error(__('auth_token is missing from response'));
|
|
|
|
}
|
2018-09-24 05:44:42 +02:00
|
|
|
|
2019-09-26 18:07:11 +02:00
|
|
|
authToken = response.auth_token;
|
2019-10-17 17:27:41 +02:00
|
|
|
setAuthToken(authToken);
|
2019-09-26 18:07:11 +02:00
|
|
|
resolve(authToken);
|
2018-11-30 18:57:12 +01:00
|
|
|
});
|
|
|
|
})
|
|
|
|
);
|
2018-09-24 05:44:42 +02:00
|
|
|
|
|
|
|
Lbryio.setOverride(
|
|
|
|
'getAuthToken',
|
|
|
|
() =>
|
|
|
|
new Promise(resolve => {
|
2019-10-24 20:07:48 +02:00
|
|
|
const authTokenToReturn = authToken || getAuthToken();
|
|
|
|
resolve(authTokenToReturn);
|
2018-09-24 05:44:42 +02:00
|
|
|
})
|
|
|
|
);
|
|
|
|
|
2018-11-28 18:40:52 +01:00
|
|
|
rewards.setCallback('claimFirstRewardSuccess', () => {
|
|
|
|
app.store.dispatch(doOpenModal(MODALS.FIRST_REWARD));
|
|
|
|
});
|
|
|
|
|
2018-12-13 17:51:37 +01:00
|
|
|
rewards.setCallback('claimRewardSuccess', () => {
|
2019-10-16 07:01:18 +02:00
|
|
|
app.store.dispatch(doHideModal());
|
2018-12-13 17:51:37 +01:00
|
|
|
});
|
|
|
|
|
2019-02-22 06:01:59 +01:00
|
|
|
// @if TARGET='app'
|
2019-12-02 18:30:08 +01:00
|
|
|
ipcRenderer.on('open-uri-requested', (event, url, newSession) => {
|
|
|
|
function handleError() {
|
|
|
|
app.store.dispatch(
|
|
|
|
doToast({
|
|
|
|
message: __('Invalid LBRY URL requested'),
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const path = url.slice('lbry://'.length);
|
|
|
|
if (path.startsWith('?')) {
|
2019-12-03 18:55:29 +01:00
|
|
|
const redirectUrl = formatInAppUrl(path);
|
2019-12-02 18:30:08 +01:00
|
|
|
return app.store.dispatch(push(redirectUrl));
|
2017-06-08 02:56:52 +02:00
|
|
|
}
|
2019-12-02 18:30:08 +01:00
|
|
|
|
|
|
|
if (isURIValid(url)) {
|
|
|
|
const formattedUrl = formatLbryUrlForWeb(url);
|
|
|
|
analytics.openUrlEvent(formattedUrl);
|
|
|
|
return app.store.dispatch(push(formattedUrl));
|
|
|
|
}
|
|
|
|
|
|
|
|
// If nothing redirected before here the url must be messed up
|
|
|
|
handleError();
|
2017-05-09 22:58:48 +02:00
|
|
|
});
|
2017-05-08 11:04:11 +02:00
|
|
|
|
2019-11-05 19:54:58 +01:00
|
|
|
ipcRenderer.on('language-set', (event, language) => {
|
|
|
|
app.store.dispatch(doSetLanguage(language));
|
|
|
|
});
|
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
ipcRenderer.on('open-menu', (event, uri) => {
|
|
|
|
if (uri && uri.startsWith('/help')) {
|
2019-04-18 21:10:46 +02:00
|
|
|
app.store.dispatch(push('/$/help'));
|
2017-06-13 17:02:06 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-07-10 08:26:05 +02:00
|
|
|
ipcRenderer.on('zoom-window', (event, action) => {
|
|
|
|
changeZoomFactor(action);
|
|
|
|
});
|
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
const { dock } = remote.app;
|
2017-09-14 09:36:41 +02:00
|
|
|
|
2017-12-21 18:32:51 +01:00
|
|
|
ipcRenderer.on('window-is-focused', () => {
|
2017-09-14 09:36:41 +02:00
|
|
|
if (!dock) return;
|
2017-12-21 18:32:51 +01:00
|
|
|
app.store.dispatch({ type: ACTIONS.WINDOW_FOCUSED });
|
|
|
|
dock.setBadge('');
|
2017-09-14 09:36:41 +02:00
|
|
|
});
|
|
|
|
|
2018-05-23 04:37:09 +02:00
|
|
|
ipcRenderer.on('devtools-is-opened', () => {
|
2019-03-20 20:09:58 +01:00
|
|
|
doLogWarningConsoleMessage();
|
2018-05-23 04:37:09 +02:00
|
|
|
});
|
2019-05-26 08:18:47 +02:00
|
|
|
|
|
|
|
// Force exit mode for html5 fullscreen api
|
|
|
|
// See: https://github.com/electron/electron/issues/18188
|
|
|
|
remote.getCurrentWindow().on('leave-full-screen', event => {
|
|
|
|
document.webkitExitFullscreen();
|
|
|
|
});
|
|
|
|
|
2019-02-22 06:01:59 +01:00
|
|
|
// @endif
|
2018-05-23 04:37:09 +02:00
|
|
|
|
2018-02-28 23:03:36 +01:00
|
|
|
document.addEventListener('dragover', event => {
|
|
|
|
event.preventDefault();
|
2018-03-06 09:36:04 +01:00
|
|
|
});
|
2018-02-28 23:03:36 +01:00
|
|
|
document.addEventListener('drop', event => {
|
|
|
|
event.preventDefault();
|
|
|
|
});
|
2017-12-21 18:32:51 +01:00
|
|
|
document.addEventListener('click', event => {
|
|
|
|
let { target } = event;
|
2018-11-07 23:44:38 +01:00
|
|
|
|
2017-06-08 02:56:52 +02:00
|
|
|
while (target && target !== document) {
|
2017-12-21 18:32:51 +01:00
|
|
|
if (target.matches('a[href^="http"]') || target.matches('a[href^="mailto"]')) {
|
2019-02-22 06:01:59 +01:00
|
|
|
// @if TARGET='app'
|
2017-06-08 02:56:52 +02:00
|
|
|
event.preventDefault();
|
|
|
|
shell.openExternal(target.href);
|
|
|
|
return;
|
2019-02-22 06:01:59 +01:00
|
|
|
// @endif
|
2017-06-08 02:56:52 +02:00
|
|
|
}
|
|
|
|
target = target.parentNode;
|
|
|
|
}
|
2017-05-21 18:15:41 +02:00
|
|
|
});
|
|
|
|
|
2019-07-23 10:05:51 +02:00
|
|
|
function AppWrapper() {
|
2019-11-18 19:30:15 +01:00
|
|
|
// Splash screen and sdk setup not needed on web
|
2020-05-29 21:20:01 +02:00
|
|
|
const [readyToLaunch, setReadyToLaunch] = useState(IS_WEB);
|
2019-11-18 19:30:15 +01:00
|
|
|
const [persistDone, setPersistDone] = useState(false);
|
2018-10-14 19:47:18 +02:00
|
|
|
|
2019-07-23 10:05:51 +02:00
|
|
|
useEffect(() => {
|
2019-07-29 16:34:20 +02:00
|
|
|
// @if TARGET='app'
|
2019-07-23 10:05:51 +02:00
|
|
|
moment.locale(remote.app.getLocale());
|
2018-03-20 02:09:36 +01:00
|
|
|
|
2019-07-23 10:05:51 +02:00
|
|
|
autoUpdater.on('error', error => {
|
|
|
|
console.error(error.message); // eslint-disable-line no-console
|
2018-03-15 01:22:54 +01:00
|
|
|
});
|
2018-04-24 20:17:11 +02:00
|
|
|
|
2020-01-15 05:34:28 +01:00
|
|
|
if (['win32', 'darwin'].includes(process.platform) || !!process.env.APPIMAGE) {
|
2019-07-23 10:05:51 +02:00
|
|
|
autoUpdater.on('update-available', () => {
|
|
|
|
console.log('Update available'); // eslint-disable-line no-console
|
|
|
|
});
|
|
|
|
autoUpdater.on('update-not-available', () => {
|
|
|
|
console.log('Update not available'); // eslint-disable-line no-console
|
|
|
|
});
|
|
|
|
autoUpdater.on('update-downloaded', () => {
|
|
|
|
console.log('Update downloaded'); // eslint-disable-line no-console
|
|
|
|
app.store.dispatch(doAutoUpdate());
|
|
|
|
});
|
|
|
|
}
|
2019-07-29 16:34:20 +02:00
|
|
|
// @endif
|
2019-07-23 10:05:51 +02:00
|
|
|
}, []);
|
2019-02-28 00:50:00 +01:00
|
|
|
|
2020-02-19 07:31:40 +01:00
|
|
|
useEffect(() => {
|
|
|
|
if (persistDone) {
|
2020-02-24 20:55:34 +01:00
|
|
|
app.store.dispatch(doToggle3PAnalytics(null, true));
|
2020-02-19 07:31:40 +01:00
|
|
|
}
|
|
|
|
}, [persistDone]);
|
|
|
|
|
2019-07-23 10:05:51 +02:00
|
|
|
useEffect(() => {
|
2019-11-18 19:30:15 +01:00
|
|
|
if (readyToLaunch && persistDone) {
|
2020-05-29 21:20:01 +02:00
|
|
|
if (DEFAULT_LANGUAGE) {
|
|
|
|
app.store.dispatch(doFetchLanguage(DEFAULT_LANGUAGE));
|
2020-05-07 20:44:11 +02:00
|
|
|
}
|
2019-07-23 10:05:51 +02:00
|
|
|
app.store.dispatch(doUpdateIsNightAsync());
|
|
|
|
app.store.dispatch(doDaemonReady());
|
|
|
|
app.store.dispatch(doBlackListedOutpointsSubscribe());
|
|
|
|
app.store.dispatch(doFilteredOutpointsSubscribe());
|
2019-10-02 20:20:25 +02:00
|
|
|
|
|
|
|
const appReadyTime = Date.now();
|
|
|
|
const timeToStart = appReadyTime - startTime;
|
|
|
|
analytics.readyEvent(timeToStart);
|
2019-07-23 10:05:51 +02:00
|
|
|
}
|
2019-11-18 19:30:15 +01:00
|
|
|
}, [readyToLaunch, persistDone]);
|
2017-06-06 06:21:55 +02:00
|
|
|
|
2019-07-23 10:05:51 +02:00
|
|
|
return (
|
|
|
|
<Provider store={store}>
|
2019-11-18 19:30:15 +01:00
|
|
|
<PersistGate
|
|
|
|
persistor={persistor}
|
|
|
|
onBeforeLift={() => setPersistDone(true)}
|
|
|
|
loading={<div className="main--launching" />}
|
|
|
|
>
|
2019-08-27 16:43:42 +02:00
|
|
|
<Fragment>
|
2019-07-23 10:05:51 +02:00
|
|
|
{readyToLaunch ? (
|
|
|
|
<ConnectedRouter history={history}>
|
|
|
|
<ErrorBoundary>
|
|
|
|
<App />
|
|
|
|
<SnackBar />
|
|
|
|
</ErrorBoundary>
|
|
|
|
</ConnectedRouter>
|
|
|
|
) : (
|
2019-12-11 21:27:03 +01:00
|
|
|
<Fragment>
|
2020-02-24 18:07:49 +01:00
|
|
|
<SplashScreen onReadyToLaunch={() => setReadyToLaunch(true)} />
|
2019-12-12 21:18:13 +01:00
|
|
|
<SnackBar />
|
2019-12-11 21:27:03 +01:00
|
|
|
</Fragment>
|
2019-07-23 10:05:51 +02:00
|
|
|
)}
|
2019-08-27 16:43:42 +02:00
|
|
|
</Fragment>
|
2019-07-23 10:05:51 +02:00
|
|
|
</PersistGate>
|
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
}
|
2017-07-02 21:13:37 +02:00
|
|
|
|
2019-07-23 10:05:51 +02:00
|
|
|
ReactDOM.render(<AppWrapper />, document.getElementById('app'));
|