/core/dev-utils/prepareProxy.js
https://github.com/egoist/poi · JavaScript · 139 lines · 99 code · 8 blank · 32 comment · 10 complexity · 54462f609494267479f76de2f0eb5701 MD5 · raw file
- const fs = require('fs')
- const path = require('path')
- const url = require('url')
- const address = require('address')
- const colors = require('./colors')
- module.exports = function(proxy, appPublicFolder, debug) {
- // `proxy` lets you specify alternate servers for specific requests.
- if (!/^https?:\/\//.test(proxy)) {
- throw new Error(
- `When specified \`proxy\` as a string, it must start with http:// or https://`
- )
- }
- // If proxy is specified, let it handle any request except for files in the public folder.
- function mayProxy(pathname) {
- const maybePublicPath = path.resolve(appPublicFolder, pathname.slice(1))
- return !fs.existsSync(maybePublicPath)
- }
- let target
- if (process.platform === 'win32') {
- target = resolveLoopback(proxy)
- } else {
- target = proxy
- }
- return [
- {
- target,
- logLevel: debug ? 'debug' : 'silent',
- // For single page apps, we generally want to fallback to /index.html.
- // However we also want to respect `proxy` for API calls.
- // So if `proxy` is specified as a string, we need to decide which fallback to use.
- // We use a heuristic: We want to proxy all the requests that are not meant
- // for static assets and as all the requests for static assets will be using
- // `GET` method, we can proxy all non-`GET` requests.
- // For `GET` requests, if request `accept`s text/html, we pick /index.html.
- // Modern browsers include text/html into `accept` header when navigating.
- // However API calls like `fetch()` won’t generally accept text/html.
- // If this heuristic doesn’t work well for you, use `src/setupProxy.js`.
- context(pathname, req) {
- // Explict context
- if (pathname.startsWith('/api/')) {
- return true
- }
- return (
- req.method !== 'GET' ||
- (mayProxy(pathname) &&
- req.headers.accept &&
- req.headers.accept.indexOf('text/html') === -1)
- )
- },
- onProxyReq: proxyReq => {
- // Browsers may send Origin headers even with same-origin
- // requests. To prevent CORS issues, we have to change
- // the Origin to match the target URL.
- if (proxyReq.getHeader('origin')) {
- proxyReq.setHeader('origin', target)
- }
- },
- onError: onProxyError(target),
- secure: false,
- changeOrigin: true,
- ws: true,
- xfwd: true
- }
- ]
- }
- // We need to provide a custom onError function for httpProxyMiddleware.
- // It allows us to log custom error messages on the console.
- function onProxyError(proxy) {
- return (err, req, res) => {
- const host = req.headers && req.headers.host
- console.log(
- colors.red('Proxy error:') +
- ' Could not proxy request ' +
- colors.cyan(req.url) +
- ' from ' +
- colors.cyan(host) +
- ' to ' +
- colors.cyan(proxy) +
- '.'
- )
- console.log(
- 'See https://nodejs.org/api/errors.html#errors_common_system_errors for more information (' +
- colors.cyan(err.code) +
- ').'
- )
- console.log()
- // And immediately send the proper error response to the client.
- // Otherwise, the request will eventually timeout with ERR_EMPTY_RESPONSE on the client side.
- if (res.writeHead && !res.headersSent) {
- res.writeHead(500)
- }
- res.end(
- 'Proxy error: Could not proxy request ' +
- req.url +
- ' from ' +
- host +
- ' to ' +
- proxy +
- ' (' +
- err.code +
- ').'
- )
- }
- }
- function resolveLoopback(proxy) {
- const o = url.parse(proxy)
- o.host = undefined
- if (o.hostname !== 'localhost') {
- return proxy
- }
- // Unfortunately, many languages (unlike node) do not yet support IPv6.
- // This means even though localhost resolves to ::1, the application
- // must fall back to IPv4 (on 127.0.0.1).
- // We can re-enable this in a few years.
- /* try {
- o.hostname = address.ipv6() ? '::1' : '127.0.0.1';
- } catch (_ignored) {
- o.hostname = '127.0.0.1';
- } */
- try {
- // Check if we're on a network; if we are, chances are we can resolve
- // localhost. Otherwise, we can just be safe and assume localhost is
- // IPv4 for maximum compatibility.
- if (!address.ip()) {
- o.hostname = '127.0.0.1'
- }
- } catch (_) {
- o.hostname = '127.0.0.1'
- }
- return url.format(o)
- }