forked from joostdecock/remark-copy-linked-files
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
209 lines (180 loc) · 5.84 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
const cheerio = require('cheerio');
const Cp = require('cp-file');
const { default: ForEach } = require('apr-for-each');
const Reduce = require('apr-reduce');
const Intercept = require('apr-intercept');
const isRelativeUrl = require('is-relative-url');
const { readFile, exists } = require('mz/fs');
const { dirname, resolve, basename, extname, join, sep } = require('path');
const revHash = require('rev-hash');
const UniqBy = require('lodash.uniqby');
// https://github.com/syntax-tree/unist-util-map/blob/bb0567f651517b2d521af711d7376475b3d8446a/index.js
const map = async (tree, iteratee) => {
const bound = (node) => async (child, index) => {
return preorder(child, index, node);
};
const preorder = async (node, index, parent) => {
const [, newNode = {}] = await Intercept(iteratee(node, index, parent));
const { children = [] } = newNode || node;
return {
...node,
...newNode,
children: await Promise.all(children.map(bound(node))),
};
};
return preorder(tree, null, null);
};
const defaultUrlBuilder = ({ filename, staticPath }) => {
return resolve('/', staticPath, filename);
};
module.exports = (opts = {}) => {
const {
destinationDir,
sourceDir=false,
staticPath = '/',
ignoreFileExtensions = [],
buildUrl = defaultUrlBuilder,
selectors: customSelectors = [],
transformAsset,
} = opts;
return async (tree, { cwd, path: cPath, pathname: cPathname }) => {
const path = cPath || cPathname; // #121
const assets = [];
const handleUrl = async (url) => {
const platformNormalizedUrl = url.replace(/[\\/]/g, sep);
if (!isRelativeUrl(platformNormalizedUrl)) {
return;
}
const ext = extname(platformNormalizedUrl);
if (!ext || ignoreFileExtensions.includes(ext)) {
return;
}
const fullpath = resolve(
sourceDir ? sourceDir : cwd,
path ? dirname(path) : '',
platformNormalizedUrl,
);
if (!(await exists(fullpath))) {
return;
}
const rev = revHash(await readFile(fullpath));
const name = basename(fullpath, ext);
const filename = `${name}-${rev}${ext}`;
return {
fullpath,
filename,
url: buildUrl({
staticPath,
filename,
fullpath,
name,
rev,
}),
};
};
const handlers = {
html: async (node, { selectors: sels = [] } = {}) => {
let { value: newValue = '' } = node;
const $ = cheerio.load(newValue);
const selectors = [
['img[src]', 'src'],
['video source[src]', 'src'],
['video[src]', 'src'],
['audio source[src]', 'src'],
['audio[src]', 'src'],
['video[poster]', 'poster'],
['object param[value]', 'value'],
['a[href]', 'href'],
].concat(sels);
const urls = selectors
.concat(customSelectors)
.reduce((memo, [selector, attr]) => {
return memo.concat(
$(selector)
.toArray()
.map(({ attribs }) => attribs[attr]),
);
}, []);
await ForEach(urls, async (url) => {
const nUrl = await handleUrl(url);
const asset = transformAsset ? await transformAsset(nUrl) : nUrl;
if (!asset) {
return;
}
assets.push(asset);
const { url: newUrl } = asset;
newValue = newValue.replace(new RegExp(url, `g`), newUrl);
});
return Object.assign(node, {
value: newValue,
});
},
url: async (node) => {
const nUrl = await handleUrl(node.url);
const asset = transformAsset ? await transformAsset(nUrl) : nUrl;
assets.push(asset);
return Object.assign(node, {
url: asset ? asset.url || node.url : node.url,
});
},
link: (...args) => handlers.url(...args),
definition: (...args) => handlers.url(...args),
image: (...args) => handlers.url(...args),
jsx: (...args) => {
return handlers.html(...args, {
selectors: [
['[poster]', 'poster'],
['[src]', 'src'],
['[href]', 'href'],
],
});
},
mdxBlockElement: async (node) => {
const { attributes = [] } = node;
const selectors = ['poster', 'src', 'href', 'value'];
return Reduce(
attributes,
async (node, attr, atIndex) => {
const { name, value } = attr;
const { attributes = [] } = node;
const selector = selectors.find((selector) => {
return selector === name;
});
if (!selector) {
return node;
}
const nUrl = await handleUrl(value);
const asset = transformAsset ? await transformAsset(nUrl) : nUrl;
assets.push(asset);
return Object.assign(node, {
attributes: attributes.map((item, index) => {
return index === atIndex
? { ...attr, value: asset ? asset.url || value : value }
: item;
}),
});
},
node,
);
},
mdxSpanElement: (...args) => handlers.mdxBlockElement(...args),
mdxJsxFlowElement: (...args) => handlers.mdxBlockElement(...args),
mdxJsxTextElement: (...args) => handlers.mdxBlockElement(...args),
};
const newTree = await map(tree, async (node) => {
try {
return handlers[node.type] ? handlers[node.type](node) : node;
} catch (err) {
console.error(err);
return node;
}
});
await ForEach(
UniqBy(assets.filter(Boolean), 'filename'),
async ({ fullpath, filename }) => {
await Cp(fullpath, join(destinationDir, filename));
},
);
return newTree;
};
};