-
-
Notifications
You must be signed in to change notification settings - Fork 919
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some site person ban fixes, and code cleanup #5556
base: main
Are you sure you want to change the base?
Conversation
So in all these cases it is only for bans, not for blocks right? So it would be better to rename the struct to The field names are a bit confusing now, I would suggest changing like this:
I also wonder if it is really necessary to include so much detail. Most likely frontends wont bother to display each item separately. So I would only include a single field |
Its for both bans and blocks, for both you, and the item creator. We can't separate the structs, as we just spent a lot of time making sure these views only do simple joins to the actions tables.
I think you're correct here, and I should add something to clarify whether its the community's instance, or the person's instance. The person could be banned from either local, the communities instance, or their home instance. I'll:
Some apps might find it useful to differentiate these visually, IE was this person banned from their home server, the community's, or mine? So for now at least I'll avoid adding a |
Are you going to implement this in lemmy-ui or jerboa? There are lots of things which might be useful but we cant implement everything. And this sounds like it will remain forever unused, making the api more complicated for no reason. Another problem is that post_view and comment_view queries have too many joins now (11 each). These are critical for performance so it should remain below 8 as discussed in #5555. |
The joins are unavoidable unfortunately, we need to see if item creators were banned from those instances or not. But I didn't add the other join mentioned above, since these are getting excessive. I added a I also added a unit test to make sure these are working correctly. |
I've done a few cleanups here:
instance_actions
join for most queries was incorrect. Fixed instance_actions to include:instance_actions
(you -> community item's instance (or occasionally the target person's instance))creator_home_instance_actions
(creator -> community item's instance)creator_local_instance_actions
(creator -> your local instance)reports
, since it starts to get complicated when there are 3 users involved (reporter, resolver, creator)