Live testing of remote categories
-
I would be remiss if I didn't also mention that while this theoretically works with software like PieFed and Mbin, it has only really been tested against NodeBB (of course) and Lemmy.
@andrew_s@piefed.social @rimu@mastodon.nzoss.nz @melroy@kbin.melroy.org
-
Some interesting bugs atm
All the ActivityPub groups I was following prior to this update were successfully migrated to become remote categories (good!), but now that they are no longer treated as remote users, this has left behind a bunch of "guest" users in my
/following
page.
Also due to the migration, a bunch of topics that used to be categorised under @activitypub, were automatically moved to [[@activitypub](https://community.nodebb.org/category/30/activitypub)@forum.wedistribute.org](https://community.nodebb.org/category/activitypub@forum.wedistribute.org)!
I presume this happened because [[@activitypub](https://community.nodebb.org/category/30/activitypub)@forum.wedistribute.org](https://community.nodebb.org/category/activitypub@forum.wedistribute.org) is set to mirror @activitypub. I'm guessing that since the group actor was sharing all these posts, once NodeBB recognised it as a remote category instead, it began to treating those share activities as move actions.
Seeing how NodeBB does not have a notion of topics belonging to multiple categories, you might want to revisit how you handle remote categories that follow and mirror local categories.
-
Some interesting bugs atm
All the ActivityPub groups I was following prior to this update were successfully migrated to become remote categories (good!), but now that they are no longer treated as remote users, this has left behind a bunch of "guest" users in my
/following
page.
Also due to the migration, a bunch of topics that used to be categorised under @activitypub, were automatically moved to [[@activitypub](https://community.nodebb.org/category/30/activitypub)@forum.wedistribute.org](https://community.nodebb.org/category/activitypub@forum.wedistribute.org)!
I presume this happened because [[@activitypub](https://community.nodebb.org/category/30/activitypub)@forum.wedistribute.org](https://community.nodebb.org/category/activitypub@forum.wedistribute.org) is set to mirror @activitypub. I'm guessing that since the group actor was sharing all these posts, once NodeBB recognised it as a remote category instead, it began to treating those share activities as move actions.
Seeing how NodeBB does not have a notion of topics belonging to multiple categories, you might want to revisit how you handle remote categories that follow and mirror local categories.
@AltCode thanks for reporting! I'll take a look at those tomorrow.
The topics being moved out is a byproduct of the migration. Looks like some tweaking is in order! Perhaps I'll only move topics whose main post is on the same domain.
-
@AltCode I've moved those topics back to the proper category
-
Edit: updated as had to click into category to follow
-
I can confirm it works with Mbin, look at my instance: https://kbin.melroy.org/m/activitypub@community.nodebb.org/p/286459/Happy-Tuesday-Today-we-ve-updated-the-NodeBB-community-forum-onto#post-comment-413326
-
@julian @activitypub Makes sense. Were NodeBB's own federated categories represented as users prior to this change? Do you assume that all groups are FEP-1b12 groups?
There was an interesting discussion on SocialHub on identifying FEP-1b12 groups and nutomic made a compelling argument that we should just assume thatGroup
supports FEP-1b12 if there is no other indicator:FEP-1b12: Group federation
Internet forums are probably the oldest form of social media. They can be implemented with the Activitypub protocol, but such implementations may not necessarily be compatible with each other. This document defines a com…
SocialHub (socialhub.activitypub.rocks)
-
@julian @activitypub Makes sense. Were NodeBB's own federated categories represented as users prior to this change? Do you assume that all groups are FEP-1b12 groups?
There was an interesting discussion on SocialHub on identifying FEP-1b12 groups and nutomic made a compelling argument that we should just assume thatGroup
supports FEP-1b12 if there is no other indicator:FEP-1b12: Group federation
Internet forums are probably the oldest form of social media. They can be implemented with the Activitypub protocol, but such implementations may not necessarily be compatible with each other. This document defines a com…
SocialHub (socialhub.activitypub.rocks)
@silverpill@mitra.social good questions!
Local NodeBB categories are still federated out as ActivityPub actors, with
as:type
Group
, they follow 1b12 as they always have.I do assume that group actors adhere to 1b12, but that doesn't stop others from creating topics by mentioning them directly. If a NodeBB instance happens to hear about that, we'll add it to the remote category.
-
@AltCode the two bugs you identified have been resolved, can you confirm the latter? The former I manually moved them back already to the right category.
-
Confirmed working with:
- PieFed Communities: PieFed Meta
- Flipboard Magazines: [Gear by @engadget@flipboard.com](https://community.nodebb.org/category/gear-engadget@flipboard.com)
However, while Flipboard magazines send Announces as per 1b12, and the items are added to the outbox, the objects themselves do not address the magazine at all, and so a backreference is missing. When they come into NodeBB, there's no pointer back to the group, and so it is slotted into the "uncategorized" bucket.
tl;dr — can this object
https://flipboard.com/users/Engadget/statuses/uva9misBSrqjCSR6mtzV6g:a:3199686
please includehttps://flipboard.com/@engadget/gear-nv6v86arz
in itsto
orcc
property? -
@julian Yes, I can confirm that the other bug has been fixed! There's no more guest accounts in my
/following
page. -
@julian not sure. Cc’ing @jaonculverhouse
-
@julian @activitypub Makes sense. Were NodeBB's own federated categories represented as users prior to this change? Do you assume that all groups are FEP-1b12 groups?
There was an interesting discussion on SocialHub on identifying FEP-1b12 groups and nutomic made a compelling argument that we should just assume thatGroup
supports FEP-1b12 if there is no other indicator:FEP-1b12: Group federation
Internet forums are probably the oldest form of social media. They can be implemented with the Activitypub protocol, but such implementations may not necessarily be compatible with each other. This document defines a com…
SocialHub (socialhub.activitypub.rocks)
@silverpill@mitra.social I read back a bit to get a fuller context (not all the way, though, there's a damn lot of bikeshedding in that topic.)
Basically Nutomic is advocating against multi typing because it is poorly supported (true), and because Lemmy has first-mover advantage (also true.)
Requiring a multitype or boolean flag for 1b12 would be quite difficult to do because you'll never have 100% adoption and end up needing backwards compatibility with 1b12-classic anyway — cat's already out of the bag.
-
@julian How do you deal with situations where the group actor also sends posts?
For example, on Hubzilla, (streams), and Forte, the top level post of a forum thread is from the forum, not the user. This was originally done for Mastodon compatibility since it did not understand threaded conversations and groups. They could follow the forum as if it were a user, and receive all of the forum posts. They could send a DM to the forum to create a new post.
NodeBB took a different approach, using boosts to distribute user posts to people who follow the forum. And I think you said you use mentions within a post to create a new top level post.
How are we handling the differences in approaches? -
@julian How do you deal with situations where the group actor also sends posts?
For example, on Hubzilla, (streams), and Forte, the top level post of a forum thread is from the forum, not the user. This was originally done for Mastodon compatibility since it did not understand threaded conversations and groups. They could follow the forum as if it were a user, and receive all of the forum posts. They could send a DM to the forum to create a new post.
NodeBB took a different approach, using boosts to distribute user posts to people who follow the forum. And I think you said you use mentions within a post to create a new top level post.
How are we handling the differences in approaches?@scott@loves.tech can you share an example of a group actor from Hubzilla? Would be interesting to see how that's handled. Likely it wouldn't work properly because categories in NodeBB don't author posts.
Do your group actors send creates on behalf of regular users? That might work ok.
Lastly, there's no requirement that a NodeBB category be mentioned. It only needs to be addressed. A mention is the easiest way to do that because you addressing is abstracted out of the Mastodon UI.
But for things like PieFed, Lemmy, Mbin, and likely Hubzilla, you're able to change addressing based on where you create the post.
-
@julian I'm not sure. They changed things in the last major version when they adopted FEP 171b Conversation Containers.
Some examples of forum channels are @Hubzilla Support Forum and @Neuhub Support Forum. -
@julian
But for things like PieFed, Lemmy, Mbin, and likely Hubzilla, you're able to change addressing based on where you create the post.
Yes, in Hubzilla, we can click on the padlock and select who the post is addressed to, including NodeBB forums. I haven't tried it yet, but Hubzilla does recognize NodeBB categories as "forums." -
@julian I just tried posting five different posts from Hubzilla to @Testing Ground via various methods, and none are showing up.
1. Post from a group actor, selecting audience from list.
2. Post from a group actor, using a mention.
3. Post from a normal actor, selecting audience from list.
4. Post from a normal actor, using a mention.
5. Post from a normal actor, posting to a Hubzilla Forum (group actor) and mentioning the NodeBB category in the post.
I am not sure if that forum is moderated, but none of my posts are showing up. -
@julian I'm not sure. They changed things in the last major version when they adopted FEP 171b Conversation Containers.
Some examples of forum channels are @Hubzilla Support Forum and @Neuhub Support Forum.By the way, we also have a test forum set up here: @Neuhub Test Forum
#^https://neuhub.org/channel/testforum -
@julian I just tried posting five different posts from Hubzilla to @Testing Ground via various methods, and none are showing up.
1. Post from a group actor, selecting audience from list.
2. Post from a group actor, using a mention.
3. Post from a normal actor, selecting audience from list.
4. Post from a normal actor, using a mention.
5. Post from a normal actor, posting to a Hubzilla Forum (group actor) and mentioning the NodeBB category in the post.
I am not sure if that forum is moderated, but none of my posts are showing up.https://community.nodebb.org/inbox delivery rejected: 403 Forbidden 2025-03-30 22:51:57
https://community.nodebb.org/inbox delivery rejected: 403 Forbidden 2025-03-30 23:28:55