import path from 'path'; import chalk from 'chalk'; import cookieParser from 'cookie-parser'; import express from 'express'; import userAgent from 'express-useragent'; import { createProxyMiddleware } from 'http-proxy-middleware'; import api from 'calypso/server/api'; import config from 'calypso/server/config'; import analytics from 'calypso/server/lib/analytics'; import loggerMiddleware from 'calypso/server/middleware/logger'; import pages from 'calypso/server/pages'; import pwa from 'calypso/server/pwa'; import geoipHeaderMiddleware from '../middleware/geoip-header.ts'; /** * Returns the server HTTP request handler "app". * @returns {Object} The express app */ export default function setup() { const app = express(); // for nginx app.enable( 'trust proxy' ); app.use( cookieParser() ); app.use( userAgent.express() ); app.use( loggerMiddleware() ); if ( process.env.USE_SERVER_PROFILER === 'true' ) { // TODO: Re-enable this middleware once `v8-profiler-next` adds support for Node.js 22 // app.use( require( 'calypso/server/middleware/profiler' )() ); console.warn( 'Server profiling is temporarily disabled until `v8-profiler-next` adds support for Node.js 22.' ); } if ( 'development' === process.env.NODE_ENV ) { require( 'calypso/server/bundler' )( app ); // Production servers forward a request header with the user's country code. To ensure a // consistent experience, we simulate this in local development with a custom middleware. app.use( geoipHeaderMiddleware() ); // When mocking WordPress.com to point locally, wordpress.com/wp-login.php will hit Calypso creating an infinite loop. // redirect traffic to de.wordpress.com to hit the real backend and prevent a loop. // `de.wordpress.com` accepts POST requests to `/wp-login.php` exactly like `wordpress.com`. if ( process.env.MOCK_WORDPRESSDOTCOM === '1' ) { app.use( '/wp-login.php', createProxyMiddleware( { target: 'https://de.wordpress.com/wp-login.php' } ) ); } if ( config.isEnabled( 'wpcom-user-bootstrap' ) ) { if ( config( 'wordpress_logged_in_cookie' ) ) { const username = config( 'wordpress_logged_in_cookie' ).split( '%7C' )[ 0 ]; console.info( chalk.cyan( '\nYour logged in cookie set to user: ' + username ) ); app.use( function ( req, res, next ) { if ( ! req.cookies.wordpress_logged_in ) { req.cookies.wordpress_logged_in = config( 'wordpress_logged_in_cookie' ); } next(); } ); } else { console.info( chalk.red( '\nYou need to set `wordpress_logged_in_cookie` in secrets.json' + ' for wpcom-user-bootstrap to work in development.' ) ); } // Use try/catch because config() will throw for missing keys in development mode, // and we don't want an exception if `support_session_id_cookie` is undefined. try { const supportSessionIdCookie = config( 'support_session_id_cookie' ); if ( supportSessionIdCookie ) { app.use( function ( req, res, next ) { if ( ! req.cookies.support_session_id ) { req.cookies.support_session_id = supportSessionIdCookie; } next(); } ); } } catch ( e ) {} } } app.use( pwa() ); // attach the static file server to serve the `public` dir app.use( '/calypso', express.static( path.resolve( __dirname, '..', '..', '..', 'public' ) ) ); // loaded when we detect stats blockers - see lib/analytics/index.js app.get( '/nostats.js', function ( request, response ) { analytics.tracks.recordEvent( 'calypso_stats_blocked', { do_not_track: request.headers.dnt, }, request ); response.setHeader( 'content-type', 'application/javascript' ); response.end( "console.log('Stats are disabled');" ); } ); if ( config.isEnabled( 'devdocs' ) ) { app.use( require( 'calypso/server/devdocs' ).default() ); } app.use( api() ); // attach the pages module app.use( pages() ); return app; }