File size: 13,189 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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
import config from '@automattic/calypso-config';
import { isJetpackPlanSlug, isJetpackProductSlug } from '@automattic/calypso-products';
import page from '@automattic/calypso-router';
import {
getLanguage,
getLanguageSlugs,
removeLocaleFromPathLocaleInFront,
} from '@automattic/i18n-utils';
import { QueryClientProvider } from '@tanstack/react-query';
import { removeQueryArgs } from '@wordpress/url';
import { translate, fixMe } from 'i18n-calypso';
import { Provider as ReduxProvider } from 'react-redux';
import CalypsoI18nProvider from 'calypso/components/calypso-i18n-provider';
import EmptyContent from 'calypso/components/empty-content';
import MomentProvider from 'calypso/components/localized-moment/provider';
import { RouteProvider } from 'calypso/components/route';
import Layout from 'calypso/layout';
import LayoutLoggedOut from 'calypso/layout/logged-out';
import { navigate } from 'calypso/lib/navigate';
import { createAccountUrl, login } from 'calypso/lib/paths';
import { CalypsoReactQueryDevtools } from 'calypso/lib/react-query-devtools-helper';
import { addQueryArgs, getSiteFragment } from 'calypso/lib/route';
import {
getProductSlugFromContext,
isContextSourceMyJetpack,
} from 'calypso/my-sites/checkout/utils';
import { isUserLoggedIn } from 'calypso/state/current-user/selectors';
import {
getImmediateLoginEmail,
getImmediateLoginLocale,
} from 'calypso/state/immediate-login/selectors';
import { canCurrentUser } from 'calypso/state/selectors/can-current-user';
import { getSiteAdminUrl, getSiteHomeUrl, getSiteOption } from 'calypso/state/sites/selectors';
import { setSelectedSiteId } from 'calypso/state/ui/actions/set-sites.js';
import { getSelectedSite, getSelectedSiteId } from 'calypso/state/ui/selectors';
import { makeLayoutMiddleware } from './shared.js';
import { hydrate, render } from './web-util.js';
/**
* Re-export
*/
export { setLocaleMiddleware, setSectionMiddleware } from './shared.js';
export { hydrate, render } from './web-util.js';
export const ProviderWrappedLayout = ( {
store,
queryClient,
currentSection,
currentRoute,
currentQuery,
primary,
secondary,
renderHeaderSection,
redirectUri,
} ) => {
const state = store.getState();
const userLoggedIn = isUserLoggedIn( state );
const layout = userLoggedIn ? (
<Layout primary={ primary } secondary={ secondary } />
) : (
<LayoutLoggedOut
primary={ primary }
secondary={ secondary }
redirectUri={ redirectUri }
renderHeaderSection={ renderHeaderSection }
/>
);
return (
<CalypsoI18nProvider>
<RouteProvider
currentSection={ currentSection }
currentRoute={ currentRoute }
currentQuery={ currentQuery }
>
<QueryClientProvider client={ queryClient }>
<ReduxProvider store={ store }>
<MomentProvider>{ layout }</MomentProvider>
</ReduxProvider>
<CalypsoReactQueryDevtools />
</QueryClientProvider>
</RouteProvider>
</CalypsoI18nProvider>
);
};
export const makeLayout = makeLayoutMiddleware( ProviderWrappedLayout );
/**
* For logged in users with bootstrap (production), ReactDOM.hydrate().
* Otherwise (development), ReactDOM.render().
* See: https://wp.me/pd2qbF-P#comment-20
* @param context - Middleware context
*/
function smartHydrate( context ) {
const doHydrate =
! config.isEnabled( 'wpcom-user-bootstrap' ) && isUserLoggedIn( context.store.getState() )
? render
: hydrate;
doHydrate( context );
}
/**
* Isomorphic routing helper, client side
* @param { string } route - A route path
* @param {...Function} middlewares - Middleware to be invoked for route
*
* This function is passed to individual sections' controllers via
* `server/bundler/loader`. Sections are free to either ignore it, or use it
* instead of directly calling `page` for linking routes and middlewares in
* order to be also usable for server-side rendering (and isomorphic routing).
* `clientRouter` then also renders the element tree contained in `context.layout`
* (or, if that is empty, in `context.primary`) to the respectively corresponding
* divs.
*/
export function clientRouter( route, ...middlewares ) {
page( route, ...middlewares, smartHydrate );
}
export const redirectInvalidLanguage = ( context, next ) => {
const langParam = context.params.lang;
const language = getLanguage( langParam );
if ( langParam && ! language ) {
// redirect unsupported language to the default language
return page.redirect( context.path.replace( `/${ langParam }`, '' ) );
} else if ( langParam && language.langSlug !== langParam ) {
// redirect unsupported child language to the parent language
return page.redirect( context.path.replace( `/${ langParam }`, `/${ language.langSlug }` ) );
}
next();
};
export function redirectLoggedOut( context, next ) {
const state = context.store.getState();
// Allow logged-out users to access account deleted page for self-restore.
// This is an exception because /me should not allow enableLoggedOut.
if ( context.pathname === '/me/account/closed' ) {
return next();
}
if ( isUserLoggedIn( state ) ) {
next();
return;
}
const { site, blog, blog_id } = context.params;
const siteFragment = site || blog || blog_id || getSiteFragment( context.path );
const loginParameters = {
redirectTo: context.path,
site: siteFragment,
};
// Pass along "login_email" and "login_locale" parameters from the
// original URL, to ensure the login form is pre-filled with the
// correct email address and built with the correct language (when
// either of those are requested).
const login_email = getImmediateLoginEmail( state );
if ( login_email ) {
loginParameters.emailAddress = login_email;
}
const login_locale = getImmediateLoginLocale( state );
if ( login_locale ) {
loginParameters.locale = login_locale;
}
if (
'1' === context.query?.unlinked &&
loginParameters.redirectTo &&
loginParameters.redirectTo.startsWith( '/checkout/' )
) {
loginParameters.isJetpack = true;
loginParameters.redirectTo = 'https://wordpress.com' + loginParameters.redirectTo;
}
// force full page reload to avoid SSR hydration issues.
window.location = login( loginParameters );
return;
}
/**
* Middleware to redirect logged out users to create an account.
* Designed for use in situations where no site is selected, such as the reader.
* @param {Object} context Context object
* @param {Function} next Calls next middleware
* @returns {void}
*/
export function redirectLoggedOutToSignup( context, next ) {
const state = context.store.getState();
if ( isUserLoggedIn( state ) ) {
next();
return;
}
return page.redirect( createAccountUrl( { redirectTo: context.path, ref: 'reader-lp' } ) );
}
/**
* Middleware to redirect users coming from My Jetpack when necessary
* @see pbNhbs-ag3-p2
* @param {Object} context Context object
* @param {Function} next Calls next middleware
* @returns {void}
*/
export function redirectMyJetpack( context, next ) {
const state = context.store.getState();
const productSlug = getProductSlugFromContext( context );
// Strip the slug's quantity suffix, for upgradable quantity based products.
const product = productSlug.replace( /:-q-\d+/, '' );
const isJetpackProduct = isJetpackPlanSlug( product ) || isJetpackProductSlug( product );
if ( isJetpackProduct && ! isUserLoggedIn( state ) && isContextSourceMyJetpack( context ) ) {
// Redirect to the siteless checkout page
const redirectUrl = addQueryArgs(
{
connect_after_checkout: true,
from_site_slug: context.query.site,
admin_url: context.query.redirect_to.split( '?' )[ 0 ],
},
context.path.replace( /checkout\/[^?/]+\//, 'checkout/jetpack/' )
);
page( redirectUrl );
return;
}
next();
}
/**
* Middleware to redirect a user to the Dashboard.
* @param {Object} context Context object
* @returns {void}
*/
export function redirectToDashboard( context ) {
const state = context.store.getState();
const site = getSelectedSite( state );
const adminInterface = getSiteOption( state, site?.ID, 'wpcom_admin_interface' );
const redirectUrl =
adminInterface === 'wp-admin'
? getSiteAdminUrl( state, site?.ID )
: getSiteHomeUrl( state, site?.ID );
return navigate( redirectUrl );
}
/**
* Middleware to redirect a user if they don't have the appropriate capability.
* @param {string} capability Capability to check
* @returns {Function} Middleware function
*/
export function redirectIfCurrentUserCannot( capability ) {
return ( context, next ) => {
const state = context.store.getState();
const site = getSelectedSite( state );
const currentUserCan = canCurrentUser( state, site?.ID, capability );
if ( site && ! currentUserCan ) {
return redirectToDashboard( context );
}
next();
};
}
/**
* Middleware to redirect a user if the site is a P2.
* @param {Object} context Context object
* @param {Function} next Calls next middleware
* @returns {void}
*/
export function redirectIfP2( context, next ) {
const state = context.store.getState();
const site = getSelectedSite( state );
const isP2 = site?.options?.is_wpforteams_site;
if ( isP2 ) {
return redirectToDashboard( context );
}
next();
}
/**
* Middleware to redirect a user if the site is a pure Jetpack site.
* @param {Object} context Context object
* @param {Function} next Calls next middleware
* @returns {void}
*/
export function redirectIfJetpackNonAtomic( context, next ) {
const state = context.store.getState();
const site = getSelectedSite( state );
const isAtomicSite = !! site?.is_wpcom_atomic || !! site?.is_wpcom_staging_site;
const isJetpackNonAtomic = ! isAtomicSite && !! site?.jetpack;
const isDisconnectedJetpackAndNotAtomic =
! site?.is_wpcom_atomic && site?.jetpack_connection && ! site?.jetpack;
if ( isJetpackNonAtomic || isDisconnectedJetpackAndNotAtomic ) {
return redirectToDashboard( context );
}
next();
}
/**
* Middleware to redirect a user to /hosting-features if the site is not Atomic.
* @param {Object} context Context object
* @param {Function} next Calls next middleware
* @returns {void}
*/
export async function redirectToHostingPromoIfNotAtomic( context, next ) {
const { getState } = context.store;
const state = getState();
const site = getSelectedSite( state );
const isAtomicSite = !! site?.is_wpcom_atomic || !! site?.is_wpcom_staging_site;
if ( ! isAtomicSite || site.plan?.expired ) {
return page.redirect( '/sites/settings/site/' + context.params.site_id );
}
next();
}
/**
* Removes the locale parameter from the path, and redirects logged-in users to it.
* @param {Object} context Context object
* @param {Function} next Calls next middleware
* @returns {void}
*/
export function redirectWithoutLocaleParamIfLoggedIn( context, next ) {
if ( isUserLoggedIn( context.store.getState() ) && context.params.lang ) {
const langSlugs = getLanguageSlugs();
const langSlugPathSegmentMatcher = new RegExp( `\\/(${ langSlugs.join( '|' ) })(\\/|\\?|$)` );
const pathWithoutLocale = context.path.replace( langSlugPathSegmentMatcher, '$2' );
return page.redirect( pathWithoutLocale );
}
next();
}
/**
* Removes the locale parameter from the beginning of the path, and redirects logged-in users to it.
* @param {Object} context Context object
* @param {Function} next Calls next middleware
* @returns {void}
*/
export const redirectWithoutLocaleParamInFrontIfLoggedIn = ( context, next ) => {
if ( isUserLoggedIn( context.store.getState() ) ) {
const pathWithoutLocale = removeLocaleFromPathLocaleInFront( context.path );
if ( pathWithoutLocale !== context.path ) {
return page.redirect( pathWithoutLocale );
}
}
next();
};
export const notFound = ( context, next ) => {
/* eslint-disable wpcalypso/jsx-classname-namespace */
context.primary = (
<EmptyContent
className="content-404"
title={ fixMe( {
text: 'Page not found.',
newCopy: translate( 'Page not found.' ),
oldCopy: translate( 'Uh oh. Page not found.' ),
} ) }
line={ translate( "Sorry, the page you were looking for doesn't exist or has been moved." ) }
/>
);
/* eslint-enable wpcalypso/jsx-classname-namespace */
next();
};
/**
* Middleware to set the selected site ID based on the `origin_site_id` query parameter.
*/
export const setSelectedSiteIdByOrigin = ( context, next ) => {
const originSiteId = ( context.query.origin_site_id ?? '' ).trim();
if ( originSiteId ) {
context.store.dispatch( setSelectedSiteId( originSiteId ) );
context.page.replace( removeQueryArgs( context.canonicalPath, 'origin_site_id' ) );
}
next();
};
/**
* This function is only used to provide API compatibility for the sections that use shared controllers.
*/
export const ssrSetupLocale = ( _context, next ) => {
next();
};
export const redirectIfDuplicatedView = ( wpAdminPath ) => async ( context, next ) => {
const { getState } = context.store;
const state = getState();
const siteId = getSelectedSiteId( state );
const wpAdminUrl = getSiteAdminUrl( state, siteId, wpAdminPath );
if ( wpAdminUrl ) {
window.location = wpAdminUrl;
return;
}
next();
};
|