forked from baldricloth/gulp-rev-append-all
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
62 lines (57 loc) · 2.42 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
const fs = require('fs');
const path = require('path');
const crypto = require('crypto');
const { Buffer } = require('buffer');
const map = require('event-stream').map;
const { PluginError } = require('gulp-util');
const FILE_DECL = /(templateUrl\:\x20*|href=|src=|url\()(['|"])([^\s>"']+?)\2/gi;
const FILE_DECL_SRCSET = /srcset=['"](?:([^"'\s,]+)\s*(?:\s+\d+[wx])(?:,\s*)?)+["']/gi;
function getDependencyPath(pathString, file, isNgRoute) {
const normPath = path.normalize(pathString);
return normPath.startsWith(path.sep) ? path.join(file.base, normPath) : path.resolve(path.dirname(file.path), isNgRoute ? '../' + normPath : normPath)
}
function getHexCode(dependencyPath, length) {
try {
const data = fs.readFileSync(dependencyPath);
const hash = crypto.createHash('md5');
hash.update(data.toString(), 'utf8');
return hash.digest('hex').slice(0, length);
} catch (error) {
return '';
}
}
const revPlugin = function revPlugin(options) {
options = options || {};
options.length = options.length || 32;
return map(function (file, cb) {
if (!file) {
throw new PluginError('gulp-rev-append', 'Missing file option for gulp-rev-append.');
}
if (!file.contents) {
throw new PluginError('gulp-rev-append', 'Missing file.contents required for modifying files using gulp-rev-append.');
}
const isNgRoute = file.path.includes('/app.js');
const contents = file.contents.toString().replace(FILE_DECL, (txt, attr, quote, pathString) => {
const dependencyPath = getDependencyPath(pathString, file, isNgRoute);
const code = getHexCode(dependencyPath, options.length);
return code ? `${attr}${quote}${pathString}?v=${code}${quote}` : txt;
}).replace(FILE_DECL_SRCSET, (attrTxt) => {
return 'srcset="' + attrTxt.slice('srcset="'.length, -1).trim().split(/\x20*,\x20*/).map((srcTxt) => {
let [pathString, descriptor] = srcTxt.trim().split(/\x20+/);
pathString = pathString.trim();
descriptor = descriptor.trim();
if (pathString && descriptor) {
const dependencyPath = getDependencyPath(pathString, file, isNgRoute);
const code = getHexCode(dependencyPath, options.length);
if (code) {
return `${pathString}?v=${code} ${descriptor}`;
}
}
return srcTxt;
}).join(', ') + '"';
});
file.contents = new Buffer(contents);
cb(null, file);
});
};
module.exports = revPlugin;