@rpcbase/server 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/client_router.js +32 -25
- package/package.json +1 -1
package/client/client_router.js
CHANGED
|
@@ -5,6 +5,11 @@ const glob = require("glob")
|
|
|
5
5
|
|
|
6
6
|
const src_path = path.join(process.cwd(), "./src/")
|
|
7
7
|
const build_dir = path.join(process.cwd(), "build/")
|
|
8
|
+
const client_build_dir = path.join(build_dir, "./client")
|
|
9
|
+
const index_file_buffer = fs.readFileSync(path.join(client_build_dir, "./index.html"))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
// TODO: add build time static assets compression
|
|
8
13
|
|
|
9
14
|
|
|
10
15
|
const async_wrapper = fn => (req, res, next) => {
|
|
@@ -12,36 +17,38 @@ const async_wrapper = fn => (req, res, next) => {
|
|
|
12
17
|
.catch(next)
|
|
13
18
|
}
|
|
14
19
|
|
|
20
|
+
const get_client_routes = () => {
|
|
21
|
+
const client_files = glob.sync(path.join(client_build_dir, "./**/*"))
|
|
22
|
+
const routes = client_files
|
|
23
|
+
.filter((f) => {
|
|
24
|
+
const stat = fs.statSync(f)
|
|
25
|
+
return !stat.isDirectory()
|
|
26
|
+
})
|
|
27
|
+
.map((f) => `/${path.relative(client_build_dir, f)}`)
|
|
28
|
+
return routes
|
|
29
|
+
}
|
|
30
|
+
|
|
15
31
|
|
|
16
32
|
const client_router = (app) => {
|
|
33
|
+
const client_routes = get_client_routes()
|
|
17
34
|
|
|
18
35
|
app.get("*", async_wrapper(async(req, res, next) => {
|
|
19
|
-
|
|
20
|
-
|
|
36
|
+
const full_path = req.baseUrl + req.path
|
|
37
|
+
|
|
38
|
+
if (full_path.startsWith("/api/") || full_path.startsWith("/rpc/")) {
|
|
39
|
+
return next()
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
if (client_routes.indexOf(full_path) > -1) {
|
|
43
|
+
const file_path = path.join(client_build_dir, full_path)
|
|
44
|
+
return res.sendFile(file_path)
|
|
45
|
+
} else {
|
|
46
|
+
res.writeHead(200, {
|
|
47
|
+
"Content-Type": "text/html"
|
|
48
|
+
})
|
|
49
|
+
res.end(index_file_buffer)
|
|
50
|
+
}
|
|
21
51
|
}))
|
|
22
|
-
|
|
23
|
-
// const rpc_routes = glob.sync(path.join(build_dir, "./rpc/*"))
|
|
24
|
-
//
|
|
25
|
-
// rpc_routes.forEach((file_path) => {
|
|
26
|
-
// const basename = path.basename(file_path)
|
|
27
|
-
// const route_path = basename.replace(/__slash__/g, "/")
|
|
28
|
-
// const module_path = path.join(src_path, `${route_path}.js`)
|
|
29
|
-
//
|
|
30
|
-
// // if module not found, remove created route file
|
|
31
|
-
// if (!fs.existsSync(module_path)) {
|
|
32
|
-
// fs.unlinkSync(file_path)
|
|
33
|
-
// console.log("removed inexistant rpc route", basename, "with module path", module_path)
|
|
34
|
-
// }
|
|
35
|
-
//
|
|
36
|
-
// const rpc_fn = require(module_path)
|
|
37
|
-
// app.post(`/rpc/${route_path}`, async_wrapper(async(req, res) => {
|
|
38
|
-
// // console.log("GOT REQ", req.body)
|
|
39
|
-
// const result = await rpc_fn(req.body, req)
|
|
40
|
-
// // console.log("rpc", route_path, result)
|
|
41
|
-
// res.json(result)
|
|
42
|
-
// }))
|
|
43
|
-
// })
|
|
44
|
-
|
|
45
52
|
}
|
|
46
53
|
|
|
47
54
|
module.exports = client_router
|