this post was submitted on 23 Jul 2023
17 points (100.0% liked)

Programming

16977 readers
314 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

Is anyone aware of an existing project that can do something like this:

  • Access an RSS feed.
  • Parse the contents of the items in the feed, and fetch linked images.
  • Take the new feed elements and add them to previously fetched elements.
  • Store all of the content in a merged RSS/XML file, or something like a SQLite DB.

Context: I'd like to archive Mastodon posts of an account automatically. I'd prefer it to be a script/binary I could run on Linux as I'd likely throw it in a GitHub action and save the resulting output in the git repo.

I could probably whip something together but I'm lazy and I'd prefer to use something that already exists.

top 7 comments
sorted by: hot top controversial new old
[–] [email protected] 4 points 1 year ago* (last edited 1 year ago) (1 children)

https://github.com/mreid/feed-bag

Not sure if it does all you want, but the basics are there, and it wouldn't be beyond the pale to make something like this do what you want. The code is pretty clean

[–] [email protected] 2 points 1 year ago (1 children)

Thanks. This has potential and would force me to finally learn Ruby if I want to tweak it.

[–] [email protected] 2 points 1 year ago

Best way to learn is to dive in and try to accomplish something you want to do

[–] [email protected] 4 points 1 year ago

No but I have an indirect answer (a method?) for you. There are many open source projects that do this type of work. For example, newsblur. Maybe you can find a few of these projects in the language you want to use and see how they're handling it. I would expect the to be done common libraries used between them.

[–] abhibeckert 3 points 1 year ago* (last edited 1 year ago) (1 children)

I don't know of a project that does this, but if I was to tackle it I would convert the RSS to the Activity Streams standard - https://www.w3.org/TR/activitystreams-core/.

Activity Streams are basically the new RSS and it's a lot better than RSS.

Mastodon is built on Activity Pub, which is built on Activity Streams - so you shouldn't even need to touch RSS at all. The AS already exists. You can access it via the API.

Under European laws all services are required to give you a copy of all data associated with your account if you ask for it. And Mastodon being a European product is of course fully compliant. Just go to your profile and hit the "Request your Archive" button. You could do that once a month or something.

[–] [email protected] 1 points 1 year ago

Yes, the "Request Archive" method may be the "don't over engineer this stupid" option I go with.

[–] [email protected] 2 points 1 year ago

I use miniflux, and you can configure it to modify feed items. As far as I know it does not purge anything by default.

Really, pulling an RSS feed and parsing it, storing stuff is probably 50 lines of bash, and less in a general purpose scripting language.

load more comments
view more: next ›