mirror of
1
Fork 0
forgejo/models/repo
Gusted 3d3790ef4c
[MODERATION] Refactor excluding watchers mechanism (squash)
Backport of #2143

This solves two bugs. One bug is that due to the JOIN with the
`forgejo_blocked_users` table, duplicated users were generated if a user
had more than one user blocked, this lead to receiving more than one
entry in the actions table. The other bug is that if a user blocked more
than one user, it would still receive a action entry by a
blocked user, because the SQL query would not exclude the other
duplicated users that was generated by the JOIN.

The new solution is somewhat non-optimal in my eyes, but it's better
than rewriting the query to become a potential perfomance blocker (usage
of WHERE IN, which cannot be rewritten to a JOIN). It simply removes the
watchers after it was retrieved by the SQL query.

(cherry picked from commit c63c00b39b)
2024-01-22 21:01:08 +01:00
..
archiver.go
attachment.go [FEAT] allow setting the update date on issues and comments 2023-11-13 12:33:49 +01:00
attachment_test.go
avatar.go
collaboration.go [MODERATION] User blocking 2023-11-13 13:58:02 +01:00
collaboration_test.go [MODERATION] User blocking 2023-11-13 13:58:02 +01:00
fork.go
fork_test.go
git.go
issue.go
language_stats.go
main_test.go
mirror.go More `db.DefaultContext` refactor (#27265) (#27347) 2023-09-29 13:35:01 +00:00
pushmirror.go [GITEA] new doctor check: fix-push-mirrors-without-git-remote (#1853) 2023-12-01 13:56:03 +00:00
pushmirror_test.go
redirect.go
redirect_test.go
release.go Fix comment permissions (#28213) (#28216) 2023-11-26 13:56:50 +01:00
release_test.go Another round of `db.DefaultContext` refactor (#27103) (#27262) 2023-09-25 19:24:35 +02:00
repo.go Rework markup link rendering (#26745) (#28803) 2024-01-16 14:41:11 +00:00
repo_indexer.go
repo_list.go Restricted users only see repos in orgs which their team was assigned to (#28025) (#28051) 2023-11-22 17:12:11 +01:00
repo_list_test.go [GITEA] Improve HTML title on repositories 2023-11-13 14:04:16 +01:00
repo_test.go Refactor SSH clone URL generation code (#28421) (#28480) 2023-12-22 12:05:11 +01:00
repo_unit.go
repo_unit_test.go
search.go
star.go
star_test.go
topic.go
topic_test.go
update.go
upload.go
user_repo.go [MODERATION] User blocking 2023-11-13 13:58:02 +01:00
user_repo_test.go [MODERATION] User blocking 2023-11-13 13:58:02 +01:00
watch.go [MODERATION] Refactor excluding watchers mechanism (squash) 2024-01-22 21:01:08 +01:00
watch_test.go [MODERATION] Refactor excluding watchers mechanism (squash) 2024-01-22 21:01:08 +01:00
wiki.go
wiki_test.go