forked from sindresorhus/gulp-rev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
159 lines (125 loc) · 3.59 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
'use strict';
const path = require('path');
const gutil = require('gulp-util');
const through = require('through2');
const vinylFile = require('vinyl-file');
const revHash = require('rev-hash');
const revPath = require('rev-path');
const sortKeys = require('sort-keys');
const modifyFilename = require('modify-filename');
function relPath(base, filePath) {
if (filePath.indexOf(base) !== 0) {
return filePath.replace(/\\/g, '/');
}
const newPath = filePath.slice(base.length).replace(/\\/g, '/');
if (newPath[0] === '/') {
return newPath.slice(1);
}
return newPath;
}
function transformFilename(file) {
// save the old path for later
file.revOrigPath = file.path;
file.revOrigBase = file.base;
file.revHash = revHash(file.contents);
file.path = modifyFilename(file.path, (filename, extension) => {
const extIndex = filename.indexOf('.');
filename = extIndex === -1 ?
revPath(filename, file.revHash) :
revPath(filename.slice(0, extIndex), file.revHash) + filename.slice(extIndex);
return filename + extension;
});
}
const getManifestFile = opts => vinylFile.read(opts.path, opts).catch(err => {
if (err.code === 'ENOENT') {
return new gutil.File(opts);
}
throw err;
});
const plugin = () => {
const sourcemaps = [];
const pathMap = {};
return through.obj((file, enc, cb) => {
if (file.isNull()) {
cb(null, file);
return;
}
if (file.isStream()) {
cb(new gutil.PluginError('gulp-rev', 'Streaming not supported'));
return;
}
// this is a sourcemap, hold until the end
if (path.extname(file.path) === '.map') {
sourcemaps.push(file);
cb();
return;
}
const oldPath = file.path;
transformFilename(file);
pathMap[oldPath] = file.revHash;
cb(null, file);
}, function (cb) {
sourcemaps.forEach(file => {
let reverseFilename;
// attempt to parse the sourcemap's JSON to get the reverse filename
try {
reverseFilename = JSON.parse(file.contents.toString()).file;
} catch (err) {}
if (!reverseFilename) {
reverseFilename = path.relative(path.dirname(file.path), path.basename(file.path, '.map'));
}
if (pathMap[reverseFilename]) {
// save the old path for later
file.revOrigPath = file.path;
file.revOrigBase = file.base;
const hash = pathMap[reverseFilename];
file.path = revPath(file.path.replace(/\.map$/, ''), hash) + '.map';
} else {
transformFilename(file);
}
this.push(file);
});
cb();
});
};
plugin.manifest = (pth, opts) => {
if (typeof pth === 'string') {
pth = {path: pth};
}
opts = Object.assign({
path: 'rev-manifest.json',
merge: false,
transformer: JSON
}, opts, pth);
let manifest = {};
return through.obj((file, enc, cb) => {
// ignore all non-rev'd files
if (!file.path || !file.revOrigPath) {
cb();
return;
}
const revisionedFile = relPath(file.base, file.path);
const originalFile = path.join(path.dirname(revisionedFile), path.basename(file.revOrigPath)).replace(/\\/g, '/');
manifest[originalFile] = revisionedFile;
cb();
}, function (cb) {
// no need to write a manifest file if there's nothing to manifest
if (Object.keys(manifest).length === 0) {
cb();
return;
}
getManifestFile(opts).then(manifestFile => {
if (opts.merge && !manifestFile.isNull()) {
let oldManifest = {};
try {
oldManifest = opts.transformer.parse(manifestFile.contents.toString());
} catch (err) {}
manifest = Object.assign(oldManifest, manifest);
}
manifestFile.contents = new Buffer(opts.transformer.stringify(sortKeys(manifest), null, ' '));
this.push(manifestFile);
cb();
}).catch(cb);
});
};
module.exports = plugin;