import { isEnabled } from '@automattic/calypso-config'; import { PLAN_100_YEARS, isValidFeatureKey } from '@automattic/calypso-products'; import page from '@automattic/calypso-router'; import { isPlansPageUntangled } from 'calypso/lib/plans/untangling-plans-experiment'; import { productSelect } from 'calypso/my-sites/plans/jetpack-plans/controller'; import setJetpackPlansHeader from 'calypso/my-sites/plans/jetpack-plans/plans-header'; import { PLAN } from 'calypso/sites/components/site-preview-pane/constants'; import { siteDashboard } from 'calypso/sites/controller'; import isSiteWpcom from 'calypso/state/selectors/is-site-wpcom'; import { getSelectedSite, getSelectedSiteId } from 'calypso/state/ui/selectors'; import Plans from './main'; function showJetpackPlans( context ) { const state = context.store.getState(); const siteId = getSelectedSiteId( state ); const isWpcom = isSiteWpcom( state, siteId ); return ! isWpcom; } function is100YearPlanUser( context ) { const state = context.store.getState(); const selectedSite = getSelectedSite( state ); return selectedSite?.plan?.product_slug === PLAN_100_YEARS; } export function plans( context, next ) { // Redirecting users for the 100-Year plan to the my-plan page. if ( is100YearPlanUser( context ) && ! isEnabled( 'untangling/plans' ) ) { return page.redirect( `/plans/my-plan/${ context.params.site }` ); } if ( showJetpackPlans( context ) ) { if ( context.params.intervalType ) { return page.redirect( `/plans/${ context.params.site }` ); } setJetpackPlansHeader( context ); return productSelect( '/plans' )( context, next ); } // Emails rely on the `discount` query param to auto-apply coupons // from the Calypso admin plans page. The `/start` onboarding flow // plans page, however, relies on the `coupon` query param for the // same purpose. We handle both coupon and discount here for the time // being to avoid confusion and to continue support for legacy // coupons. We'll consolidate to just `coupon` in the future. const coupon = context.query.coupon || context.query.discount; context.primary = ( ); if ( isPlansPageUntangled( context.store.getState() ) ) { siteDashboard( PLAN )( context, next ); } else { next(); } } export function features( context ) { const { feature, domain } = context.params; let comparePath = domain ? `/plans/${ domain }` : '/plans/'; if ( isValidFeatureKey( feature ) ) { comparePath += '?feature=' + feature; } // otherwise redirect to the compare page if not found page.redirect( comparePath ); } export function redirectToCheckout( context ) { // this route is deprecated, use `/checkout/:site/:plan` to link to plan checkout page.redirect( `/checkout/${ context.params.domain }/${ context.params.plan }` ); } export function redirectToPlans( context ) { const siteDomain = context.params.domain; if ( siteDomain ) { return page.redirect( `/plans/${ siteDomain }` ); } return page.redirect( '/plans' ); } export function redirectToPlansIfNotJetpack( context, next ) { if ( ! showJetpackPlans( context ) ) { page.redirect( `/plans/${ context.params.site }` ); } next(); } export const redirectIfInvalidInterval = ( context, next ) => { const { intervalType } = context.params; const state = context.store.getState(); const selectedSite = getSelectedSite( state ); // Passlist the intervals here to avoid "foo" values passing through if ( intervalType && ! [ 'monthly', 'yearly', '2yearly', '3yearly' ].includes( intervalType ) ) { page.redirect( selectedSite ? `/plans/yearly/${ selectedSite.slug }` : '/plans' ); return null; } next(); };