-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathimage-cache.js
244 lines (212 loc) · 4.92 KB
/
image-cache.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
const Core = require('./lib/core');
const _ = require('underscore');
const path = require('path');
const fs = require('fs');
/**
* image-cache - Image Cache Async with Base64
* @author Ryan Aunur Rassyid <Indonesia><[email protected]>
*/
/** imageCache class
* @description imageCache extends from Core
*/
class imageCache extends Core {
compress() {
this.inlineCompress = true;
return this;
}
/** isCached
* @description Async function check is image on argument available on cache
*
* @param {String}
* @param {Function}
* @return Promise
*/
isCached(image, callback) {
if (_.isFunction(callback)) {
this.isCachedService(image, callback);
} else {
return new Promise((resolve, reject) => {
this.isCachedService(image, function(err, exists) {
if (err) reject(err);
resolve(exists);
});
});
}
}
/** isCachedSync
* @description check is image available on cached / already cached?
*
* @param {String} image
* @return {Boolean}
*/
isCachedSync(image) {
try {
fs.statSync(this.getFilePath(image));
} catch(e) {
if (this.equal(e.code, 'ENOENT')) {
return false;
}
}
return true;
}
/** get() ASYNC
* @description Get cached image from folder using same url
*
* @param {String|Array} image
* @return {Callback|Promise}
*/
get(image, callback) {
if (_.isFunction(callback)) {
this.getCacheService(image, callback);
} else {
return new Promise((resolve, reject) => {
this.getCacheService(image, function(err, results) {
if (err) reject(err);
resolve(results);
});
});
}
};
/** getSync() SYNC
* @description get image from cache
*
* @param {String|Array} image
* @return {Callback|Promise}
*/
getSync(image) {
try {
return this.readFileSync(image);
} catch(e) {
return e;
}
}
/** store() ASYNC
* @description store image as a cache
*
* @param {String|Array} images
* @return {Function|Promise}
*/
store(images, callback) {
if (_.isFunction(callback)) {
this.storeCacheService(images, callback);
} else {
return new Promise((resolve, reject) => {
this.storeCacheService(images, function(err, results) {
if (err) reject(err);
resolve(results);
});
});
}
}
/**
* @description check is image already on cache will be return as cache or is not available
* on cache folder then will be return as image (and cached)
*
* @param {String|Array} images
* @param {Function|Promise} callback
*/
fetch(images, callback) {
if (_.isFunction(callback)) {
this.fetchImagesService(images, callback);
} else {
return new Promise((resolve, reject) => {
this.fetchImagesService(images, function(err, results) {
if (err) reject(err);
resolve(results);
});
});
}
}
/**
* @description remove image from cache folder
*
* @param {Array|String} images
*/
remove(images) {
if (_.isFunction(callback)) {
this.removeCacheService(images, callback);
} else {
return new Promise((resolve, reject) => {
this.removeCacheService(images, function(err, results) {
if (err) reject(err);
resolve(results);
});
});
}
}
/**
* @description remove all cached image on Cache Directory
*
*/
flush() {
if (_.isFunction(callback)) {
this.flushCacheService(callback);
} else {
return new Promise((resolve, reject) => {
this.flushCacheService(function(err, results) {
if (err) reject(err);
resolve(results);
});
});
}
}
/**
* @description remove all cached image on Cache Directory Syncronius function
*
*/
flushSync() {
var files = fs.readdirSync(this.options.dir);
var deletedFiles = 0;
if (this.equal(files.length, 0)) {
throw new Error({
message: `ERR_EMPTY: ${this.options.dir} is empty folder`,
code: `ERR_EMPTY`
});
} else {
for (let $index in files) {
let file = files[$index];
if (this.equal(path.extname(file), this.options.extname)) {
try {
fs.unlinkSync(path.join(this.options.dir, file));
} catch (e) {
throw new Error(e);
} finally {
deletedFiles++;
}
}
}
return {
error: false,
deleted: deletedFiles,
totalFiles: files.length,
dir: options.dir
}
}
}
on(event, callback) {
switch(event) {
case 'get':
if (_.isFunction(callback)) this.eventProvider.onGet = callback;
break;
case 'set':
if (_.isFunction(callback)) this.eventProvider.onSet = callback;
break;
case 'fetch':
if (_.isFunction(callback)) this.eventProvider.onFetch = callback;
break;
case 'remove':
if (_.isFunction(callback)) this.eventProvider.onRemove = callback;
break;
case 'flush':
if (_.isFunction(callback)) this.eventProvider.onFlush = callback;
break;
default:
throw new Error({
message: `ERR_EVENT: undefined event name '${event}'`,
code: `ERR_EVENT`
});
break;
}
}
}
module.exports = new imageCache;