this post was submitted on 18 Jun 2023
63 points (100.0% liked)

Selfhosted

39245 readers
325 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 1 year ago
MODERATORS
 

Hello!

I've been thinking about hosting my own Lemmy instance, but wonder if there's an easy way to federate with other communities/instances. I like to browse the "All" tab, but that tab would be empty on a self-hosted instance I imagine.

Is there a way to get all communities of certain instances in my All feed? Or do I have to search up each individual community manually once?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 14 points 1 year ago (3 children)

I'm working on a Rust API wrapper around the existing common API to make it easier to use. Implemented the calls that could let someone do this exact thing at scale last night.

It's nowhere near ready for production and is still missing a lot of basic API functionality even for a simple bot, but I think it'll be ready to publicly release in an alpha state within the next couple days.

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

This sounds like a great idea

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

That's neat. Is the idea that the bot user would enumerate and then subscribe to the communities found through the Lemmy API?

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

Pretty much, that would force federation. Though I don't think users in the other community would see your communities until someone from there searched one of yours.

An idea I have is giving small communities an option to run the bot on their instance, and it would add them to a list. Then, communities voluntarily participating in that list could auto-populate each other's communities through the bot. I could see spammers abusing something like this to try and flood feeds with garbage content until they're defederated though, especially on instances with open registration, so there is a downside. But that's something the community of proper users will need to be prepared to fight down the road.

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

Yeah, that's a slippery slope. I think that federating to receive content from an instance is fundamentally different than making your content show up on a instance that didn't ask for it. I definitely see the value your implementation would bring to new/single-user instance to populate the feed. Good luck!

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

If you do happen to release an alpha publicly, please do be sure to post it somewhere here - I'd love to take a look at it!

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago)

I'll keep you in mind when I do that. I've got some free time the next couple days to work on it, so I'm hoping to have something by then. So far the API calls I've implemented are Search, ResolveObject, GetSite, GetFederatedInstances (Though it's basically GetSite), GetPosts, Login, ListCommunities, FollowCommunity

So, you know, pretty far from doing much practical work. But not bad at getting information about an instance. I want to at least have all the basic post/comment/community functionality in before I release anything. Also, I think I want to restructure what I have into a better format. Don't quite like how I set it up.