-
-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into improve-cache
- Loading branch information
Showing
39 changed files
with
511 additions
and
190 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
'use strict'; | ||
|
||
const { parse } = require('url'); | ||
|
||
/** | ||
* Check whether the link is external | ||
* @param {String} url The url to check | ||
* @param {Object} config The site config | ||
* @returns {Boolean} True if the link doesn't have protocol or link has same host with config.url | ||
*/ | ||
const isExternal = (url, config) => { | ||
const exclude = Array.isArray(config.external_link.exclude) ? config.external_link.exclude : | ||
[config.external_link.exclude]; | ||
const data = parse(url); | ||
const host = data.hostname; | ||
const sitehost = parse(config.url).hostname || config.url; | ||
|
||
if (!data.protocol || !sitehost) return false; | ||
|
||
if (exclude && exclude.length) { | ||
for (const i of exclude) { | ||
if (host === i) return false; | ||
} | ||
} | ||
|
||
if (host !== sitehost) return true; | ||
|
||
return false; | ||
}; | ||
|
||
function externalLinkFilter(data) { | ||
const { config } = this; | ||
|
||
if (typeof config.external_link === 'undefined' || typeof config.external_link === 'object' || | ||
config.external_link === true) { | ||
config.external_link = Object.assign({ | ||
enable: true, | ||
field: 'site', | ||
exclude: '' | ||
}, config.external_link); | ||
} | ||
if (config.external_link === false || config.external_link.enable === false || | ||
config.external_link.field !== 'site') return; | ||
|
||
data = data.replace(/<a.*?(href=['"](.*?)['"]).*?>/gi, (str, hrefStr, href) => { | ||
if (/target=/gi.test(str) || !isExternal(href, config)) return str; | ||
|
||
if (/rel=/gi.test(str)) { | ||
str = str.replace(/rel="(.*?)"/gi, (relStr, rel) => { | ||
if (!rel.includes('noopenner')) relStr = relStr.replace(rel, `${rel} noopener`); | ||
return relStr; | ||
}); | ||
return str.replace(hrefStr, `${hrefStr} target="_blank"`); | ||
} | ||
|
||
return str.replace(hrefStr, `${hrefStr} target="_blank" rel="noopener"`); | ||
}); | ||
|
||
return data; | ||
} | ||
|
||
module.exports = externalLinkFilter; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
'use strict'; | ||
|
||
module.exports = ctx => { | ||
const { filter } = ctx.extend; | ||
|
||
filter.register('after_render:html', require('./external_link')); | ||
filter.register('after_render:html', require('./meta_generator')); | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.