|
|
import config from '@automattic/calypso-config'; |
|
|
import { |
|
|
PRODUCT_JETPACK_SEARCH, |
|
|
PRODUCT_JETPACK_SEARCH_MONTHLY, |
|
|
PRODUCT_WPCOM_SEARCH, |
|
|
PRODUCT_WPCOM_SEARCH_MONTHLY, |
|
|
} from '@automattic/calypso-products'; |
|
|
import page from '@automattic/calypso-router'; |
|
|
import Debug from 'debug'; |
|
|
import { get, some } from 'lodash'; |
|
|
import { recordPageView } from 'calypso/lib/analytics/page-view'; |
|
|
import { login } from 'calypso/lib/paths'; |
|
|
import { isUserLoggedIn } from 'calypso/state/current-user/selectors'; |
|
|
import { hideMasterbar, showMasterbar } from 'calypso/state/ui/actions'; |
|
|
import { ALLOWED_MOBILE_APP_REDIRECT_URL_LIST } from '../../jetpack-connect/constants'; |
|
|
import { |
|
|
persistMobileRedirect, |
|
|
retrieveMobileRedirect, |
|
|
storePlan, |
|
|
} from '../../jetpack-connect/persistence-utils'; |
|
|
import SearchPurchase from './search'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const debug = new Debug( 'calypso:purchase-product:controller' ); |
|
|
const analyticsPageTitleByType = { |
|
|
jetpack_search: 'Jetpack Search', |
|
|
}; |
|
|
|
|
|
const getPlanSlugFromFlowType = ( type, interval = 'yearly' ) => { |
|
|
const planSlugs = { |
|
|
yearly: { |
|
|
jetpack_search: PRODUCT_JETPACK_SEARCH, |
|
|
wpcom_search: PRODUCT_WPCOM_SEARCH, |
|
|
}, |
|
|
monthly: { |
|
|
jetpack_search: PRODUCT_JETPACK_SEARCH_MONTHLY, |
|
|
wpcom_search: PRODUCT_WPCOM_SEARCH_MONTHLY, |
|
|
}, |
|
|
}; |
|
|
|
|
|
return get( planSlugs, [ interval, type ], '' ); |
|
|
}; |
|
|
|
|
|
export function redirectToLogin( context, next ) { |
|
|
const loggedIn = isUserLoggedIn( context.store.getState() ); |
|
|
|
|
|
if ( ! loggedIn ) { |
|
|
page( login( { isJetpack: true, redirectTo: context.path } ) ); |
|
|
return; |
|
|
} |
|
|
|
|
|
next(); |
|
|
} |
|
|
|
|
|
export function persistMobileAppFlow( context, next ) { |
|
|
const { query } = context; |
|
|
if ( config.isEnabled( 'jetpack/connect/mobile-app-flow' ) ) { |
|
|
if ( |
|
|
some( ALLOWED_MOBILE_APP_REDIRECT_URL_LIST, ( pattern ) => |
|
|
pattern.test( query.mobile_redirect ) |
|
|
) |
|
|
) { |
|
|
debug( `In mobile app flow with redirect url: ${ query.mobile_redirect }` ); |
|
|
persistMobileRedirect( query.mobile_redirect ); |
|
|
} else { |
|
|
persistMobileRedirect( '' ); |
|
|
} |
|
|
} |
|
|
next(); |
|
|
} |
|
|
|
|
|
export function setMasterbar( context, next ) { |
|
|
if ( config.isEnabled( 'jetpack/connect/mobile-app-flow' ) ) { |
|
|
const masterbarToggle = retrieveMobileRedirect() ? hideMasterbar() : showMasterbar(); |
|
|
context.store.dispatch( masterbarToggle ); |
|
|
} |
|
|
next(); |
|
|
} |
|
|
|
|
|
|
|
|
export function purchase( context, next ) { |
|
|
const { path, pathname, params, query } = context; |
|
|
const { type = false, interval } = params; |
|
|
const analyticsPageTitle = get( type, analyticsPageTitleByType, 'Jetpack Connect' ); |
|
|
const planSlug = getPlanSlugFromFlowType( type, interval ); |
|
|
|
|
|
planSlug && storePlan( planSlug ); |
|
|
recordPageView( pathname, analyticsPageTitle ); |
|
|
|
|
|
context.primary = ( |
|
|
<SearchPurchase |
|
|
ctaFrom={ query.cta_from /* origin tracking params */ } |
|
|
ctaId={ query.cta_id /* origin tracking params */ } |
|
|
path={ path } |
|
|
type={ type } |
|
|
url={ query.url } |
|
|
/> |
|
|
); |
|
|
next(); |
|
|
} |
|
|
|