-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
45 lines (38 loc) · 1.53 KB
/
server.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
const express = require('express');
const app = express();
const config = require('./config.json');
const path = require('path');
const S = require('string');
const DiscourseService = require('./services/discourse');
const discourse = new DiscourseService(config.discourse.base_uri, config.discourse.announcement_category_id);
app.set('view engine', 'pug');
app.use('/static', express.static(path.join(__dirname, 'static')));
app.get('/', function(req, res) {
discourse.getAnnouncementThreads().then(function(listing) {
const topics = listing.topic_list.topics;
const latestTwo = (topics.length <= 2 ? topics : topics.slice(0, 2));
// fetch these topics
const promises = [];
latestTwo.forEach(function(topic) {
promises.push(discourse.getTopicById(topic.id));
});
return Promise.all(promises);
}).then(function(topics) {
// massage the response for rendering purposes
const topicsFound = topics.map(function(topic) {
return {
id: topic.id,
title: S(topic.title).truncate(32).s,
excerpt: S(topic.post_stream.posts[0].cooked).stripTags().truncate(200).s
};
});
return res.render('home', { announcements: topicsFound, discourse_base_uri: config.discourse.base_uri });
}).catch(function(err) {
console.error(err);
res.status(500).render('server_error');
});
});
app.use(function(req, res, next) {
res.status(404).render('not_found');
});
app.listen(8081);