Ghost/ghost/webmentions/lib
Fabien "egg" O'Carroll 90b7a3f4d0 Added verified member and verify method to Mention entity
closes https://github.com/TryGhost/Team/issues/2548

Rather than use a setter here we've used a verify method which takes the HTML
string and naively validates that the target URL is present. This is so that the
logic of verification is encapsulated in the Mention, and should mean that
erroneous verification doesn't happen.

We could consider down the line that the verify method fetches the content
itself, but if we're to do that we should pass in `got` as a param, so that it's
possible to stub in tests.

One thing to think about when it comes time to making this as performant as
possible is doing a single fetch of the source document and using that for
verification and metadata extraction. At that point we should probably
consolidate both of those operations, either moving the metadata extraction into
the Mention entity (passing in any necessary deps) OR we move the verification
out to the same layer as metadata extraction.
2023-02-13 19:23:34 +07:00
..
InMemoryMentionRepository.js Added support for deleting mentions (#16238) 2023-02-09 17:29:13 +07:00
Mention.js Added verified member and verify method to Mention entity 2023-02-13 19:23:34 +07:00
MentionCreatedEvent.js
MentionDiscoveryService.js
MentionsAPI.js Added support for updating Mentions when Webmentions are resent 2023-02-10 11:43:16 +07:00
MentionSendingService.js moved sending mentions to job (#16234) 2023-02-08 16:29:12 -06:00
webmentions.js