-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapiserver.js
135 lines (117 loc) · 2.9 KB
/
apiserver.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
'use strict';
import async from 'async';
import lodash from 'lodash';
import express from 'express';
import bunyan from 'bunyan';
import redisModule from 'redis';
const log = bunyan.createLogger({name: 'blogdemo:apiserver'});
const app = express();
const redisClient = redisModule.createClient();
const marked = require('marked');
redisClient.on('error', err => {
log.error('error', err);
});
global.log = log;
global.redisClient = redisClient;
function handleError(res, error) {
log.error('error', error);
if (error instanceof Error) {
log.error('error stack', error.stack);
}
res.status(500).send(error);
}
function getHelp(req, res) {
try {
res.set('Content-Type', "text/html")
fs.readFile('README.md', function (err, content) {
if (content) {
res.send(marked(content.toString()));
} else {
res.send('no help');
}
});
} catch (error) {
handleError(res, error);
}
}
function appLogger(req, res, next) {
log.debug('app', req.url);
next();
}
function retrievePost(id, callback) {
redisClient.hgetall('post:table:' + id, callback);
}
function retrievePosts(ids, callback) {
async.map(ids, (id, asyncCallback) => {
redisClient.hgetall('post:table:' + id, asyncCallback);
}, (err, posts) => {
if (err) {
callback(err);
} else {
callback(null, lodash.map(posts, (post, index) => {
return {
id: ids[index],
title: post.title
}
}));
}
});
}
function getPostsAll(req, res) {
redisClient.smembers('post:set', (err, ids) => {
sendPosts(res, err, ids);
});
}
function getPosts(req, res) {
if (!req.query.limit) {
req.query.limit = 10;
}
if (req.query.q === 'sorted') {
getPostsSorted(req, res);
} else {
getPostsFeed(req, res);
}
}
function getPostsSorted(req, res) {
redisClient.zrange('post:sorted:published',
0, req.query.limit, (err, ids) => {
sendPosts(res, err, ids);
});
}
function getPostsFeed(req, res) {
redisClient.lrange('post:list',
0, req.query.limit, (err, ids) => {
sendPosts(res, err, ids);
});
}
function sendPosts(res, err, ids) {
if (err) {
res.status(500).send(err);
} else {
retrievePosts(ids, (err, posts) => {
if (err) {
res.status(500).send(err.toString());
} else {
res.json(posts);
}
});
}
}
function start() {
app.use(appLogger);
app.get('/help', getHelp);
app.get('/post/:id', getPostId);
app.get('/posts', getPosts);
app.listen(process.env.API_PORT);
log.info('started', {port: process.env.API_PORT});
}
function getPostId(req, res) {
redisClient.hgetall('post:table:' + req.params.id, (err, post) => {
if (err) {
res.status(500).send(err);
} else {
res.json(post);
}
});
}
start();