| | 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 ) ) || ''; |
| | |
| | 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; |
| |
|
| | |
| | context.redirect = ( httpCode, newUrl = null ) => { |
| | if ( isNaN( httpCode ) && ! newUrl ) { |
| | newUrl = httpCode; |
| | } |
| |
|
| | return page.replace( newUrl, context.state, false, false ); |
| | }; |
| |
|
| | |
| | if ( context.pathname === '/wp-login.php' ) { |
| | window.location.href = context.path; |
| | return; |
| | } |
| |
|
| | |
| | |
| | if ( isOutsideCalypso( context.pathname ) ) { |
| | window.location.href = context.path; |
| | return; |
| | } |
| |
|
| | next(); |
| | } ); |
| |
|
| | page.exit( '*', ( context, next ) => { |
| | context.store = reduxStore; |
| | context.queryClient = reactQueryClient; |
| |
|
| | next(); |
| | } ); |
| | }; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | 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 ); |
| | } |
| |
|
| | |
| | page( '*', function ( context, next ) { |
| | const isValidSection = loggedOutRoutes.some( ( route ) => context.path.startsWith( route ) ); |
| |
|
| | |
| | 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 = () => { |
| | |
| | page.exit( '*', checkFormHandler ); |
| | }; |
| |
|
| | const utils = () => { |
| | debug( 'Executing Calypso utils.' ); |
| |
|
| | |
| | |
| | if ( hasTouch() ) { |
| | document.documentElement.classList.add( 'touch' ); |
| | } else { |
| | document.documentElement.classList.add( 'notouch' ); |
| | } |
| |
|
| | |
| | accessibleFocus(); |
| |
|
| | |
| | Modal.setAppElement( document.getElementById( 'wpcom' ) ); |
| | }; |
| |
|
| | const configureReduxStore = ( currentUser, reduxStore ) => { |
| | debug( 'Executing Calypso configure Redux store.' ); |
| |
|
| | if ( currentUser && currentUser.ID ) { |
| | |
| | reduxStore.dispatch( setCurrentUser( currentUser ) ); |
| | } |
| |
|
| | setSupportSessionReduxStore( reduxStore ); |
| | setReduxBridgeReduxStore( reduxStore ); |
| |
|
| | if ( currentUser ) { |
| | if ( config.isEnabled( 'push-notifications' ) ) { |
| | |
| | reduxStore.dispatch( pushNotificationsInit() ); |
| | } |
| | } |
| | }; |
| |
|
| | const setupMiddlewares = ( currentUser, reduxStore, reactQueryClient ) => { |
| | debug( 'Executing Calypso setup middlewares.' ); |
| |
|
| | setupContextMiddleware( reduxStore, reactQueryClient ); |
| | oauthTokenMiddleware(); |
| | setupRoutes(); |
| | setRouteMiddleware(); |
| | unsavedFormsMiddleware(); |
| |
|
| | |
| | initializeAnalytics( currentUser ? currentUser : undefined, getSuperProps( reduxStore ) ); |
| |
|
| | setupErrorLogger( reduxStore ); |
| |
|
| | page( '*', function ( context, next ) { |
| | |
| | |
| | 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 ); |
| |
|
| | |
| | if ( ! window.location.pathname.startsWith( '/start' ) ) { |
| | [ 'signupProgress', 'signupDependencies' ].forEach( ( item ) => store.remove( item ) ); |
| | } |
| |
|
| | if ( ! currentUser ) { |
| | |
| | page( '*', function ( context, next ) { |
| | |
| | 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 { |
| | |
| | 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() ) ) { |
| | |
| | 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 ); |
| | }; |
| |
|