summaryrefslogtreecommitdiff
path: root/app/finders/protected_branches_finder.rb
blob: 68e8d2a9f5400123b9727b514099d50838644bf2 (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
34
35
# 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)
    protected_branches = by_name(protected_branches)

    protected_branches
  end

  private

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

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