-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathimageup.js
More file actions
79 lines (75 loc) · 1.85 KB
/
imageup.js
File metadata and controls
79 lines (75 loc) · 1.85 KB
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
/**
* An interface for Image Up microservice.
*
* @see https://github.com/LevInteractive/imageup/
*
* @module utils/imageup
*/
const request = require("request");
const config = require("config");
const fs = require("fs");
const IU_SERVER = `${config.imageup.host}:${config.imageup.port}`;
/**
* Send a photo to imageup. You'll most likely want to use a data stream so the
* image is never stored on disk (or if it is, it's only temporary).
*
* @async
* @param {string|object} imageSrc A path to the image on disk OR a stream.
* @param {array} sizes
* @param {string} sizes.name A url friendly name.
* @param {int} sizes.width
* @param {int} sizes.height
* @param {boolean} sizes.fit If true, will crop to size.
* @return {array}
*/
exports.upload = function upload(imageSrc, sizes) {
return new Promise((resolve, reject) => {
console.info(`Uploading image via image up: ${imageSrc}`);
request.post(
IU_SERVER,
{
formData: {
sizes: JSON.stringify(sizes),
file:
typeof imageSrc === "string"
? fs.createReadStream(imageSrc)
: imageSrc
}
},
(err, res, body) => {
if (err) {
reject(err);
} else {
resolve(JSON.parse(body));
}
}
);
});
};
/**
* Remove any number of files from the cloud.
*
* @async
* @param {array} fileNames An array of files to remove.
* @return {object}
*/
exports.remove = function remove(fileNames) {
return new Promise((resolve, reject) => {
console.info(`Removing image(s) ${fileNames}`);
request.del(
IU_SERVER,
{
formData: {
files: fileNames.join(",")
}
},
(err, res, body) => {
if (err) {
reject(err);
} else {
resolve(JSON.parse(body));
}
}
);
});
};