-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
72 lines (63 loc) · 1.35 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
'use strict'
const Promise = require('bluebird')
const BaseAdapter = require('ghost-storage-base')
const smms = require('smms-cli')
class SmmsAdapter extends BaseAdapter {
constructor(options) {
super(options)
this.options = options || {}
}
/**
* Saves the image to storage (sm.ms)
* - image is the express image object
* - returns a promise which ultimately returns the full url to the uploaded image
*
* @param image
* @param targetDir
* @returns {Promise}
*/
save(image, targetDir) {
return new Promise((resolve, reject) => {
smms.upload(image.path)
.then(result => {
resolve(result.data.url)
})
.catch(error => {
reject(error)
})
})
}
/**
* @Overwrite
* Ghost requires this function to be defined
*/
exists(filename, targetDir) {
return new Promise((resolve, reject) => {
resolve(false)
})
}
/**
* @Overwrite
* Ghost requires this function to be defined
*/
serve() {
return (req, res, next) => {
next()
}
}
/**
* Not implemented.
* May be implemented later.
*
* @returns {Promise.<*>}
*/
delete() {
return Promise.reject('not implemented')
}
/**
* @Overwrite
* Absolute url are already used to link to the images
*/
read(options) {}
}
module.exports = SmmsAdapter