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} */ async getEndpoint(url) { try { const response = await this.#externalRequest(url.href, { throwHttpErrors: false, followRedirects: 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} */ async getEndpointFromResponse(response) { let href; let endpoint; // Link: ; 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 OR element with rel=webmention href = $('a[rel="webmention"],link[rel="webmention"]').first().attr('href'); endpoint = href ? new URL(href) : null; return endpoint; } };