Ghost/ghost/webmentions/lib/MentionDiscoveryService.js
Steve Larson 2d84b7d990
Upgraded got package from v9.6.0 to v11.8.6 (#16261)
Refs TryGhost/Team#2459
-upgraded got from v9.6.0 to v11.8.6 to support following redirects (and
other fixes)
-got v12+ requires ESM, so we do not want to upgrade further at this
time
-required changes to a few libraries that use externalRequests
-mention discovery service tests updated to test for follow redirects
2023-02-20 09:33:11 -06:00

74 lines
2.3 KiB
JavaScript

const cheerio = require('cheerio');
const errors = require('@tryghost/errors');
module.exports = class MentionDiscoveryService {
#externalRequest;
constructor({externalRequest}) {
this.#externalRequest = externalRequest;
}
/**
* Fetches the given URL to identify the webmention endpoint
* @param {URL} url
* @returns {Promise<URL|null>}
*/
async getEndpoint(url) {
try {
const response = await this.#externalRequest(url.href, {
throwHttpErrors: false,
followRedirect: true,
maxRedirects: 10
});
if (response.statusCode === 404) {
throw new errors.BadRequestError({
message: 'Webmention discovery service could not find target site',
statusCode: response.statusCode
});
}
return this.getEndpointFromResponse(response);
} catch (error) {
return null;
}
}
/**
* @private
* Parses the given response for the first webmention endpoint
* @param {Object} response
* @returns {Promise<URL|null>}
*/
async getEndpointFromResponse(response) {
let href;
let endpoint;
// Link: <uri-reference>; param1=value1; param2="value2"
// https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Link
const linkHeader = response.headers.link;
if (linkHeader && linkHeader.includes('rel="webmention"')) {
linkHeader.split(',').forEach((p) => {
if (p.includes('rel="webmention"')) {
href = p.substring(p.indexOf('<') + 1, p.indexOf('>'));
endpoint = new URL(href);
return;
}
});
}
if (endpoint) {
return endpoint;
}
// must be html to find links/tags
if (!response.headers['content-type'].includes('text/html')) {
return null;
}
const $ = cheerio.load(response.body);
// must be first <link> OR <a> element with rel=webmention
href = $('a[rel="webmention"],link[rel="webmention"]').first().attr('href');
endpoint = href ? new URL(href) : null;
return endpoint;
}
};