forked from jaredly/hexo-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.js
426 lines (382 loc) · 12.4 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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
var path = require('path')
var fs = require('hexo-fs')
var yml = require('js-yaml')
var deepAssign = require('deep-assign')
var extend = require('extend')
var updateAny = require('./update')
, updatePage = updateAny.bind(null, 'Page')
, update = updateAny.bind(null, 'Post')
, deploy = require('./deploy')
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 tagsCategoriesAndMetadata() {
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,
metadata: Object.keys(hexo.config.metadata || {})
}
}
// reads admin panel settings from _admin-config.yml
// or writes it if it does not exist
function getSettings() {
var path = hexo.base_dir + '_admin-config.yml'
if (!fs.existsSync(path)) {
hexo.log.d('admin config not found, creating one')
fs.writeFile(hexo.base_dir+'_admin-config.yml', '')
return {}
} else {
var settings = yml.safeLoad(fs.readFileSync(path))
if (!settings) return {}
return settings
}
}
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)
}
function rename(id, body, res) {
var model = 'Post'
var post = hexo.model('Post').get(id)
if (!post) {
model = 'Page'
post = hexo.model('Page').get(id)
if (!post) return res.send(404, "Post not found")
}
// remember old path w/o index.md
var oldPath = post.full_source
oldPath = oldPath.slice(0, oldPath.indexOf('index.md'))
updateAny(model, id, {source: body.filename}, function (err, post) {
if (err) {
return res.send(400, err);
}
hexo.log.d(`renamed ${model.toLowerCase()} to ${body.filename}`)
// remove old folder if empty
if (model === 'Page' && fs.existsSync(oldPath)) {
if (fs.readdirSync(oldPath).length === 0) {
fs.rmdirSync(oldPath)
hexo.log.d('removed old page\'s empty directory')
}
}
res.done(addIsDraft(post))
}, hexo)
}
var use = function (path, fn) {
app.use(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-categories-and-metadata', function (req, res) {
res.done(tagsCategoriesAndMetadata())
});
use('settings/list', function (req, res) {
res.done(getSettings())
});
use('settings/set', function (req, res, next) {
if (req.method !== 'POST') return next()
if (!req.body.name) {
console.log('no name')
hexo.log.d('no name')
return res.send(400, 'No name given')
}
// value is capable of being false
if (typeof req.body.value === 'undefined') {
console.log('no value')
hexo.log.d('no value')
return res.send(400, 'No value given')
}
var name = req.body.name
var value = req.body.value
// no addOptions means we just want to set a single value in the admin options
// usually for text-based option setting
var addedOptsExist = !!req.body.addedOptions
settings = getSettings()
// create options section if it doesn't exist, ie. first time changing settings
if (!settings.options) {
settings.options = {}
}
settings.options[name] = value
var addedOptions = addedOptsExist ? req.body.addedOptions : 'no additional options'
if (addedOptsExist) {
settings = deepAssign(settings, addedOptions)
}
hexo.log.d('set', name, '=', value, 'with', JSON.stringify(addedOptions))
fs.writeFileSync(hexo.base_dir + '_admin-config.yml', yml.safeDump(settings))
res.done({
updated: 'Successfully updated ' + name + ' = ' + value,
settings: settings
})
});
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 (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)
}
if (last === 'rename') {
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),
tagsCategoriesAndMetadata: tagsCategoriesAndMetadata()
})
}, 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');
}
var postParameters = {title: req.body.title, layout: 'draft', date: new Date(), author: hexo.config.author};
extend(postParameters, hexo.config.metadata || {});
hexo.post.create(postParameters)
.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.replace(/\\/g, '\/')})
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)
}
if (last === 'rename') {
return rename(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),
tagsCategoriesAndMetadata: tagsCategoriesAndMetadata()
})
}, hexo);
});
use('images/upload', function (req, res, next) {
hexo.log.d('uploading image')
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 settings = getSettings()
var imagePath = '/images'
var imagePrefix = 'pasted-'
var askImageFilename = false
var overwriteImages = false
// check for image settings and set them if they exist
if (settings.options) {
askImageFilename = !!settings.options.askImageFilename
overwriteImages = !!settings.options.overwriteImages
imagePath = settings.options.imagePath ? settings.options.imagePath : imagePath
imagePrefix = settings.options.imagePrefix ? settings.options.imagePrefix : imagePrefix
}
var msg = 'upload successful'
var filename = imagePrefix + i +'.png'
var i = 0
while (fs.existsSync(path.join(hexo.source_dir, imagePath, filename))) {
i += 1
}
if (req.body.filename) {
var givenFilename = req.body.filename
// check for png ending, add it if not there
var index = givenFilename.toLowerCase().indexOf('.png')
if (index < 0 || index != givenFilename.length - 4) {
givenFilename += '.png'
}
hexo.log.d('trying custom filename', givenFilename)
if (fs.existsSync(path.join(hexo.source_dir, imagePath, givenFilename))){
if (overwriteImages) {
hexo.log.d('file already exists, overwriting')
msg = 'overwrote existing file'
filename = givenFilename
} else {
hexo.log.d('file already exists, using', filename)
msg = 'filename already exists, renamed'
}
} else {
filename = givenFilename
}
}
filename = path.join(imagePath, filename)
var outpath = path.join(hexo.source_dir, filename)
var dataURI = req.body.data.slice('data:image/png;base64,'.length)
var buf = new Buffer(dataURI, 'base64')
hexo.log.d(`saving image to ${outpath}`)
fs.writeFile(outpath, buf, function (err) {
if (err) {
console.log(err)
}
var imageSrc = path.join(hexo.config.root + filename).replace(/\\/g, '/')
hexo.source.process().then(function () {
res.done({
src: imageSrc,
msg: msg
})
});
})
});
use('deploy', function(req, res, next) {
if (req.method !== 'POST') return next()
if (!hexo.config.admin || !hexo.config.admin.deployCommand) {
return res.done({error: 'Config value "admin.deployCommand" not found'});
}
try {
deploy(hexo.config.admin.deployCommand, req.body.message, function(err, result) {
console.log('res', err, result);
if (err) {
return res.done({error: err.message || err})
}
res.done(result);
});
} catch (e) {
console.log('EEE', e);
res.done({error: e.message})
}
});
}