Skip to content

Commit c010aed

Browse files
committed
Allow enabling/disabling embeds with http:// URLs
Default is disable
1 parent 9e2cab1 commit c010aed

6 files changed

+92
-2
lines changed

Changelog.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- Drop explicit support for Handlebars
44
- Instead support overriding of a built-in render function
5+
- Allow enabling/disabling embeds with `http://` URLs. Default is disable.
56

67
## 0.5.0
78

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -237,6 +237,12 @@ Boolean. Embed media in-place if true, or at some specified place if false.
237237

238238
Default: `true`.
239239

240+
#### isAllowedHttp
241+
242+
Boolean. When `true` embed media with `http://` schema in URLs. When `false` ignore and don't count as embeddable media.
243+
244+
Default: `false`.
245+
240246
#### isAllowedMimeType
241247

242248
Function. If specified, allows to decided basing on the MIME type, wheter to embed element or not. If not, all audio/video content is embedded. In a web browser you can use following code to embed only supported media type:

lib/index.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,17 @@ function isAllowedMimeType(parsed, options) {
9999
(!options.isAllowedMimeType || options.isAllowedMimeType([parsed.mimeType, parsed.mediaType]));
100100
}
101101

102+
function isAllowedSchema(parsed, options) {
103+
if (!options.isAllowedHttp && parsed.url.match('^http://')) {
104+
return false;
105+
}
106+
return true;
107+
}
108+
109+
function isAllowedToEmbed(parsed, options) {
110+
return isAllowedMimeType(parsed, options) && isAllowedSchema(parsed, options);
111+
}
112+
102113
function renderMediaEmbed(parsed, mediaAttributes) {
103114
var attributes = mediaAttributes[parsed.mediaType];
104115

@@ -112,7 +123,7 @@ function renderMediaEmbed(parsed, mediaAttributes) {
112123
function html5EmbedRenderer(tokens, idx, options, env, renderer, defaultRender) {
113124
var parsed = parseToken(tokens, idx, env);
114125

115-
if (!isAllowedMimeType(parsed, options.html5embed)) {
126+
if (!isAllowedToEmbed(parsed, options.html5embed)) {
116127
return defaultRender(tokens, idx, options, env, renderer);
117128
}
118129

@@ -219,7 +230,7 @@ module.exports = function html5_embed_plugin(md, options) {
219230
forEachLinkOpen(gstate, function(tokens, idx) {
220231
var parsed = parseToken(tokens, idx, env);
221232

222-
if (!isAllowedMimeType(parsed, options)) {
233+
if (!isAllowedToEmbed(parsed, options)) {
223234
return;
224235
}
225236

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Video with link syntax:
2+
.
3+
[test link](http://example.com/file.webm)
4+
.
5+
<p><a href="http://example.com/file.webm">test link</a></p>
6+
.
7+
8+
Video with link syntax (no text label):
9+
.
10+
[](http://example.com/file.webm)
11+
.
12+
<p><a href="http://example.com/file.webm"></a></p>
13+
.
14+
15+
Check usual link is not broken:
16+
.
17+
[test link](http://example.com/file.php)
18+
.
19+
<p><a href="http://example.com/file.php">test link</a></p>
20+
.
+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Video with link syntax:
2+
.
3+
[test link](http://example.com/file.webm)
4+
.
5+
<p><video controls preload="metadata">
6+
<source type="video/webm" src="http://example.com/file.webm"></source>
7+
Your browser does not support playing HTML5 video. You can <a href="http://example.com/file.webm" download>download a copy of the video file</a> instead.
8+
Here is a description of the content: test link
9+
</video></p>
10+
.
11+
12+
Video with link syntax (no text label):
13+
.
14+
[](http://example.com/file.webm)
15+
.
16+
<p><video controls preload="metadata">
17+
<source type="video/webm" src="http://example.com/file.webm"></source>
18+
Your browser does not support playing HTML5 video. You can <a href="http://example.com/file.webm" download>download a copy of the video file</a> instead.
19+
</video></p>
20+
.
21+
22+
Check usual link is not broken:
23+
.
24+
[test link](http://example.com/file.php)
25+
.
26+
<p><a href="http://example.com/file.php">test link</a></p>
27+
.

test/test.js

+25
Original file line numberDiff line numberDiff line change
@@ -178,3 +178,28 @@ describe('markdown-it-html5-embed with image syntax + custom translation fn', fu
178178

179179
generate(path.join(__dirname, 'fixtures/image-syntax-with-translation.txt'), md);
180180
});
181+
182+
describe('markdown-it-html5-embed with link syntax http link when http disabled', function() {
183+
clearBindings();
184+
185+
var options = {
186+
html5embed: {
187+
useLinkSyntax: true
188+
}
189+
};
190+
191+
var md = require('markdown-it')().use(require('../lib'), options);
192+
generate(path.join(__dirname, 'fixtures/link-syntax-http-disabled.txt'), md);
193+
});
194+
195+
describe('markdown-it-html5-embed with link syntax http link when http disabled', function() {
196+
var options = {
197+
html5embed: {
198+
useLinkSyntax: true,
199+
isAllowedHttp: true
200+
}
201+
};
202+
203+
var md = require('markdown-it')().use(require('../lib'), options);
204+
generate(path.join(__dirname, 'fixtures/link-syntax-http-enabled.txt'), md);
205+
});

0 commit comments

Comments
 (0)