Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_finder.rb « finders « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 484a93c987347e4564e1a42991790b1809690bf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# frozen_string_literal: true

# A simple finding for obtaining a single User.
#
# While using `User.find_by` directly is straightforward, it can lead to a lot
# of code duplication. Sometimes we just want to find a user by an ID, other
# times we may want to exclude blocked user. By using this finder (and extending
# it whenever necessary) we can keep this logic in one place.
class UserFinder
  attr_reader :params

  def initialize(params)
    @params = params
  end

  # Tries to find a User, returning nil if none could be found.
  def execute
    User.find_by(id: params[:id])
  end

  # Tries to find a User, raising a `ActiveRecord::RecordNotFound` if it could
  # not be found.
  def execute!
    User.find(params[:id])
  end
end