2017-08-13 11:22:10 +00:00
|
|
|
const path = require('path')
|
2018-03-31 17:52:54 +00:00
|
|
|
const consola = require('consola')
|
|
|
|
|
2019-03-18 20:38:46 +00:00
|
|
|
const logger = consola.withScope('nuxt:http')
|
2017-08-13 11:22:10 +00:00
|
|
|
|
2019-03-18 20:38:46 +00:00
|
|
|
function httpModule(_moduleOptions) {
|
2018-01-16 17:15:12 +00:00
|
|
|
// Combine options
|
2019-03-18 20:38:46 +00:00
|
|
|
const moduleOptions = { ...this.options.http, ..._moduleOptions }
|
2018-01-16 17:15:12 +00:00
|
|
|
|
|
|
|
// Default port
|
|
|
|
const defaultPort =
|
|
|
|
process.env.API_PORT ||
|
|
|
|
moduleOptions.port ||
|
|
|
|
process.env.PORT ||
|
|
|
|
process.env.npm_package_config_nuxt_port ||
|
|
|
|
3000
|
|
|
|
|
|
|
|
// Default host
|
|
|
|
let defaultHost =
|
|
|
|
process.env.API_HOST ||
|
|
|
|
moduleOptions.host ||
|
|
|
|
process.env.HOST ||
|
|
|
|
process.env.npm_package_config_nuxt_host ||
|
|
|
|
'localhost'
|
|
|
|
|
2017-08-13 13:47:38 +00:00
|
|
|
/* istanbul ignore if */
|
2018-01-16 17:15:12 +00:00
|
|
|
if (defaultHost === '0.0.0.0') {
|
|
|
|
defaultHost = 'localhost'
|
2017-08-13 13:47:38 +00:00
|
|
|
}
|
|
|
|
|
2018-01-16 17:15:12 +00:00
|
|
|
// Default prefix
|
|
|
|
const prefix = process.env.API_PREFIX || moduleOptions.prefix || '/'
|
|
|
|
|
2017-08-13 11:22:10 +00:00
|
|
|
// Apply defaults
|
2019-02-19 08:43:56 +00:00
|
|
|
const options = {
|
|
|
|
baseURL: `http://${defaultHost}:${defaultPort}${prefix}`,
|
|
|
|
browserBaseURL: null,
|
|
|
|
proxyHeaders: true,
|
|
|
|
proxyHeadersIgnore: ['accept', 'host', 'cf-ray', 'cf-connecting-ip'],
|
|
|
|
proxy: false,
|
|
|
|
retry: false,
|
|
|
|
https: false,
|
|
|
|
...moduleOptions
|
|
|
|
}
|
2017-08-13 11:22:10 +00:00
|
|
|
|
2018-01-16 17:15:12 +00:00
|
|
|
// ENV overrides
|
2017-08-13 11:22:10 +00:00
|
|
|
|
2017-08-13 13:47:38 +00:00
|
|
|
/* istanbul ignore if */
|
2017-08-13 11:22:10 +00:00
|
|
|
if (process.env.API_URL) {
|
|
|
|
options.baseURL = process.env.API_URL
|
|
|
|
}
|
|
|
|
|
2017-08-13 13:47:38 +00:00
|
|
|
/* istanbul ignore if */
|
2017-08-13 11:22:10 +00:00
|
|
|
if (process.env.API_URL_BROWSER) {
|
|
|
|
options.browserBaseURL = process.env.API_URL_BROWSER
|
|
|
|
}
|
|
|
|
|
2018-01-16 17:15:12 +00:00
|
|
|
// Default browserBaseURL
|
2017-08-13 11:22:10 +00:00
|
|
|
if (!options.browserBaseURL) {
|
2018-01-28 19:10:23 +00:00
|
|
|
options.browserBaseURL = options.proxy ? prefix : options.baseURL
|
2017-08-13 11:22:10 +00:00
|
|
|
}
|
|
|
|
|
2018-02-04 18:28:25 +00:00
|
|
|
// Normalize options
|
|
|
|
if (options.retry === true) {
|
2019-03-24 11:12:58 +00:00
|
|
|
options.retry = 2
|
|
|
|
} else if (!options.retry) {
|
|
|
|
options.retry = 0
|
2018-02-04 18:28:25 +00:00
|
|
|
}
|
|
|
|
|
2018-02-04 19:37:58 +00:00
|
|
|
// Convert http:// to https:// if https option is on
|
|
|
|
if (options.https === true) {
|
2018-03-05 16:44:20 +00:00
|
|
|
const https = s => s.indexOf('//localhost:') > -1 ? s : s.replace('http://', 'https://')
|
2018-02-04 19:37:58 +00:00
|
|
|
options.baseURL = https(options.baseURL)
|
|
|
|
options.browserBaseURL = https(options.browserBaseURL)
|
|
|
|
}
|
|
|
|
|
2017-08-13 11:22:10 +00:00
|
|
|
// Register plugin
|
2017-08-30 17:09:30 +00:00
|
|
|
this.addPlugin({
|
2019-02-09 14:04:47 +00:00
|
|
|
src: path.resolve(__dirname, 'plugin.js'),
|
2019-03-18 20:38:46 +00:00
|
|
|
fileName: 'http.js',
|
2017-08-13 11:22:10 +00:00
|
|
|
options
|
|
|
|
})
|
|
|
|
|
2018-01-28 19:10:23 +00:00
|
|
|
// Proxy integration
|
|
|
|
if (options.proxy) {
|
2018-02-04 18:02:30 +00:00
|
|
|
this.requireModule([
|
|
|
|
'@nuxtjs/proxy',
|
|
|
|
typeof options.proxy === 'object' ? options.proxy : {}
|
|
|
|
])
|
2018-01-28 19:10:23 +00:00
|
|
|
}
|
|
|
|
|
2019-03-18 20:38:46 +00:00
|
|
|
// Set _HTTP_BASE_URL_ for dynamic SSR baseURL
|
|
|
|
process.env._HTTP_BASE_URL_ = options.baseURL
|
2018-02-08 21:34:47 +00:00
|
|
|
|
2018-03-31 19:16:54 +00:00
|
|
|
logger.debug(`baseURL: ${options.baseURL}`)
|
|
|
|
logger.debug(`browserBaseURL: ${options.browserBaseURL}`)
|
2017-08-13 11:22:10 +00:00
|
|
|
}
|
|
|
|
|
2019-03-18 20:38:46 +00:00
|
|
|
module.exports = httpModule
|
2017-08-13 11:22:10 +00:00
|
|
|
module.exports.meta = require('../package.json')
|