File size: 34,672 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 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 |
import { execSync } from 'child_process';
import crypto from 'crypto';
import fs from 'fs';
import path from 'path';
import { parseTrackingPrefs } from '@automattic/calypso-analytics';
import config from '@automattic/calypso-config';
import {
filterLanguageRevisions,
isTranslatedIncompletely,
isDefaultLocale,
getLanguageSlugs,
localizeUrl,
} from '@automattic/i18n-utils';
import bodyParser from 'body-parser';
import cookieParser from 'cookie-parser';
import debugFactory from 'debug';
import express from 'express';
import { get, includes, snakeCase } from 'lodash';
import { stringify } from 'qs';
// eslint-disable-next-line no-restricted-imports
import superagent from 'superagent'; // Don't have Node.js fetch lib yet.
import {
DASHBOARD_SECTION_DEFINITION,
DASHBOARD_A4A_SECTION_DEFINITION,
} from 'calypso/dashboard/section';
import wooDnaConfig from 'calypso/jetpack-connect/woo-dna-config';
import { STEPPER_SECTION_DEFINITION } from 'calypso/landing/stepper/section';
import { SUBSCRIPTIONS_SECTION_DEFINITION } from 'calypso/landing/subscriptions/section';
import { isInStepContainerV2FlowContext } from 'calypso/layout/utils';
import isA8CForAgencies from 'calypso/lib/a8c-for-agencies/is-a8c-for-agencies';
import { shouldSeeCookieBanner } from 'calypso/lib/analytics/utils';
import isJetpackCloud from 'calypso/lib/jetpack/is-jetpack-cloud';
import { login } from 'calypso/lib/paths';
import loginRouter, { LOGIN_SECTION_DEFINITION } from 'calypso/login';
import sections from 'calypso/sections';
import isSectionEnabled from 'calypso/sections-filter';
import { serverRouter, getCacheKey } from 'calypso/server/isomorphic-routing';
import analytics from 'calypso/server/lib/analytics';
import { isWpMobileApp, isWcMobileApp } from 'calypso/server/lib/is-mobile-app';
import performanceMark from 'calypso/server/lib/performance-mark/index';
import {
serverRender,
renderJsx,
attachBuildTimestamp,
attachHead,
attachI18n,
} from 'calypso/server/render';
import sanitize from 'calypso/server/sanitize';
import stateCache from 'calypso/server/state-cache';
import getBootstrappedUser from 'calypso/server/user-bootstrap';
import { createReduxStore } from 'calypso/state';
import { LOCALE_SET } from 'calypso/state/action-types';
import { setCurrentUser } from 'calypso/state/current-user/actions';
import { setDocumentHeadLink, setDocumentHeadMeta } from 'calypso/state/document-head/actions';
import { getDocumentHeadMeta } from 'calypso/state/document-head/selectors';
import initialReducer from 'calypso/state/reducer';
import { setStore } from 'calypso/state/redux-store';
import { deserialize } from 'calypso/state/utils';
import { pathToRegExp } from 'calypso/utils';
import middlewareAssets from '../middleware/assets.js';
import middlewareCache from '../middleware/cache.js';
import middlewareUnsupportedBrowser from '../middleware/unsupported-browser.js';
import { logSectionResponse } from './analytics';
const debug = debugFactory( 'calypso:pages' );
const calypsoEnv = config( 'env_id' );
let branchName;
function getCurrentBranchName() {
if ( ! branchName ) {
try {
branchName = execSync( 'git rev-parse --abbrev-ref HEAD' ).toString().replace( /\s/gm, '' );
} catch ( err ) {}
}
return branchName;
}
let commitChecksum;
function getCurrentCommitShortChecksum() {
if ( ! commitChecksum ) {
try {
commitChecksum = execSync( 'git rev-parse --short HEAD' ).toString().replace( /\s/gm, '' );
} catch ( err ) {}
}
return commitChecksum;
}
/*
* Look at the request headers and determine if the request is logged in or logged out or if
* it's a support session. Set `req.context.isLoggedIn` and `req.context.isSupportSession` flags
* accordingly. The handler is called very early (immediately after parsing the cookies) and
* all following handlers (including the locale and redirect ones) can rely on the context values.
*/
function setupLoggedInContext( req, res, next ) {
const isSupportSession = !! req.get( 'x-support-session' ) || !! req.cookies.support_session_id;
const isSSP = !! req.cookies.ssp;
const isLoggedIn = !! req.cookies.wordpress_logged_in;
req.context = {
...req.context,
isSupportSession,
isSSP,
isLoggedIn,
};
next();
}
function getDefaultContext( request, response, entrypoint = 'entry-main' ) {
performanceMark( request.context, 'getDefaultContext' );
const geoIPCountryCode = request.headers[ 'x-geoip-country-code' ];
const trackingPrefs = parseTrackingPrefs(
request.cookies.sensitive_pixel_options,
request.cookies.sensitive_pixel_option
);
const countryCodeCookie = request.cookies.country_code;
const validCountryCodeCookie =
countryCodeCookie && countryCodeCookie !== 'unknown' ? countryCodeCookie : undefined;
const showGdprBanner = shouldSeeCookieBanner(
validCountryCodeCookie || geoIPCountryCode,
trackingPrefs
);
if ( ! validCountryCodeCookie && geoIPCountryCode ) {
response.cookie( 'country_code', geoIPCountryCode );
}
const cacheKey = getCacheKey( {
path: request.path,
query: request.query,
context: { showGdprBanner },
} );
/**
* A cache object can be written for an SSR route like /themes when a request
* is logged out. To avoid using that logged-out data for an authenticated
* request, we should not utilize the state cache for logged-in requests.
* Note that in dev mode (when the user is not bootstrapped), all requests
* are considered logged out. This shouldn't cause issues because only one
* user is using the cache in dev mode -- so cross-request pollution won't happen.
*/
performanceMark( request.context, 'get cached redux state', true );
const cachedServerState = request.context.isLoggedIn ? {} : stateCache.get( cacheKey ) || {};
const getCachedState = ( reducer, storageKey ) => {
const storedState = cachedServerState[ storageKey ];
if ( ! storedState ) {
return undefined;
}
return deserialize( reducer, storedState );
};
const reduxStore = createReduxStore( getCachedState( initialReducer, 'root' ) );
setStore( reduxStore, getCachedState );
performanceMark( request.context, 'create basic options', true );
const devEnvironments = [
'development',
'jetpack-cloud-development',
'a8c-for-agencies-development',
];
const isDebug = devEnvironments.includes( calypsoEnv ) || request.query.debug !== undefined;
const reactQueryDevtoolsHelper = config.isEnabled( 'dev/react-query-devtools' );
const authHelper = config.isEnabled( 'dev/auth-helper' );
const accountSettingsHelper = config.isEnabled( 'dev/account-settings-helper' );
const storeSandboxHelper = config.isEnabled( 'dev/store-sandbox-helper' );
// preferences helper requires a Redux store, which doesn't exist in Gutenboarding
const preferencesHelper =
config.isEnabled( 'dev/preferences-helper' ) && entrypoint !== 'entry-gutenboarding';
const featuresHelper = config.isEnabled( 'dev/features-helper' );
const flags = ( request.query.flags || '' ).split( ',' );
performanceMark( request.context, 'getFilesForChunkGroup', true );
const entrypointFiles = request.getFilesForChunkGroup( entrypoint );
performanceMark( request.context, 'getAssets', true );
const manifests = request.getAssets().manifests;
performanceMark( request.context, 'assign context object', true );
const context = Object.assign( {}, request.context, {
commitSha: process.env.hasOwnProperty( 'COMMIT_SHA' ) ? process.env.COMMIT_SHA : '(unknown)',
compileDebug: process.env.NODE_ENV === 'development',
user: false,
env: calypsoEnv,
sanitize: sanitize,
isWooDna: wooDnaConfig( request.query ).isWooDnaFlow(),
badge: false,
lang: config( 'i18n_default_locale_slug' ),
entrypoint: entrypointFiles,
manifests,
reactQueryDevtoolsHelper,
accountSettingsHelper,
authHelper,
preferencesHelper,
storeSandboxHelper,
featuresHelper,
devDocsURL: '/devdocs',
store: reduxStore,
target: 'evergreen',
useTranslationChunks:
config.isEnabled( 'use-translation-chunks' ) ||
flags.includes( 'use-translation-chunks' ) ||
request.query.hasOwnProperty( 'useTranslationChunks' ),
showGdprBanner,
showStepContainerV2Loader: isInStepContainerV2FlowContext( request.path, request.query ),
} );
context.app = {
// use ipv4 address when is ipv4 mapped address
clientIp: request.ip ? request.ip.replace( '::ffff:', '' ) : request.ip,
isWpMobileApp: isWpMobileApp( request.useragent.source ),
isWcMobileApp: isWcMobileApp( request.useragent.source ),
isDebug,
};
performanceMark( request.context, 'setup environments', true );
if ( calypsoEnv === 'wpcalypso' ) {
context.badge = calypsoEnv;
context.devDocs = true;
context.feedbackURL = 'https://github.com/Automattic/wp-calypso/issues/';
// this is for calypso.live, so that branchName can be available while rendering the page
if ( request.query.branch ) {
context.branchName = request.query.branch;
}
}
if ( calypsoEnv === 'horizon' ) {
context.badge = 'feedback';
context.feedbackURL = 'https://horizonfeedback.wordpress.com/';
}
if ( calypsoEnv === 'stage' ) {
context.badge = 'staging';
context.feedbackURL = 'https://github.com/Automattic/wp-calypso/issues/';
}
if ( calypsoEnv === 'development' ) {
context.badge = 'dev';
context.devDocs = true;
context.feedbackURL = 'https://github.com/Automattic/wp-calypso/issues/';
context.branchName = getCurrentBranchName();
context.commitChecksum = getCurrentCommitShortChecksum();
}
if ( calypsoEnv === 'jetpack-cloud-stage' ) {
context.badge = 'jetpack-cloud-staging';
context.feedbackURL = 'https://github.com/Automattic/wp-calypso/issues/';
}
if ( calypsoEnv === 'jetpack-cloud-development' ) {
context.badge = 'jetpack-cloud-dev';
context.feedbackURL = 'https://github.com/Automattic/wp-calypso/issues/';
context.branchName = getCurrentBranchName();
context.commitChecksum = getCurrentCommitShortChecksum();
}
if ( calypsoEnv === 'a8c-for-agencies-stage' ) {
context.badge = 'a8c-for-agencies-staging';
context.feedbackURL = 'https://github.com/Automattic/wp-calypso/issues/';
}
if ( calypsoEnv === 'a8c-for-agencies-development' ) {
context.badge = 'a8c-for-agencies-dev';
context.feedbackURL = 'https://github.com/Automattic/wp-calypso/issues/';
context.branchName = getCurrentBranchName();
context.commitChecksum = getCurrentCommitShortChecksum();
}
return context;
}
const setupDefaultContext = ( entrypoint, sectionName ) => ( req, res, next ) => {
req.context = getDefaultContext( req, res, entrypoint, sectionName );
next();
};
function setUpLocalLanguageRevisions( req ) {
performanceMark( req.context, 'setup_local_lang_revs', true );
const rootPath = path.join( __dirname, '..', '..', '..' );
const langRevisionsPath = path.join( rootPath, 'public', 'languages', 'lang-revisions.json' );
performanceMark( req.context, 'read language file', true );
const langPromise = fs.promises
.readFile( langRevisionsPath, 'utf8' )
.then( ( languageRevisions ) => {
performanceMark( req.context, 'parse_lang_file', true );
req.context.languageRevisions = JSON.parse( languageRevisions );
performanceMark( req.context, 'done_parse_lang_file', true );
return languageRevisions;
} )
.catch( ( error ) => {
performanceMark( req.context, 'err_parse_lang_file', true );
console.error( 'Failed to read the language revision files.', error );
throw error;
} );
return langPromise;
}
function setUpLoggedOutRoute( req, res, next ) {
performanceMark( req.context, 'setup_logged_out_route', true );
res.set( {
'X-Frame-Options': 'SAMEORIGIN',
} );
const setupRequests = [];
if ( req.context.useTranslationChunks ) {
setupRequests.push( setUpLocalLanguageRevisions( req ) );
}
if ( req.cookies?.subkey ) {
req.context.user = {
...( req.context.user ?? {} ),
subscriptionManagementSubkey: req.cookies.subkey,
};
}
Promise.all( setupRequests )
.then( () => {
performanceMark( req.context, 'finish_logged_out_setup', true );
next();
} )
.catch( ( error ) => {
performanceMark( req.context, 'err_logged_out_setup' );
next( error );
} );
}
function setUpLoggedInRoute( req, res, next ) {
performanceMark( req.context, 'setup_logged_in_route' );
let redirectUrl;
let start;
res.set( {
'X-Frame-Options': 'SAMEORIGIN',
} );
const setupRequests = [];
if ( req.context.useTranslationChunks ) {
setupRequests.push( setUpLocalLanguageRevisions( req ) );
} else {
performanceMark( req.context, 'download_lang_revs', true );
const LANG_REVISION_FILE_URL = 'https://widgets.wp.com/languages/calypso/lang-revisions.json';
const langPromise = superagent
.get( LANG_REVISION_FILE_URL )
.then( ( response ) => {
const languageRevisions = filterLanguageRevisions( response.body );
req.context.languageRevisions = languageRevisions;
performanceMark( req.context, 'finish_download_lang_revs', true );
return languageRevisions;
} )
.catch( ( error ) => {
performanceMark( req.context, 'err_download_lang_revs', true );
console.error( 'Failed to fetch the language revision files.', error );
throw error;
} );
setupRequests.push( langPromise );
}
if ( config.isEnabled( 'wpcom-user-bootstrap' ) ) {
performanceMark( req.context, 'user_bootstrap', true );
const protocol = req.get( 'X-Forwarded-Proto' ) === 'https' ? 'https' : 'http';
redirectUrl = login( {
redirectTo: protocol + '://' + config( 'hostname' ) + req.originalUrl,
} );
if ( ! req.context.isLoggedIn ) {
debug( 'User not logged in. Redirecting to %s', redirectUrl );
res.redirect( redirectUrl );
return;
}
start = new Date().getTime();
debug( 'Issuing API call to fetch user object' );
const userPromise = getBootstrappedUser( req )
.then( ( data ) => {
performanceMark( req.context, 'finish_fetch_user_bootstrap', true );
const end = new Date().getTime() - start;
debug( 'Rendering with bootstrapped user object. Fetched in %d ms', end );
req.context.user = data;
// Setting user in the state is safe as long as we don't cache it
req.context.store.dispatch( setCurrentUser( data ) );
if (
data.localeSlug &&
! (
data.use_fallback_for_incomplete_languages &&
isTranslatedIncompletely( data.localeVariant || data.localeSlug )
)
) {
req.context.lang = data.localeSlug;
req.context.store.dispatch( {
type: LOCALE_SET,
localeSlug: data.localeSlug,
localeVariant: data.localeVariant,
} );
}
if ( req.path === '/' && req.query ) {
const searchParam = req.query.s || req.query.q;
if ( searchParam ) {
res.redirect(
'https://wordpress.com/reader/search?q=' + encodeURIComponent( searchParam )
);
return;
}
if ( req.query.newuseremail ) {
debug( 'Detected legacy email verification action. Redirecting...' );
res.redirect( 'https://wordpress.com/verify-email/?' + stringify( req.query ) );
return;
}
if ( req.query.action === 'wpcom-invite-users' ) {
debug( 'Detected legacy invite acceptance action. Redirecting...' );
res.redirect( 'https://wordpress.com/accept-invite/?' + stringify( req.query ) );
return;
}
}
performanceMark( req.context, 'finish_user_bootstrap', true );
} )
.catch( ( error ) => {
if ( error.error === 'authorization_required' ) {
debug( 'User public API authorization required. Redirecting to %s', redirectUrl );
res.clearCookie( 'wordpress_logged_in', {
path: '/',
httpOnly: true,
domain: '.wordpress.com',
} );
res.redirect( redirectUrl );
} else {
performanceMark( req.context, 'err_user_bootstrap', true );
let errorMessage;
if ( error.error ) {
errorMessage = error.error + ' ' + error.message;
} else {
errorMessage = error.message;
}
console.error( 'API Error: ' + errorMessage );
}
throw error;
} );
setupRequests.push( userPromise );
}
Promise.all( setupRequests )
.then( () => {
performanceMark( req.context, 'finish_logged_in_setup' );
next();
} )
.catch( ( error ) => {
performanceMark( req.context, 'err_logged_in_setup' );
next( error );
} );
}
/**
* Sets up a Content Security Policy header
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
* @param {Object} req Express request object
* @param {Object} res Express response object
* @param {Function} next a callback to call when done
*/
function setUpCSP( req, res, next ) {
const originalUrlPathname = req.originalUrl.split( '?' )[ 0 ];
// We only setup CSP for /log-in* for now
if ( ! /^\/log-in/.test( originalUrlPathname ) ) {
next();
return;
}
// This is calculated by taking the contents of the script text from between the tags,
// and calculating SHA256 hash on it, encoded in base64, example:
// `sha256-${ base64( sha256( 'window.AppBoot();' ) ) }` === sha256-3yiQswl88knA3EhjrG5tj5gmV6EUdLYFvn2dygc0xUQ
// you can also just run it in Chrome, chrome will give you the hash of the violating scripts
const inlineScripts = [ 'sha256-ZKTuGaoyrLu2lwYpcyzib+xE4/2mCN8PKv31uXS3Eg4=' ];
req.context.inlineScriptNonce = crypto.randomBytes( 48 ).toString( 'hex' );
const policy = {
'default-src': [ "'self'" ],
'script-src': [
"'self'",
"'report-sample'",
"'unsafe-eval'",
'stats.wp.com',
'https://widgets.wp.com',
'*.wordpress.com',
'https://apis.google.com',
'https://appleid.cdn-apple.com',
`'nonce-${ req.context.inlineScriptNonce }'`,
'www.google-analytics.com',
'use.typekit.net',
...inlineScripts.map( ( hash ) => `'${ hash }'` ),
],
'base-uri': [ "'none'" ],
'style-src': [
"'self'",
'*.wp.com',
'https://fonts.googleapis.com',
'use.typekit.net',
// per https://helpx.adobe.com/ca/fonts/using/content-security-policy.html
"'unsafe-inline'",
],
'form-action': [ "'self'" ],
'object-src': [ "'none'" ],
'img-src': [
"'self'",
'data',
'*.wp.com',
'*.files.wordpress.com',
'*.gravatar.com',
'https://www.google-analytics.com',
'https://amplifypixel.outbrain.com',
'https://img.youtube.com',
'localhost:8888',
'p.typekit.net',
],
'frame-src': [
"'self'",
'https://public-api.wordpress.com',
'https://accounts.google.com/',
'https://jetpack.com',
],
'font-src': [
"'self'",
'*.wp.com',
'https://fonts.gstatic.com',
'use.typekit.net',
'https://woocommerce.com',
'data:', // should remove 'data:' ASAP
],
'media-src': [ "'self'" ],
'connect-src': [
"'self'",
'https://*.wordpress.com/',
'https://*.wp.com',
'https://wordpress.com',
],
'report-uri': [ '/cspreport' ],
};
const policyString = Object.keys( policy )
.map( ( key ) => `${ key } ${ policy[ key ].join( ' ' ) }` )
.join( '; ' );
// For now we're just logging policy violations and not blocking them
// so we won't actually break anything, later we'll remove the 'Report-Only'
// part so browsers will block violating content.
res.set( { 'Content-Security-Policy-Report-Only': policyString } );
next();
}
function setUpRoute( req, res, next ) {
performanceMark( req.context, 'setUpRoute' );
if ( req.context.isRouteSetup === true ) {
req.logger.warn(
{
isLoggedIn: req.context.isLoggedIn,
path: req.context.path,
},
'Route already set up. Ambiguous route definition likely.'
);
return next();
}
// Prevents function from being called twice.
req.context.isRouteSetup = true;
setUpCSP( req, res, () =>
req.context.isLoggedIn
? setUpLoggedInRoute( req, res, next )
: setUpLoggedOutRoute( req, res, next )
);
}
const setUpSectionContext = ( section, entrypoint ) => ( req, res, next ) => {
req.context.sectionName = section.name;
if ( ! entrypoint ) {
req.context.chunkFiles = req.getFilesForChunkGroup( section.name );
} else {
req.context.chunkFiles = req.getEmptyAssets();
}
if ( section.group && req.context ) {
req.context.sectionGroup = section.group;
}
if ( Array.isArray( section.links ) ) {
section.links.forEach( ( link ) => req.context.store.dispatch( setDocumentHeadLink( link ) ) );
}
if ( Array.isArray( section.meta ) ) {
// Append section specific meta tags.
const meta = getDocumentHeadMeta( req.context.store.getState() ).concat( section.meta );
req.context.store.dispatch( setDocumentHeadMeta( meta ) );
}
next();
};
const render404 =
( entrypoint = 'entry-main' ) =>
( req, res ) => {
const ctx = {
entrypoint: req.getFilesForChunkGroup( entrypoint ),
};
res.status( 404 ).send( renderJsx( '404', ctx ) );
};
/*
We don't use `next` but need to add it for express.js to
recognize this function as an error handler, hence the
eslint-disable.
*/
const renderServerError =
( entrypoint = 'entry-main' ) =>
// eslint-disable-next-line no-unused-vars
( err, req, res, next ) => {
// If the response is not writable it means someone else already rendered a page, do nothing
// Hopefully they logged the error as well.
if ( res.writableEnded ) {
return;
}
try {
req.logger.error( err );
} catch ( error ) {
console.error( error );
}
const ctx = {
entrypoint: req.getFilesForChunkGroup( entrypoint ),
};
res.status( err.status || 500 ).send( renderJsx( '500', ctx ) );
};
/**
* Checks if the passed URL has the same origin as the request
* @param {express.Request} req Request
* @param {string} url URL
* @returns {boolean} True if origins are the same
*/
function validateRedirect( req, url ) {
if ( ! url ) {
return false;
}
try {
const serverOrigin = req.protocol + '://' + req.host;
return new URL( url, serverOrigin ).origin === serverOrigin;
} catch {
// if parsing the URL fails, it is not valid
return false;
}
}
/**
* Defines wordpress.com (Calypso blue) routes only
* @param {express.Application} app Express application
*/
function wpcomPages( app ) {
// redirect homepage if the Reader is disabled
app.get( '/', function ( request, response, next ) {
if ( ! config.isEnabled( 'reader' ) && config.isEnabled( 'stats' ) ) {
response.redirect( '/stats' );
} else {
next();
}
} );
// redirects to handle old newdash formats
app.use( '/sites/:site/:section', function ( req, res, next ) {
const redirectedSections = [
'posts',
'pages',
'sharing',
'upgrade',
'checkout',
'change-theme',
];
let redirectUrl;
if ( -1 === redirectedSections.indexOf( req.params.section ) ) {
next();
return;
}
if ( 'change-theme' === req.params.section ) {
redirectUrl = req.originalUrl.replace( /^\/sites\/[0-9a-zA-Z\-.]+\/change-theme/, '/themes' );
} else {
redirectUrl = req.originalUrl.replace(
/^\/sites\/[0-9a-zA-Z\-.]+\/\w+/,
'/' + req.params.section + '/' + req.params.site
);
}
res.redirect( redirectUrl );
} );
app.get( `/:locale([a-z]{2,3}|[a-z]{2}-[a-z]{2})?/plans`, function ( req, res, next ) {
const locale = req.params?.locale ?? config( 'i18n_default_locale_slug' );
if ( ! req.context.isLoggedIn ) {
const queryFor = req.query?.for;
const ref = req.query?.ref;
const coupon = req.query?.coupon;
if ( queryFor && 'jetpack' === queryFor ) {
res.redirect(
'https://wordpress.com/wp-login.php?redirect_to=https%3A%2F%2Fwordpress.com%2Fplans'
);
} else {
const pricingPage = 'https://wordpress.com/pricing/';
const queryString = stringify( { ref, coupon } );
const pricingPageUrl = localizeUrl(
`${ pricingPage }${ queryString ? '?' + queryString : '' }`,
locale
);
res.redirect( pricingPageUrl );
}
} else {
if ( locale && locale !== config( 'i18n_default_locale_slug' ) ) {
const queryParams = new URLSearchParams( req.query );
const queryString = queryParams.size ? '?' + queryParams.toString() : '';
res.redirect( `/plans${ queryString }` );
return;
}
next();
}
} );
// Redirect legacy `/menus` routes to the corresponding Customizer panel
// TODO: Move to `my-sites/customize` route defs once that section is isomorphic
app.get( [ '/menus', '/menus/:site?' ], ( req, res ) => {
const siteSlug = get( req.params, 'site', '' );
const newRoute = '/customize/menus/' + siteSlug;
res.redirect( 301, newRoute );
} );
app.get( [ '/domains', '/start/domain-first' ], function ( req, res ) {
let redirectUrl = '/start/domain';
const domain = get( req, 'query.new', false );
if ( domain ) {
redirectUrl += '?new=' + encodeURIComponent( domain );
}
res.redirect( redirectUrl );
} );
// Landing pages for domains-related emails
app.get(
'/domain-services/:action',
setupDefaultContext( 'entry-domains-landing', 'domains-landing' ),
( req, res ) => {
const ctx = req.context;
attachBuildTimestamp( ctx );
attachHead( ctx );
attachI18n( ctx );
ctx.clientData = config.clientData;
ctx.domainsLandingData = {
action: get( req, [ 'params', 'action' ], 'unknown-action' ),
query: get( req, 'query', {} ),
};
const pageHtml = renderJsx( 'domains-landing', ctx );
res.send( pageHtml );
}
);
app.get( '/browsehappy', ( req, res ) => {
// We only want to allow a redirect to Calypso routes, so we check that
// the `from` query param has the same origin.
const { from } = req.query;
const redirectLocation = from && validateRedirect( req, from ) ? from : '/';
req.context.entrypoint = req.getFilesForChunkGroup( 'entry-browsehappy' );
req.context.from = redirectLocation;
res.send( renderJsx( 'browsehappy', req.context ) );
} );
app.get( '/support-user', function ( req, res ) {
// Do not iframe
res.set( {
'X-Frame-Options': 'DENY',
} );
if ( calypsoEnv === 'development' ) {
return res.send(
renderJsx( 'support-user', {
authorized: true,
supportUser: req.query.support_user,
supportToken: req.query._support_token,
supportPath: req.query.support_path,
} )
);
}
if ( ! config.isEnabled( 'wpcom-user-bootstrap' ) || ! req.cookies.wordpress_logged_in ) {
return res.send( renderJsx( 'support-user' ) );
}
// Maybe not logged in, note that you need docker to test this properly
debug( 'Issuing API call to fetch user object' );
getBootstrappedUser( req )
.then( ( data ) => {
const activeFlags = get( data, 'meta.data.flags.active_flags', [] );
// A8C check
if ( ! includes( activeFlags, 'calypso_support_user' ) ) {
return res.send( renderJsx( 'support-user' ) );
}
// Passed all checks, prepare support user session
res.send(
renderJsx( 'support-user', {
authorized: true,
supportUser: req.query.support_user,
supportToken: req.query._support_token,
supportPath: req.query.support_path,
} )
);
} )
.catch( () => {
res.clearCookie( 'wordpress_logged_in', {
path: '/',
httpOnly: true,
domain: '.wordpress.com',
} );
res.send( renderJsx( 'support-user' ) );
} );
} );
app.get( [ '/subscriptions', '/subscriptions/*' ], function ( req, res, next ) {
if ( ( req.cookies.subkey || calypsoEnv !== 'production' ) && ! req.context.isLoggedIn ) {
// If the user is not logged in but has a subkey cookie, they are authorized to view old portal
return next();
}
// For users not logged in, redirect to the email login link page.
if ( ! req.context.isLoggedIn ) {
return res.redirect( 'https://wordpress.com/email-subscriptions' );
}
const basePath = 'https://wordpress.com/reader/subscriptions';
// If user enters /subscriptions/sites(.*),
// redirect to /reader/subscriptions.
if ( req.path.match( '/subscriptions/sites' ) ) {
return res.redirect( basePath );
}
// If user enters /site/*,
// redirect to /reader/site/subscription/*.
const siteFragment = req.path.match( /site\/(.*)/i );
if ( siteFragment && siteFragment[ 1 ] ) {
return res.redirect( 'https://wordpress.com/reader/site/subscription/' + siteFragment[ 1 ] );
}
// If user enters /subscriptions/comments(.*),
// redirect to /reader/subscriptions/comments.
if ( req.path.match( '/subscriptions/comments' ) ) {
return res.redirect( basePath + '/comments' );
}
// If user enters /subscriptions/pending(.*),
// redirect to /reader/subscriptions/pending.
if ( req.path.match( '/subscriptions/pending' ) ) {
return res.redirect( basePath + '/pending' );
}
// If user enters /subscriptions/settings,
// redirect to /me/notifications/subscriptions?referrer=management.
if ( req.path.match( '/subscriptions/settings' ) ) {
return res.redirect(
'https://wordpress.com/me/notifications/subscriptions?referrer=management'
);
}
return res.redirect( basePath );
} );
// Redirects from the /start/domain-transfer flow to the new /setup/domain-transfer.
app.get( [ '/start/domain-transfer', '/start/domain-transfer/*' ], function ( req, res ) {
const redirectUrl = '/setup/domain-transfer';
res.redirect( 301, redirectUrl );
} );
// Redirects from /help/courses to https://wordpress.com/learn/courses.
app.get( '/help/courses', function ( req, res ) {
const redirectUrl = 'https://wordpress.com/learn/courses';
res.redirect( 301, redirectUrl );
} );
}
export default function pages() {
const app = express();
app.set( 'views', __dirname );
app.use( logSectionResponse );
app.use( cookieParser() );
app.use( middlewareAssets() );
app.use( middlewareCache() );
app.use( setupLoggedInContext );
app.use( middlewareUnsupportedBrowser() );
if ( ! ( isJetpackCloud() || isA8CForAgencies() ) ) {
wpcomPages( app );
}
/**
* Given information about a section, register the given path as an express
* route and define a basic middleware chain. The chain sets up any request
* context and renders the basic DOM structure, ultimately resolving the request.
*
* For SSR requests -- e.g. the section is compatible with SSR and the request
* is logged out -- it skips the rendering portion of the chain, because that
* is explicitly handled by the serverRouter. In SSR contexts, this chain is
* still responsible for setting up some basic info like the context and the
* bootstrapped user, but not for resolving the request.
*
* This approach allows requests to an SSR section to skip any section-specific
* SSR middleware if the request wasn't going to be resolved with SSR anyways.
*/
function handleSectionPath( section, sectionPath, entrypoint ) {
const pathRegex = pathToRegExp( sectionPath );
app.get(
pathRegex,
setupDefaultContext( entrypoint, section.name ),
setUpSectionContext( section, entrypoint ),
// Skip the rest of the middleware chain if SSR compatible. Further
// SSR checks aren't accounted for here, but happen in the SSR pipeline
// itself (see serverRouter). But if we know at a basic level that SSR
// won't be used, we can boost performance by rendering the page here.
( req, res, next ) => {
if ( ! req.context.isLoggedIn && section.isomorphic ) {
return next( 'route' );
}
debug( `Using non-SSR pipeline for path ${ req.path } with handler ${ pathRegex }` );
next();
},
setUpRoute, // For SSR requests, this will happen in the serverRouter.
serverRender
);
}
sections
.filter( ( section ) => ! section.envId || section.envId.indexOf( config( 'env_id' ) ) > -1 )
.filter( isSectionEnabled )
.forEach( ( section ) => {
section.paths.forEach( ( sectionPath ) => handleSectionPath( section, sectionPath ) );
if ( section.isomorphic ) {
// section.load() uses require on the server side so we also need to access the
// default export of it. See build-tools/webpack/sections-loader.js
// TODO: section initialization is async function since #28301. At the moment when
// some isomorphic section really starts doing something async, we should start
// awaiting the result here. Will be solved together with server-side dynamic reducers.
section.load().default( serverRouter( app, setUpRoute, section ) );
}
} );
// Set up login routing.
handleSectionPath( LOGIN_SECTION_DEFINITION, '/log-in', 'entry-login' );
loginRouter( serverRouter( app, setUpRoute, null ) );
// Set up v2 dashboard routing.
handleSectionPath( DASHBOARD_SECTION_DEFINITION, '/v2', 'entry-dashboard-dotcom' );
// Set up v2-a4a dashboard routing.
handleSectionPath( DASHBOARD_A4A_SECTION_DEFINITION, '/v2-a4a', 'entry-dashboard-a4a' );
handleSectionPath( STEPPER_SECTION_DEFINITION, '/setup', 'entry-stepper' );
handleSectionPath( SUBSCRIPTIONS_SECTION_DEFINITION, '/subscriptions', 'entry-subscriptions' );
// Redirect legacy `/new` routes to the corresponding `/start`
app.get( [ '/new', '/new/*' ], ( req, res ) => {
const lastPathSegment = req.path.substr( req.path.lastIndexOf( '/' ) + 1 );
const languageSlugs = getLanguageSlugs();
let redirectUrl = '/start';
if ( languageSlugs.includes( lastPathSegment ) && ! isDefaultLocale( lastPathSegment ) ) {
redirectUrl += `/${ lastPathSegment }`;
}
if ( Object.keys( req.query ) > 0 ) {
redirectUrl += `?${ stringify( req.query ) }`;
}
res.redirect( 301, redirectUrl );
} );
// Redirect legacy `/help` routes to `sites?help-center=home` if logged in, otherwise `/support`
// Note: isLoggedIn will only work under *.wordpress.com domains (wpcalypso, horizon, and prod)
app.get( [ '/me/chat', '/help', '/help/*' ], ( req, res ) => {
if ( req.context.isLoggedIn ) {
return res.redirect( 301, '/sites?help-center=home' );
}
const redirectUrl = localizeUrl( `https://wordpress.com/support`, req.context.locale );
return res.redirect( 301, redirectUrl );
} );
// This is used to log to tracks Content Security Policy violation reports sent by browsers
app.post(
'/cspreport',
bodyParser.json( { type: [ 'json', 'application/csp-report' ] } ),
function ( req, res ) {
const cspReport = req.body[ 'csp-report' ] || {};
const cspReportSnakeCase = Object.keys( cspReport ).reduce( ( report, key ) => {
report[ snakeCase( key ) ] = cspReport[ key ];
return report;
}, {} );
if ( calypsoEnv !== 'development' ) {
analytics.tracks.recordEvent( 'calypso_csp_report', cspReportSnakeCase, req );
}
res.status( 200 ).send( 'Got it!' );
},
// eslint-disable-next-line no-unused-vars
function ( err, req, res, next ) {
res.status( 500 ).send( 'Bad report!' );
}
);
// catchall to render 404 for all routes not explicitly allowed in client/sections
app.use( render404() );
// Error handling middleware for displaying the server error 500 page must be the very last middleware defined
app.use( renderServerError() );
return app;
}
|