joyent-portal/packages/my-joy-navigation/lib/index.js

100 lines
2.3 KiB
JavaScript
Raw Normal View History

2018-04-10 19:50:28 +03:00
'use strict';
const Boom = require('boom');
2018-01-08 17:13:05 +02:00
const Inert = require('inert');
const Path = require('path');
const Url = require('url');
const Intercept = require('apr-intercept');
const Fs = require('mz/fs');
2018-01-08 17:13:05 +02:00
const { NAMESPACE = 'navigation' } = process.env;
2018-01-08 17:13:05 +02:00
exports.register = async server => {
const manifest = require('../build/asset-manifest.json');
const buildRoot = Path.join(__dirname, '../build');
const buildStatic = Path.join(buildRoot, `${NAMESPACE}`);
const publicRoot = Path.join(__dirname, `../public/static`);
2018-01-08 17:13:05 +02:00
await server.register([
{
plugin: Inert
}
]);
2018-01-08 17:13:05 +02:00
server.route([
{
method: 'GET',
path: `/${NAMESPACE}/service-worker.js`,
config: {
auth: false,
handler: {
file: {
path: Path.join(__dirname, '../build/service-worker.js')
}
}
}
},
{
method: 'GET',
path: `/${NAMESPACE}/favicon.ico`,
2018-01-08 17:13:05 +02:00
config: {
auth: false,
handler: {
file: {
path: Path.join(__dirname, '../build/favicon.ico')
}
}
}
},
{
method: 'GET',
path: `/${NAMESPACE}/static/{rest*}`,
config: {
auth: false
},
handler: async (request, h) => {
const { params } = request;
const { rest } = params;
2018-01-08 17:13:05 +02:00
2018-04-10 19:50:28 +03:00
if (!rest) {
return Boom.notFound();
}
const publicPathname = Path.join(publicRoot, rest);
const [err1] = await Intercept(
Fs.access(publicPathname, Fs.constants.R_OK)
);
2018-01-08 17:13:05 +02:00
if (!err1) {
return h.file(publicPathname, {
confine: publicRoot
});
}
2018-04-10 19:50:28 +03:00
const filename = manifest[rest];
if (!filename) {
return Boom.notFound();
}
const buildMapPathname = Path.join(buildRoot, filename);
const [err2] = await Intercept(
Fs.access(buildMapPathname, Fs.constants.R_OK)
);
2018-01-08 17:13:05 +02:00
if (!err2) {
return h.file(buildMapPathname, {
confine: buildStatic
2018-02-19 16:59:31 +02:00
});
2018-01-08 17:13:05 +02:00
}
const buildPathname = Path.join(buildStatic, rest);
return h.file(buildPathname, {
confine: buildStatic
});
2018-01-08 17:13:05 +02:00
}
}
]);
};
exports.pkg = require('../package.json');