TomboFry / microlight

A fully IndieWeb-compatible PHP blogging engine
GNU Affero General Public License v3.0
37 stars 3 forks source link

Recieve webmentions - Store comments, likes, etc. #20

Closed TomboFry closed 5 years ago

TomboFry commented 5 years ago

If people comment, like, or repost one of your entries, this should be reflected on the entry page. This is likely going to require another database table (or two) to store them.

However, because I value data collection and privacy, a disclaimer should be displayed somewhere on the page stating that their data can be permanently removed from the site by emailing the site owner. Hooray for GDPR!

TomboFry commented 5 years ago

Webmentions processed and stored as of 4872db8, but further processing will need to be done to prevent duplicate webmentions from being stored, as well as determining what type of webmention is being added (eg. reply, like, repost, bookmark, etc)

TomboFry commented 5 years ago

Webmentions are now updated (no more duplicates) and deleted as of 73d2765. Coming up next: post type detection!

TomboFry commented 5 years ago

Post type detection as of 095cc52! Just going to tighten security a little and call this done.