mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
110 lines
2.6 KiB
JavaScript
110 lines
2.6 KiB
JavaScript
|
import http from 'http'
|
||
|
import { resolve } from 'path'
|
||
|
import send from 'send'
|
||
|
import Router from './router'
|
||
|
import { render, renderJSON } from './render'
|
||
|
|
||
|
export default class Server {
|
||
|
constructor (root) {
|
||
|
this.root = resolve(root)
|
||
|
this.router = new Router()
|
||
|
|
||
|
this.http = http.createServer((req, res) => {
|
||
|
this.run(req, res).catch((err) => {
|
||
|
this.renderError(req, res, err)
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
async start (port) {
|
||
|
this.router.get('/_next/:path+', async (req, res, params) => {
|
||
|
const path = (params.path || []).join('/')
|
||
|
await this.serveStatic(req, res, path)
|
||
|
})
|
||
|
|
||
|
this.router.get('/:path+.json', async (req, res, params) => {
|
||
|
const path = (params.path || []).join('/')
|
||
|
await this.renderJSON(req, res, path)
|
||
|
})
|
||
|
|
||
|
this.router.get('/:path*', async (req, res, params) => {
|
||
|
const path = (params.path || []).join('/')
|
||
|
await this.render(req, res, path)
|
||
|
})
|
||
|
|
||
|
await new Promise((resolve, reject) => {
|
||
|
this.http.listen(port, (err) => {
|
||
|
if (err) return reject(err)
|
||
|
resolve()
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
|
||
|
async run (req, res) {
|
||
|
const fn = this.router.match(req, res)
|
||
|
if (fn) {
|
||
|
await fn()
|
||
|
} else {
|
||
|
await this.render404(req, res)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
async render (req, res, path) {
|
||
|
const { root } = this
|
||
|
let html
|
||
|
try {
|
||
|
html = await render(path, req, res, { root })
|
||
|
} catch (err) {
|
||
|
if ('MODULE_NOT_FOUND' === err.code) {
|
||
|
return this.render404(req, res)
|
||
|
}
|
||
|
throw err
|
||
|
}
|
||
|
res.setHeader('Content-Type', 'text/html')
|
||
|
res.setHeader('Content-Length', Buffer.byteLength(html))
|
||
|
res.end(html)
|
||
|
}
|
||
|
|
||
|
async renderJSON (req, res, path) {
|
||
|
let json
|
||
|
try {
|
||
|
json = await renderJSON(path, { root })
|
||
|
} catch (err) {
|
||
|
if ('MODULE_NOT_FOUND' === err.code) {
|
||
|
return this.render404(req, res)
|
||
|
}
|
||
|
throw err
|
||
|
}
|
||
|
res.setHeader('Content-Type', 'application/json')
|
||
|
res.setHeader('Content-Length', Buffer.byteLength(json))
|
||
|
res.end(json)
|
||
|
}
|
||
|
|
||
|
async render404 (req, res) {
|
||
|
res.writeHead(404)
|
||
|
res.end('Not Found')
|
||
|
}
|
||
|
|
||
|
async renderError (req, res, err) {
|
||
|
console.error(err)
|
||
|
res.writeHead(500)
|
||
|
res.end('Error')
|
||
|
}
|
||
|
|
||
|
serveStatic (req, res, path) {
|
||
|
const p = resolve(__dirname, '../client', path)
|
||
|
return new Promise((resolve, reject) => {
|
||
|
send(req, p)
|
||
|
.on('error', (err) => {
|
||
|
if ('ENOENT' === err.code) {
|
||
|
this.render404(req, res).then(resolve, reject)
|
||
|
} else {
|
||
|
reject(err)
|
||
|
}
|
||
|
})
|
||
|
.pipe(res)
|
||
|
.on('finish', resolve)
|
||
|
})
|
||
|
}
|
||
|
}
|