forked from jaredly/hexo-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.js
289 lines (261 loc) · 7.76 KB
/
api.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
var path = require('path')
var fs = require('fs')
var urljoin = require('url-join');
var updateAny = require('./update')
, updatePage = updateAny.bind(null, 'Page')
, update = updateAny.bind(null, 'Post')
, deploy = require('./deploy')
, generate = require('./generate')
module.exports = function (app, hexo) {
function addIsDraft(post) {
post.isDraft = post.source.indexOf('_draft') === 0
post.isDiscarded = post.source.indexOf('_discarded') === 0
return post
}
function tagsAndCategories() {
var cats = {}
, tags = {}
hexo.model('Category').forEach(function (cat) {
cats[cat._id] = cat.name
})
hexo.model('Tag').forEach(function (tag) {
tags[tag._id] = tag.name
})
return {
categories: cats,
tags: tags
}
}
function remove(id, body, res) {
var post = hexo.model('Post').get(id)
if (!post) return res.send(404, "Post not found")
var newSource = '_discarded/' + post.source.slice('_drafts/'.length)
update(id, {source: newSource}, function (err, post) {
if (err) {
return res.send(400, err);
}
res.done(addIsDraft(post))
}, hexo)
}
function publish(id, body, res) {
var post = hexo.model('Post').get(id)
if (!post) return res.send(404, "Post not found")
var newSource = '_posts/' + post.source.slice('_drafts/'.length)
update(id, {source: newSource}, function (err, post) {
if (err) {
return res.send(400, err);
}
res.done(addIsDraft(post))
}, hexo)
}
function unpublish(id, body, res) {
var post = hexo.model('Post').get(id)
if (!post) return res.send(404, "Post not found")
var newSource = '_drafts/' + post.source.slice('_posts/'.length)
update(id, {source: newSource}, function (err, post) {
if (err) {
return res.send(400, err);
}
res.done(addIsDraft(post))
}, hexo)
}
var use = function (path, fn) {
app.use(urljoin(hexo.config.root, 'admin/api/', path), function (req, res) {
var done = function (val) {
if (!val) {
res.statusCode = 204
return res.end('');
}
res.setHeader('Content-type', 'application/json')
res.end(JSON.stringify(val, function(k, v) {
// tags and cats have posts reference resulting in circular json..
if ( k == 'tags' || k == 'categories' ) {
// convert object to simple array
return v.toArray ? v.toArray().map(function(obj) {
return obj.name
}) : v
}
return v;
}))
}
res.done = done
res.send = function (num, data) {
res.statusCode = num
res.end(data)
}
fn(req, res)
})
}
use('tags-and-categories', function (req, res) {
res.done(tagsAndCategories())
});
use('pages/list', function (req, res) {
var page = hexo.model('Page')
res.done(page.toArray().map(addIsDraft));
});
use('pages/new', function (req, res, next) {
if (req.method !== 'POST') return next()
if (!req.body) {
return res.send(400, 'No page body given');
}
if (!req.body.title) {
return res.send(400, 'No title given');
}
hexo.post.create({title: req.body.title, layout: 'page', date: new Date()})
.error(function(err) {
console.error(err, err.stack)
return res.send(500, 'Failed to create page')
})
.then(function (err, file) {
var source = file.path.slice(hexo.source_dir.length)
hexo.source.process([source]).then(function () {
var page = hexo.model('Page').findOne({source: source})
res.done(addIsDraft(page));
});
});
});
use('pages/', function (req, res, next) {
var url = req.url
console.log('in pages', url)
if (url[url.length - 1] === '/') {
url = url.slice(0, -1)
}
var parts = url.split('/')
var last = parts[parts.length-1]
// not currently used?
if (last === 'remove') {
return remove(parts[parts.length-2], req.body, res)
}
var id = last
if (id === 'pages' || !id) return next()
if (req.method === 'GET') {
var page = hexo.model('Page').get(id)
if (!page) return next()
return res.done(addIsDraft(page))
}
if (!req.body) {
return res.send(400, 'No page body given');
}
updatePage(id, req.body, function (err, page) {
if (err) {
return res.send(400, err);
}
res.done({
page: addIsDraft(page),
tagsAndCategories: tagsAndCategories()
})
}, hexo);
});
use('posts/list', function (req, res) {
var post = hexo.model('Post')
res.done(post.toArray().map(addIsDraft));
});
use('posts/new', function (req, res, next) {
if (req.method !== 'POST') return next()
if (!req.body) {
return res.send(400, 'No post body given');
}
if (!req.body.title) {
return res.send(400, 'No title given');
}
hexo.post.create({title: req.body.title, layout: 'draft', date: new Date()})
.error(function(err) {
console.error(err, err.stack)
return res.send(500, 'Failed to create post')
})
.then(function (file) {
var source = file.path.slice(hexo.source_dir.length)
hexo.source.process([source]).then(function () {
var post = hexo.model('Post').findOne({source: source})
res.done(addIsDraft(post));
});
});
});
use('posts/', function (req, res, next) {
var url = req.url
if (url[url.length - 1] === '/') {
url = url.slice(0, -1)
}
var parts = url.split('/')
var last = parts[parts.length-1]
if (last === 'publish') {
return publish(parts[parts.length-2], req.body, res)
}
if (last === 'unpublish') {
return unpublish(parts[parts.length-2], req.body, res)
}
if (last === 'remove') {
return remove(parts[parts.length-2], req.body, res)
}
var id = last
if (id === 'posts' || !id) return next()
if (req.method === 'GET') {
var post = hexo.model('Post').get(id)
if (!post) return next()
return res.done(addIsDraft(post))
}
if (!req.body) {
return res.send(400, 'No post body given');
}
update(id, req.body, function (err, post) {
if (err) {
return res.send(400, err);
}
res.done({
post: addIsDraft(post),
tagsAndCategories: tagsAndCategories()
})
}, hexo);
});
use('images/upload', function (req, res, next) {
if (req.method !== 'POST') return next()
if (!req.body) {
return res.send(400, 'No post body given');
}
if (!req.body.data) {
return res.send(400, 'No data given');
}
var i = 0
while (fs.existsSync(hexo.source_dir + 'images/pasted-' + i + '.png')) {
i +=1
}
var filename = 'images/pasted-' + i + '.png'
var outpath = hexo.source_dir + filename
var dataURI = req.body.data.slice('data:image/png;base64,'.length)
var buf = new Buffer(dataURI, 'base64')
fs.writeFile(outpath, buf, function (err) {
if (err) {
console.log(err)
}
hexo.source.process([filename]).then(function () {
res.done('/' + filename)
});
})
});
use('generate', function(req, res, next) {
if (req.method !== 'POST') return next()
try {
generate(hexo.config, function(err, result) {
if (err) {
return res.done({error: err.message || err})
}
res.done(result)
});
} catch (e) {
res.done({error: e.message})
}
});
use('deploy', function(req, res, next) {
if (req.method !== 'POST') return next()
try {
deploy(hexo.config, req.body.message, function(err, result) {
if (err) {
return res.done({error: err.message || err})
}
res.done(result);
});
} catch (e) {
res.done({error: e.message})
}
});
}