-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
96 lines (84 loc) · 2.66 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const http = require('http')
const express = require('express')
const path = require('path')
const fs = require('fs')
const marked = require('marked')
const info = require('./info')
const app = express()
const rp = require('request-promise')
app.set('view engine', 'ejs') // set up ejs for templating
app.use('/', express.static(path.join(__dirname, 'static'))) // statics
// home
app.get('/', function(req, res) {
// res.render('pages/index', req.params)
rp(
'https://raw.githubusercontent.com/DistributedObjectProtocol/dop/master/README.md'
).then(htmlString => {
req.params.content = marked(htmlString)
res.render('pages/index-markdown', req.params)
})
})
// redirects
app.get('/guide/javascript', function(req, res, next) {
res.redirect('/guide/javascript/patches')
})
app.get('/api/javascript', function(req, res, next) {
res.redirect('/api/javascript/createnode')
})
// examples
app.get('/examples/javascript', function(req, res, next) {
res.render('pages/examples')
})
// docs
app.get('/:type/:language/:doc', function(req, res) {
req.params.language = req.params.language.toLowerCase()
req.params.type = req.params.type.toLowerCase()
// req.params.doc = req.params.doc.toLowerCase()
var filepath = path.join(
__dirname,
'docs/' +
req.params.type +
'/' +
req.params.language +
'/' +
req.params.doc +
'.md'
)
if (fs.existsSync(filepath)) {
var content = fs.readFileSync(filepath, 'utf8')
var h1s = (/^# ([a-zA-Z0-9 .]+)/gm).exec(content)
req.params.title = 'Distributed Object Protocol'
if (h1s && h1s[1]) req.params.title = h1s[1] + ' - ' + req.params.title
req.params.info = info[req.params.language]
req.params.content = marked(content)
req.params.sidebar =
req.params.type === 'transports'
? '../partials/sidebar-transports'
: '../partials/sidebar-' +
req.params.type +
'-' +
req.params.language
res.render('pages/docs', req.params)
} else {
console.log(
'404',
'/' +
req.params.type +
'/' +
req.params.language +
'/' +
req.params.doc
)
res.render('pages/404')
}
})
// any other
app.get('/*', function(req, res) {
console.log('404', '/' + req.params[0])
res.render('pages/404')
})
var port = 4444
var expressServer = http.createServer(app)
expressServer.listen(port, function() {
console.log('http://localhost:' + port)
})