summaryrefslogtreecommitdiff
path: root/app/finders/protected_branches_finder.rb
blob: a452a1f993b5e10778067d401e5c6bbee19768f9 (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
27
28
29
30
31
32
33
# frozen_string_literal: true

# ProtectedBranchesFinder
#
# Used to filter protected branches by set of params
#
# Arguments:
#   project - which project to scope to
#   params:
#     search: string
class ProtectedBranchesFinder
  LIMIT = 100

  attr_accessor :project, :params

  def initialize(project, params = {})
    @project = project
    @params = params
  end

  def execute
    protected_branches = project.limited_protected_branches(LIMIT)
    by_name(protected_branches)
  end

  private

  def by_name(protected_branches)
    return protected_branches unless params[:search].present?

    protected_branches.by_name(params[:search])
  end
end