-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.js
216 lines (198 loc) · 4.71 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
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
"use strict";
/*
* Google drive storage for ghost blog
* @author : Robin C Samuel <[email protected]> http://robinz.in
* @updated : 10th April 2022
*
*/
const StorageBase = require("ghost-storage-base");
const fs = require("fs");
const { google } = require("googleapis");
const drive = google.drive("v3");
var auth = config => {
var jwtClient = new google.auth.JWT(
config.key.client_email,
null,
config.key.private_key,
['https://www.googleapis.com/auth/drive'],
null
);
return new Promise((resolve, reject) => {
jwtClient.authorize(err => {
if (err) {
reject(err);
}
resolve(jwtClient);
});
});
}
var upload = (client, file) => {
return new Promise((resolve, reject) => {
drive.files.create({
auth: client,
resource: {
name: file.name,
mimeType: file.type
},
media: {
mimeType: file.type,
body: fs.createReadStream(file.path)
},
fields: 'id, fileExtension'
}, (err, uploadedFile) => {
if (err) {
reject(err);
}
// Promise is resolved with the result of create call
resolve(uploadedFile);
});
});
}
var setPermissions = (client, data) => {
return new Promise((resolve, reject) => {
drive.permissions.create({
auth: client,
fileId: data.id,
supportsAllDrives: true,
supportsTeamDrives: true,
resource: {
'type': 'anyone',
'role': 'reader',
},
fields: 'id',
}, function (err, res) {
if (err) {
console.error(err);
reject(err);
}
resolve(res);
});
});
}
var get = (client, fileId, callback) => {
drive.files.get({
auth: client,
fileId: fileId,
alt: 'media'
}, { responseType: "stream" },
function (error, response) {
callback(error, response);
});
}
var remove = (client, file) => {
return new Promise(function (resolve, reject) {
drive.files.delete({
auth: client,
fileId: file
},
function (err, data) {
if (err) {
console.error(err);
reject(err);
}
resolve();
});
});
}
class ghostGoogleDrive extends StorageBase {
constructor(config) {
super();
this.config = config;
}
/**
* Saves the image to storage (the file system)
* - image is the express image object
* - returns a promise which ultimately returns the full url to the uploaded image
*
* @param image
* @param targetDir
* @returns {*}
*/
save(file, targetDir) {
return new Promise((resolve, reject) => {
auth(this.config)
.then(client => {
upload(client, file)
.then(resp => {
setPermissions(client, resp.data)
.then(res => {
resolve('/content/images/' + resp.data.id + '.' + resp.data.fileExtension);
});
});
});
});
}
/**
* checks for existance of file (handle 404's proper)
* @param {*} fileName
* @param {*} targetDir
* @returns Promise.<*>
*/
exists(fileName, targetDir) {
return new Promise((resolve, reject) => {
auth(this.config)
.then(client => {
get(client, fileName, (error, response) => {
if (error) {
console.error(fileName, " not found");
resolve(false);
}
resolve(true);
})
});
});
}
/**
* TODO: implement 404 functionality
* @returns {serveStaticContent}
*/
serve() {
const _this = this;
return function serveContent(req, res, next) {
// get the file id from url
var fileId = req.path.replace('/', '').split('.')[0];
auth(_this.config).then(client => {
get(client, fileId, (err, resp) => {
if (err) {
console.error("fileId: " + fileId, "err: " + err);
return next();
}
resp.data.pipe(res);
});
});
}
}
/**
* @returns {Promise.<*>}
*/
delete() {
return function deleteContent(req, res, next) {
var fileId = req.path.replace('/', '').split('.')[0];
auth(this.config)
.then(client => {
remove(client, fileId)
});
};
}
/**
* Reads bytes from disk for a target image
* - path of target image (without content path!)
*
* @param options
*/
read(options) {
var fileId = options.path.replace('/', '').split('.')[0];
return new Promise((resolve, reject) => {
auth(this.config)
.then(client => {
get(client, fileId, (error, response) => {
if (error) {
reject(error);
}
resolve(response);
});
});
});
}
}
module.exports = ghostGoogleDrive;