gitlab-org--gitlab-foss/app/finders
Yorick Peterse fbcf3bd3fc Refactor ProjectsFinder to not pluck IDs
This class now uses a UNION (when needed) instead of plucking tens of
thousands of project IDs into memory. The tests have also been
re-written to ensure all different use cases are tested properly
(assuming I didn't forget any cases).

The finder has also been broken up into 3 different finder classes:

* ContributedProjectsFinder: class for getting the projects a user
  contributed to.
* PersonalProjectsFinder: class for getting the personal projects of a
  user.
* ProjectsFinder: class for getting generic projects visible to a given
  user.

Previously a lot of the logic of these finders was handled directly in
the users controller.
2015-11-18 13:05:45 +01:00
..
contributed_projects_finder.rb Refactor ProjectsFinder to not pluck IDs 2015-11-18 13:05:45 +01:00
groups_finder.rb Refactoed GroupsFinder into two separate classes 2015-11-18 13:05:45 +01:00
issuable_finder.rb Rename confusing methods 2015-10-19 11:46:22 +02:00
issues_finder.rb Refactor finders. Prevent circular dependency error 2014-09-02 15:28:27 +03:00
joined_groups_finder.rb Refactoed GroupsFinder into two separate classes 2015-11-18 13:05:45 +01:00
merge_requests_finder.rb Refactor finders. Prevent circular dependency error 2014-09-02 15:28:27 +03:00
milestones_finder.rb Lets add more tests to Milestones services 2015-11-16 14:39:19 +01:00
notes_finder.rb Add index on order columns 2015-02-06 10:21:48 -08:00
personal_projects_finder.rb Refactor ProjectsFinder to not pluck IDs 2015-11-18 13:05:45 +01:00
projects_finder.rb Refactor ProjectsFinder to not pluck IDs 2015-11-18 13:05:45 +01:00
README.md Set milestone on new issue when creating issue from index with milestone filter active. 2015-05-27 14:22:11 +02:00
snippets_finder.rb Rubocop: indentation fixes Yay!!! 2015-02-02 21:59:28 -08:00
trending_projects_finder.rb Revamp trending projects query 2015-10-06 17:26:32 +02:00

Finders

This type of classes responsible for collection items based on different conditions. To prevent lookup methods in models like this:

class Project
  def issues_for_user_filtered_by(user, filter)
    # A lot of logic not related to project model itself
  end
end

issues = project.issues_for_user_filtered_by(user, params)

Better use this:

issues = IssuesFinder.new(project, user, filter).execute

It will help keep models thiner.