-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
279 lines (235 loc) · 9.34 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
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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
'use strict';
(function () {
const IFRAMES = {
'videopress': {
openTag: (videoId) => '<div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;"><iframe src="https://videopress.com/embed/' + videoId + '" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen scrolling="no">',
closeTag: () => '</iframe></div>'
},
'vimeo': {
openTag: (videoId) => '<div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;"><iframe src="https://player.vimeo.com/video/' + videoId + '?byline=0&badge=0&portrait=0&title=0" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen scrolling="no">',
closeTag: () => '</iframe></div>'
},
'vine': {
openTag: (videoId) => '<div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 100%;"><iframe src="https://vine.co/v/' + videoId + '/embed/simple" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen>',
closeTag: () => '</iframe></div>'
},
'wistia': {
openTag: (videoId) => '<div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;"><iframe src="https://fast.wistia.net/embed/iframe/' + videoId + '" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen scrolling="no" allow="autoplay; encrypted-media">',
closeTag: () => '</iframe></div>'
},
'youtube': {
openTag: (videoId) => '<div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;"><iframe src="https://www.youtube.com/embed/' + videoId + '?rel=0&showinfo=0" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen scrolling="no" allow="autoplay; encrypted-media">',
closeTag: () => '</iframe></div>'
},
'youtube-playlist': {
openTag: (playlistId) => '<div style="left: 0; width: 100%; height: 0; position: relative; padding-bottom: 56.2493%;"><iframe src="https://www.youtube.com/embed/videoseries?list=' + playlistId + '" style="border: 0; top: 0; left: 0; width: 100%; height: 100%; position: absolute;" allowfullscreen scrolling="no" allow="autoplay; encrypted-media">',
closeTag: () => '</iframe></div>'
}
};
function iframify(md, options) {
const originalLinkOpenRenderer = md.renderer.rules.link_open;
const originalLinkCloseRenderer = md.renderer.rules.link_close;
md.renderer.rules.link_open = (tokens, idx, options, env) => {
const href = tokens[idx].href;
const videoContext = parseVideoId(href);
if (videoContext) {
const iframe = IFRAMES[videoContext.service];
if (iframe) {
env.iframe_service = videoContext.service;
return iframe.openTag(videoContext.id);
}
}
return originalLinkOpenRenderer(tokens, idx, options, env);
};
md.renderer.rules.link_close = (tokens, idx, options, env) => {
if (env.iframe_service) {
const result = IFRAMES[env.iframe_service].closeTag();
env.iframe_service = null;
return result;
}
return originalLinkCloseRenderer(tokens, idx, options, env);
};
}
function parseVideoId(str) {
// remove surrounding whitespaces or linefeeds
str = str.trim();
// remove the '-nocookie' flag from youtube urls
str = str.replace('-nocookie', '');
// remove any leading `www.`
str = str.replace('/www.', '/');
// Try to handle google redirection uri
if (/\/\/google/.test(str)) {
// Find the redirection uri
const matches = str.match(/url=([^&]+)&/);
// Decode the found uri and replace current url string - continue with final link
if (matches) {
// Javascript can get encoded URI
str = decodeURIComponent(matches[1]);
}
}
if (/youtube|youtu\.be|i.ytimg\./.test(str)) {
const playlistId = youtubePlaylist(str);
if (playlistId) {
return {
id: playlistId,
service: 'youtube-playlist'
};
} else {
return {
id: youtube(str),
service: 'youtube'
};
}
} else if (/vimeo/.test(str)) {
return {
id: vimeo(str),
service: 'vimeo'
};
} else if (/vine/.test(str)) {
return {
id: vine(str),
service: 'vine'
};
} else if (/videopress/.test(str)) {
return {
id: videopress(str),
service: 'videopress'
};
} else if (/wistia\.com|wi\.st/.test(str)) {
const regex = /(?:wistia\.com|wi\.st)\/(?:medias|embed)\/(.*)$/;
const match = str.match(regex);
if (match && match[1]) {
return {
id: match[1],
service: 'wistia'
};
}
return null;
} else {
return null;
}
}
/**
* Get the vimeo id.
* @param {string} str - the url from which you want to extract the id
* @returns {string|undefined}
*/
function vimeo(str) {
if (str.indexOf('#') > -1) {
str = str.split('#')[0];
}
if (str.indexOf('?') > -1) {
str = str.split('?')[0];
}
let id;
if (/https?:\/\/vimeo\.com\/[0-9]+$|https?:\/\/player\.vimeo\.com\/video\/[0-9]+$|https?:\/\/vimeo\.com\/channels|groups|album/igm.test(str)) {
const arr = str.split('/');
if (arr && arr.length) {
id = arr.pop();
}
}
return id;
}
/**
* Get the vine id.
* @param {string} str - the url from which you want to extract the id
* @returns {string|undefined}
*/
function vine(str) {
const regex = /https:\/\/vine\.co\/v\/([a-zA-Z0-9]*)\/?/;
const matches = regex.exec(str);
return matches && matches[1];
}
/**
* Get the Youtube Video id.
* @param {string} str - the url from which you want to extract the id
* @returns {string|undefined}
*/
function youtube(str) {
// shortcode
const shortcode = /youtube:\/\/|https?:\/\/youtu\.be\//g;
if (shortcode.test(str)) {
const shortcodeid = str.split(shortcode)[1];
return stripParameters(shortcodeid);
}
// /v/ or /vi/
const inlinev = /\/v\/|\/vi\//g;
if (inlinev.test(str)) {
const inlineid = str.split(inlinev)[1];
return stripParameters(inlineid);
}
// v= or vi=
const parameterv = /v=|vi=/g;
if (parameterv.test(str)) {
const arr = str.split(parameterv);
return arr[1].split('&')[0];
}
// v= or vi=
const parameterwebp = /\/an_webp\//g;
if (parameterwebp.test(str)) {
const webp = str.split(parameterwebp)[1];
return stripParameters(webp);
}
// embed
const embedreg = /\/embed\//g;
if (embedreg.test(str)) {
const embedid = str.split(embedreg)[1];
return stripParameters(embedid);
}
// user
const userreg = /\/user\//g;
if (userreg.test(str)) {
const elements = str.split('/');
return stripParameters(elements.pop());
}
// attribution_link
const attrreg = /\/attribution_link\?.*v%3D([^%&]*)(%26|&|$)/;
if (attrreg.test(str)) {
return str.match(attrreg)[1];
}
}
function youtubePlaylist(str) {
const reg = new RegExp("[&?]list=([a-z0-9_-]+)", "i");
const match = reg.exec(str);
if (match && match[1].length > 0) {
return match[1];
}
return null;
}
/**
* Get the VideoPress id.
* @param {string} str - the url from which you want to extract the id
* @returns {string|undefined}
*/
function videopress(str) {
let idRegex;
if (str.indexOf('embed') > -1) {
idRegex = /embed\/(\w{8})/;
return str.match(idRegex)[1];
}
idRegex = /\/v\/(\w{8})/;
return str.match(idRegex)[1];
}
/**
* Strip away any parameters following `?` or `/`
* @param str
* @returns {*}
*/
function stripParameters(str) {
// Split parameters or split folder separator
if (str.indexOf('?') > -1) {
return str.split('?')[0];
} else if (str.indexOf('/') > -1) {
return str.split('/')[0];
}
return str;
}
if (typeof exports !== 'undefined') {
if (typeof module !== 'undefined' && module.exports) {
exports = module.exports = iframify;
}
exports.iframify = iframify;
} else {
window.iframify = iframify;
}
})();