mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
232 lines
6.6 KiB
JavaScript
232 lines
6.6 KiB
JavaScript
import path from 'path'
|
|
import launchMiddleware from 'launch-editor-middleware'
|
|
import serveStatic from 'serve-static'
|
|
import servePlaceholder from 'serve-placeholder'
|
|
import connect from 'connect'
|
|
import { determineGlobals, isUrl } from '@nuxt/common'
|
|
|
|
import ServerContext from './context'
|
|
import renderAndGetWindow from './jsdom'
|
|
import nuxtMiddleware from './middleware/nuxt'
|
|
import errorMiddleware from './middleware/error'
|
|
import Listener from './listener'
|
|
import modernMiddleware from './middleware/modern'
|
|
|
|
export default class Server {
|
|
constructor(nuxt) {
|
|
this.nuxt = nuxt
|
|
this.options = nuxt.options
|
|
|
|
this.globals = determineGlobals(nuxt.options.globalName, nuxt.options.globals)
|
|
|
|
this.publicPath = isUrl(this.options.build.publicPath)
|
|
? this.options.build._publicPath
|
|
: this.options.build.publicPath
|
|
|
|
// Runtime shared resources
|
|
this.resources = {}
|
|
|
|
// Will be available on dev
|
|
this.devMiddleware = null
|
|
this.hotMiddleware = null
|
|
|
|
// Will be set after listen
|
|
this.listeners = []
|
|
|
|
// Create new connect instance
|
|
this.app = connect()
|
|
}
|
|
|
|
async ready() {
|
|
await this.nuxt.callHook('render:before', this, this.options.render)
|
|
|
|
// Initialize vue-renderer
|
|
const { VueRenderer } = await import('@nuxt/vue-renderer')
|
|
|
|
const context = new ServerContext(this)
|
|
this.renderer = new VueRenderer(context)
|
|
await this.renderer.ready()
|
|
|
|
// Setup nuxt middleware
|
|
await this.setupMiddleware()
|
|
|
|
// Call done hook
|
|
await this.nuxt.callHook('render:done', this)
|
|
|
|
// Close all listeners after nuxt close
|
|
this.nuxt.hook('close', async () => {
|
|
for (const listener of this.listeners) {
|
|
await listener.close()
|
|
}
|
|
this.listeners = []
|
|
})
|
|
}
|
|
|
|
async setupMiddleware() {
|
|
// Apply setupMiddleware from modules first
|
|
await this.nuxt.callHook('render:setupMiddleware', this.app)
|
|
|
|
// Compression middleware for production
|
|
if (!this.options.dev) {
|
|
const compressor = this.options.render.compressor
|
|
if (typeof compressor === 'object') {
|
|
// If only setting for `compression` are provided, require the module and insert
|
|
const compression = this.nuxt.resolver.requireModule('compression')
|
|
this.useMiddleware(compression(compressor))
|
|
} else if (compressor) {
|
|
// Else, require own compression middleware if compressor is actually truthy
|
|
this.useMiddleware(compressor)
|
|
}
|
|
}
|
|
|
|
if (this.options.modern === 'server') {
|
|
this.useMiddleware(modernMiddleware)
|
|
}
|
|
|
|
// Add webpack middleware support only for development
|
|
if (this.options.dev) {
|
|
this.useMiddleware(async (req, res, next) => {
|
|
const name = req.modernMode ? 'modern' : 'client'
|
|
if (this.devMiddleware[name]) {
|
|
await this.devMiddleware[name](req, res)
|
|
}
|
|
if (this.hotMiddleware[name]) {
|
|
await this.hotMiddleware[name](req, res)
|
|
}
|
|
next()
|
|
})
|
|
}
|
|
|
|
// open in editor for debug mode only
|
|
if (this.options.debug && this.options.dev) {
|
|
this.useMiddleware({
|
|
path: '__open-in-editor',
|
|
handler: launchMiddleware(this.options.editor)
|
|
})
|
|
}
|
|
|
|
// For serving static/ files to /
|
|
const staticMiddleware = serveStatic(
|
|
path.resolve(this.options.srcDir, this.options.dir.static),
|
|
this.options.render.static
|
|
)
|
|
staticMiddleware.prefix = this.options.render.static.prefix
|
|
this.useMiddleware(staticMiddleware)
|
|
|
|
// Serve .nuxt/dist/client files only for production
|
|
// For dev they will be served with devMiddleware
|
|
if (!this.options.dev) {
|
|
const distDir = path.resolve(this.options.buildDir, 'dist', 'client')
|
|
this.useMiddleware({
|
|
path: this.publicPath,
|
|
handler: serveStatic(
|
|
distDir,
|
|
this.options.render.dist
|
|
)
|
|
})
|
|
}
|
|
|
|
// Add user provided middleware
|
|
this.options.serverMiddleware.forEach((m) => {
|
|
this.useMiddleware(m)
|
|
})
|
|
|
|
const { fallback } = this.options.render
|
|
if (fallback) {
|
|
// Graceful 404 errors for dist files
|
|
if (fallback.dist) {
|
|
this.useMiddleware({
|
|
path: this.publicPath,
|
|
handler: servePlaceholder(fallback.dist)
|
|
})
|
|
}
|
|
|
|
// Graceful 404 errors for other paths
|
|
if (fallback.static) {
|
|
this.useMiddleware({
|
|
path: '/',
|
|
handler: servePlaceholder(fallback.static)
|
|
})
|
|
}
|
|
}
|
|
|
|
// Finally use nuxtMiddleware
|
|
this.useMiddleware(nuxtMiddleware({
|
|
options: this.options,
|
|
nuxt: this.nuxt,
|
|
renderRoute: this.renderRoute.bind(this),
|
|
resources: this.resources
|
|
}))
|
|
|
|
// Error middleware for errors that occurred in middleware that declared above
|
|
// Middleware should exactly take 4 arguments
|
|
// https://github.com/senchalabs/connect#error-middleware
|
|
|
|
// Apply errorMiddleware from modules first
|
|
await this.nuxt.callHook('render:errorMiddleware', this.app)
|
|
|
|
// Apply errorMiddleware from Nuxt
|
|
this.useMiddleware(errorMiddleware({
|
|
resources: this.resources,
|
|
options: this.options
|
|
}))
|
|
}
|
|
|
|
useMiddleware(middleware) {
|
|
// Resolve middleware
|
|
if (typeof middleware === 'string') {
|
|
middleware = this.nuxt.resolver.requireModule(middleware)
|
|
}
|
|
|
|
// Resolve handler
|
|
if (typeof middleware.handler === 'string') {
|
|
middleware.handler = this.nuxt.resolver.requireModule(middleware.handler)
|
|
}
|
|
const handler = middleware.handler || middleware
|
|
|
|
// Resolve path
|
|
const path = (
|
|
(middleware.prefix !== false ? this.options.router.base : '') +
|
|
(typeof middleware.path === 'string' ? middleware.path : '')
|
|
).replace(/\/\//g, '/')
|
|
|
|
// Use middleware
|
|
this.app.use(path, handler)
|
|
}
|
|
|
|
renderRoute() {
|
|
return this.renderer.renderRoute.apply(this.renderer, arguments)
|
|
}
|
|
|
|
loadResources() {
|
|
return this.renderer.loadResources.apply(this.renderer, arguments)
|
|
}
|
|
|
|
renderAndGetWindow(url, opts = {}) {
|
|
return renderAndGetWindow(url, opts, {
|
|
loadedCallback: this.globals.loadedCallback,
|
|
ssr: this.options.render.ssr,
|
|
globals: this.globals
|
|
})
|
|
}
|
|
|
|
async listen(port, host, socket) {
|
|
// Create a new listener
|
|
const listener = new Listener({
|
|
port: port || this.options.server.port,
|
|
host: host || this.options.server.host,
|
|
socket: socket || this.options.server.socket,
|
|
https: this.options.server.https,
|
|
app: this.app
|
|
})
|
|
|
|
// Listen
|
|
await listener.listen()
|
|
|
|
// Push listener to this.listeners
|
|
this.listeners.push(listener)
|
|
|
|
await this.nuxt.callHook('listen', listener.server, listener)
|
|
}
|
|
}
|