Skip to content
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

FEATURE: Add following feed to /filter #148

Merged
merged 4 commits into from
Mar 27, 2025

Conversation

Grubba27
Copy link
Contributor

@Grubba27 Grubba27 commented Mar 21, 2025

Adds following-feed:<username> to the /filter endpoint

It returns the recent topics from the users that the current user follows (topics from the /my/follow/feed page).

Requires discourse/discourse#31908 to be merged

Adds `following-feed:<username>` to the `/filter` endpoint

It returns the topics from the users that the current user is following(topics from the `/my/follow/feed` page).
@Grubba27 Grubba27 requested a review from ZogStriP March 25, 2025 18:07
plugin.rb Outdated
next scope if user.nil?
next scope.none if user.id != guardian.user.id && !guardian.user.staff?

topic_ids = UserFollower.posts_for(user, current_user: guardian.user).map { |p| p.topic_id }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any chances we could write this as an SQL query instead of loading all the posts model in Ruby-land just to retrieve the topic ids?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've added a topics_for but I had thought of just adding:

    topic_ids =
      UserFollower
        .posts_for(user, current_user: guardian.user)
        .select("DISTINCT topic_id")
        .pluck(:topic_id)

But posts_for preloads posts so...

But I can change if you want

create tests for it and update `/filter` to use it
@Grubba27 Grubba27 requested a review from ZogStriP March 26, 2025 20:35
Copy link
Member

@ZogStriP ZogStriP left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@Grubba27 Grubba27 merged commit 70e6468 into main Mar 27, 2025
6 checks passed
@Grubba27 Grubba27 deleted the feature/add-following-feed-to-`/filter` branch March 27, 2025 14:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants