mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 09:52:06 +03:00
cfd9ff3993
refs https://github.com/TryGhost/Ghost/issues/9724 - perform a HEAD request on a url if we don't find a matching provider, following any redirects until we hit success response before looking up providers for the resulting url
80 lines
2.2 KiB
JavaScript
80 lines
2.2 KiB
JavaScript
const common = require('../lib/common');
|
|
const {extract, hasProvider} = require('oembed-parser');
|
|
const Promise = require('bluebird');
|
|
const request = require('../lib/request');
|
|
|
|
const findUrlWithProvider = function findUrlWithProvider(url) {
|
|
let provider;
|
|
|
|
// build up a list of URL variations to test against because the oembed
|
|
// providers list is not always up to date with scheme or www vs non-www
|
|
let baseUrl = url.replace(/^\/\/|^https?:\/\/(?:www\.)?/, '');
|
|
let testUrls = [
|
|
`http://${baseUrl}`,
|
|
`https://${baseUrl}`,
|
|
`http://www.${baseUrl}`,
|
|
`https://www.${baseUrl}`
|
|
];
|
|
|
|
for (let testUrl of testUrls) {
|
|
provider = hasProvider(testUrl);
|
|
if (provider) {
|
|
url = testUrl;
|
|
break;
|
|
}
|
|
}
|
|
|
|
return {url, provider};
|
|
};
|
|
|
|
let oembed = {
|
|
read(options) {
|
|
let {url} = options;
|
|
|
|
if (!url || !url.trim()) {
|
|
return Promise.reject(new common.errors.BadRequestError({
|
|
message: common.i18n.t('errors.api.oembed.noUrlProvided')
|
|
}));
|
|
}
|
|
|
|
function unknownProvider() {
|
|
return Promise.reject(new common.errors.ValidationError({
|
|
message: common.i18n.t('errors.api.oembed.unknownProvider')
|
|
}));
|
|
}
|
|
|
|
function knownProvider(url) {
|
|
return extract(url).catch((err) => {
|
|
return Promise.reject(new common.errors.InternalServerError({
|
|
message: err.message
|
|
}));
|
|
});
|
|
}
|
|
|
|
let provider;
|
|
({url, provider} = findUrlWithProvider(url));
|
|
|
|
if (provider) {
|
|
return knownProvider(url);
|
|
}
|
|
|
|
// see if the URL is a redirect to cater for shortened urls
|
|
return request(url, {
|
|
method: 'HEAD',
|
|
timeout: 2 * 1000,
|
|
followRedirect: true
|
|
}).then((response) => {
|
|
if (response.url !== url) {
|
|
({url, provider} = findUrlWithProvider(response.url));
|
|
return provider ? knownProvider(url) : unknownProvider();
|
|
}
|
|
|
|
return unknownProvider();
|
|
}).catch(() => {
|
|
return unknownProvider();
|
|
});
|
|
}
|
|
};
|
|
|
|
module.exports = oembed;
|