summaryrefslogtreecommitdiff
path: root/app/finders/branches_finder.rb
blob: 291a24c1405dcf5b38f9194d0c5b5acc9accb17b (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# frozen_string_literal: true

class BranchesFinder
  def initialize(repository, params = {})
    @repository = repository
    @params = params
  end

  def execute
    branches = repository.branches_sorted_by(sort)
    branches = by_search(branches)
    branches = by_names(branches)
    branches
  end

  private

  attr_reader :repository, :params

  def names
    @params[:names].presence
  end

  def search
    @params[:search].presence
  end

  def sort
    @params[:sort].presence || 'name'
  end

  def by_search(branches)
    return branches unless search

    case search
    when ->(v) { v.starts_with?('^') }
      filter_branches_with_prefix(branches, search.slice(1..-1).upcase)
    when ->(v) { v.ends_with?('$') }
      filter_branches_with_suffix(branches, search.chop.upcase)
    else
      matches = filter_branches_by_name(branches, search.upcase)
      set_exact_match_as_first_result(matches, search)
    end
  end

  def filter_branches_with_prefix(branches, prefix)
    branches.select { |branch| branch.name.upcase.starts_with?(prefix) }
  end

  def filter_branches_with_suffix(branches, suffix)
    branches.select { |branch| branch.name.upcase.ends_with?(suffix) }
  end

  def filter_branches_by_name(branches, term)
    branches.select { |branch| branch.name.upcase.include?(term) }
  end

  def set_exact_match_as_first_result(matches, term)
    exact_match_index = find_exact_match_index(matches, term)
    matches.insert(0, matches.delete_at(exact_match_index)) if exact_match_index
    matches
  end

  def find_exact_match_index(matches, term)
    matches.index { |branch| branch.name.casecmp(term) == 0 }
  end

  def by_names(branches)
    return branches unless names

    branch_names = names.to_set
    branches.select do |branch|
      branch_names.include?(branch.name)
    end
  end
end