File size: 10,989 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 |
import accessibleFocus from '@automattic/accessible-focus';
import config from '@automattic/calypso-config';
import page from '@automattic/calypso-router';
import { getUrlParts } from '@automattic/calypso-url';
import { getLanguageSlugs } from '@automattic/i18n-utils';
import { getToken } from '@automattic/oauth-token';
import { JETPACK_PRICING_PAGE } from '@automattic/urls';
import debugFactory from 'debug';
import Modal from 'react-modal';
import store from 'store';
import emailVerification from 'calypso/components/email-verification';
import isA8CForAgencies from 'calypso/lib/a8c-for-agencies/is-a8c-for-agencies';
import { initializeAnalytics } from 'calypso/lib/analytics/init';
import getSuperProps from 'calypso/lib/analytics/super-props';
import DesktopListeners from 'calypso/lib/desktop-listeners';
import detectHistoryNavigation from 'calypso/lib/detect-history-navigation';
import isJetpackCloud from 'calypso/lib/jetpack/is-jetpack-cloud';
import loadDevHelpers from 'calypso/lib/load-dev-helpers';
import { attachLogmein } from 'calypso/lib/logmein';
import { checkFormHandler } from 'calypso/lib/protect-form';
import { setReduxStore as setReduxBridgeReduxStore } from 'calypso/lib/redux-bridge';
import { normalize } from 'calypso/lib/route';
import { isLegacyRoute } from 'calypso/lib/route/legacy-routes';
import { hasTouch } from 'calypso/lib/touch-detect';
import { isOutsideCalypso } from 'calypso/lib/url';
import { initializeCurrentUser } from 'calypso/lib/user/shared-utils';
import { onDisablePersistence } from 'calypso/lib/user/store';
import { setSupportSessionReduxStore } from 'calypso/lib/user/support-user-interop';
import { setupRoutes } from 'calypso/sections-middleware';
import { createReduxStore } from 'calypso/state';
import { setCurrentUser } from 'calypso/state/current-user/actions';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import { getInitialState, getStateFromCache, persistOnChange } from 'calypso/state/initial-state';
import { init as pushNotificationsInit } from 'calypso/state/push-notifications/actions';
import {
createQueryClient,
getInitialQueryState,
hydrateServerState,
} from 'calypso/state/query-client';
import initialReducer from 'calypso/state/reducer';
import { setStore } from 'calypso/state/redux-store';
import { setRoute } from 'calypso/state/route/actions';
import { setupErrorLogger } from '../lib/error-logger/setup-error-logger';
import { setupCountryCode } from './geolocation';
import { setupLocale } from './locale';
const debug = debugFactory( 'calypso' );
const setupContextMiddleware = ( reduxStore, reactQueryClient ) => {
let previousPath = null;
page( '*', ( context, next ) => {
const parsed = getUrlParts( context.canonicalPath );
context.previousPath = previousPath;
previousPath = context.path;
context.query = Object.fromEntries( parsed.searchParams.entries() );
context.hashstring = ( parsed.hash && parsed.hash.substring( 1 ) ) || '';
// set `context.hash` (we have to parse manually)
if ( context.hashstring ) {
try {
context.hash = Object.fromEntries(
new globalThis.URLSearchParams( context.hashstring ).entries()
);
} catch ( e ) {
debug( 'failed to query-string parse `location.hash`', e );
context.hash = {};
}
} else {
context.hash = {};
}
context.store = reduxStore;
context.queryClient = reactQueryClient;
// client version of the isomorphic method for redirecting to another page
context.redirect = ( httpCode, newUrl = null ) => {
if ( isNaN( httpCode ) && ! newUrl ) {
newUrl = httpCode;
}
return page.replace( newUrl, context.state, false, false );
};
// Break routing and do full load for logout link in /me
if ( context.pathname === '/wp-login.php' ) {
window.location.href = context.path;
return;
}
// Some paths live outside of Calypso and should be opened separately
// Examples: /support, /forums
if ( isOutsideCalypso( context.pathname ) ) {
window.location.href = context.path;
return;
}
next();
} );
page.exit( '*', ( context, next ) => {
context.store = reduxStore;
context.queryClient = reactQueryClient;
next();
} );
};
/**
* If the URL sets `flags=oauth` explicitly, persist that setting to session storage so
* that it persists across redirects and reloads. The `calypso-config` module will pick
* them up automatically on init.
*/
function saveOauthFlags() {
if ( ! window.location.search ) {
return;
}
const flags = new URLSearchParams( window.location.search ).get( 'flags' );
if ( ! flags ) {
return;
}
const oauthFlag = flags.split( ',' ).find( ( flag ) => /^[+-]?oauth$/.test( flag ) );
if ( ! oauthFlag ) {
return;
}
window.sessionStorage.setItem( 'flags', oauthFlag );
}
function authorizePath() {
const redirectUri = new URL(
isJetpackCloud() || isA8CForAgencies() ? '/connect/oauth/token' : '/api/oauth/token',
window.location
);
redirectUri.search = new URLSearchParams( {
next: window.location.pathname + window.location.search,
} ).toString();
const authUri = new URL( 'https://public-api.wordpress.com/oauth2/authorize' );
authUri.search = new URLSearchParams( {
response_type: 'token',
client_id: config( 'oauth_client_id' ),
redirect_uri: redirectUri.toString(),
scope: 'global',
blog_id: 0,
} ).toString();
return authUri.toString();
}
const JP_CLOUD_PUBLIC_ROUTES = [ '/pricing', '/plans', '/features/comparison', '/manage/pricing' ];
const A4A_PUBLIC_ROUTES = [ '/signup' ];
const oauthTokenMiddleware = () => {
if ( config.isEnabled( 'oauth' ) ) {
const loggedOutRoutes = [ '/start', '/api/oauth/token', '/connect' ];
if ( isJetpackCloud() ) {
loggedOutRoutes.push( ...JP_CLOUD_PUBLIC_ROUTES );
getLanguageSlugs().forEach( ( slug ) => {
loggedOutRoutes.push(
...JP_CLOUD_PUBLIC_ROUTES.map( ( route ) => `/${ slug }${ route }` )
);
} );
}
if ( isA8CForAgencies() ) {
loggedOutRoutes.push( ...A4A_PUBLIC_ROUTES );
}
// Forces OAuth users to the /login page if no token is present
page( '*', function ( context, next ) {
const isValidSection = loggedOutRoutes.some( ( route ) => context.path.startsWith( route ) );
// Check we have an OAuth token, otherwise redirect to auth/login page
if ( getToken() === false && ! isValidSection ) {
window.location = authorizePath();
return;
}
next();
} );
}
};
const setRouteMiddleware = () => {
page( '*', ( context, next ) => {
context.store.dispatch( setRoute( context.pathname, context.query ) );
next();
} );
};
const unsavedFormsMiddleware = () => {
// warn against navigating from changed, unsaved forms
page.exit( '*', checkFormHandler );
};
const utils = () => {
debug( 'Executing Calypso utils.' );
// Infer touch screen by checking if device supports touch events
// See touch-detect/README.md
if ( hasTouch() ) {
document.documentElement.classList.add( 'touch' );
} else {
document.documentElement.classList.add( 'notouch' );
}
// Add accessible-focus listener
accessibleFocus();
// Configure app element that React Modal will aria-hide when modal is open
Modal.setAppElement( document.getElementById( 'wpcom' ) );
};
const configureReduxStore = ( currentUser, reduxStore ) => {
debug( 'Executing Calypso configure Redux store.' );
if ( currentUser && currentUser.ID ) {
// Set current user in Redux store
reduxStore.dispatch( setCurrentUser( currentUser ) );
}
setSupportSessionReduxStore( reduxStore );
setReduxBridgeReduxStore( reduxStore );
if ( currentUser ) {
if ( config.isEnabled( 'push-notifications' ) ) {
// If the browser is capable, registers a service worker & exposes the API
reduxStore.dispatch( pushNotificationsInit() );
}
}
};
const setupMiddlewares = ( currentUser, reduxStore, reactQueryClient ) => {
debug( 'Executing Calypso setup middlewares.' );
setupContextMiddleware( reduxStore, reactQueryClient );
oauthTokenMiddleware();
setupRoutes();
setRouteMiddleware();
unsavedFormsMiddleware();
// The analytics module requires user (when logged in) and superProps objects. Inject these here.
initializeAnalytics( currentUser ? currentUser : undefined, getSuperProps( reduxStore ) );
setupErrorLogger( reduxStore );
page( '*', function ( context, next ) {
// Don't normalize legacy routes - let them fall through and be unhandled
// so that page redirects away from Calypso
if ( isLegacyRoute( context.pathname ) ) {
return next();
}
return normalize( context, next );
} );
page( '*', function ( context, next ) {
if ( '/me/account' !== context.path && currentUser.phone_account ) {
page( '/me/account' );
}
next();
} );
page( '*', emailVerification );
// delete any lingering local storage data from signup
if ( ! window.location.pathname.startsWith( '/start' ) ) {
[ 'signupProgress', 'signupDependencies' ].forEach( ( item ) => store.remove( item ) );
}
if ( ! currentUser ) {
// Dead-end the sections the user can't access when logged out
page( '*', function ( context, next ) {
// see server/pages/index for prod redirect
if ( '/plans' === context.pathname ) {
const queryFor = context.query && context.query.for;
if ( queryFor && 'jetpack' === queryFor ) {
window.location =
'https://wordpress.com/wp-login.php?redirect_to=https%3A%2F%2Fwordpress.com%2Fplans';
} else {
// pricing page is outside of Calypso, needs a full page load
window.location = isJetpackCloud()
? JETPACK_PRICING_PAGE
: 'https://wordpress.com/pricing/';
}
return;
}
next();
} );
}
if ( window.electron ) {
DesktopListeners.init( reduxStore );
}
loadDevHelpers( reduxStore );
if ( config.isEnabled( 'logmein' ) && isUserLoggedIn( reduxStore.getState() ) ) {
// Attach logmein handler if we're currently logged in
attachLogmein( reduxStore );
}
};
const boot = async ( currentUser, registerRoutes ) => {
saveOauthFlags();
utils();
const { queryClient, unsubscribePersister } = await createQueryClient( currentUser?.ID );
const initialQueryState = getInitialQueryState();
hydrateServerState( queryClient, initialQueryState );
const initialState = getInitialState( initialReducer, currentUser?.ID );
const reduxStore = createReduxStore( initialState, initialReducer );
setStore( reduxStore, getStateFromCache( currentUser?.ID ) );
onDisablePersistence( persistOnChange( reduxStore, currentUser?.ID ) );
onDisablePersistence( unsubscribePersister );
setupLocale( currentUser, reduxStore );
setupCountryCode();
configureReduxStore( currentUser, reduxStore );
setupMiddlewares( currentUser, reduxStore, queryClient );
detectHistoryNavigation.start();
if ( registerRoutes ) {
registerRoutes();
}
page.start();
};
export const bootApp = async ( appName, registerRoutes ) => {
const user = await initializeCurrentUser();
debug( `Starting ${ appName }. Let's do this.` );
await boot( user, registerRoutes );
};
|