Class: Banzai::Filter::References::CommitReferenceFilter

Inherits:
AbstractReferenceFilter show all
Defined in:
lib/banzai/filter/references/commit_reference_filter.rb

Overview

HTML filter that replaces commit references with links.

This filter supports cross-project references.

Constant Summary

Constants inherited from AbstractReferenceFilter

AbstractReferenceFilter::REFERENCE_PLACEHOLDER, AbstractReferenceFilter::REFERENCE_PLACEHOLDER_PATTERN

Constants inherited from ReferenceFilter

ReferenceFilter::REFERENCE_TYPE_DATA_ATTRIBUTE

Instance Method Summary collapse

Methods inherited from AbstractReferenceFilter

#call, #data_attributes_for, #find_object_cached, #find_object_from_link, #find_object_from_link_cached, #from_ref_cached, #identifier, #initialize, #object_link_filter, #object_link_text, #object_link_title, #parent, #parent_type, #record_identifier, #symbol_from_match, #url_for_object_cached, #wrap_link

Methods included from CrossProjectReference

#parent_from_ref

Methods inherited from ReferenceFilter

call, #call, #call_and_update_nodes, #each_node, #group, #initialize, #nodes, #object_class, #project, #requires_unescaping?

Methods included from OutputSafety

#escape_once

Methods included from RequestStoreReferenceCache

#cached_call, #get_or_set_cache

Constructor Details

This class inherits a constructor from Banzai::Filter::References::AbstractReferenceFilter

Instance Method Details

#find_object(project, id) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/banzai/filter/references/commit_reference_filter.rb', line 19

def find_object(project, id)
  return unless project.is_a?(Project) && project.valid_repo?

  # Optimization: try exact commit hash match first
  record = reference_cache.records_per_parent[project].fetch(id, nil)

  unless record
    _, record = reference_cache.records_per_parent[project].detect { |k, _v| Gitlab::Git.shas_eql?(k, id) }
  end

  record
end


63
64
65
66
67
68
69
70
71
72
# File 'lib/banzai/filter/references/commit_reference_filter.rb', line 63

def object_link_text_extras(object, matches)
  extras = super

  path = matches[:path] if matches.names.include?("path")
  if path == '/builds'
    extras.unshift "builds"
  end

  extras
end

#parent_records(parent, ids) ⇒ Object



74
75
76
# File 'lib/banzai/filter/references/commit_reference_filter.rb', line 74

def parent_records(parent, ids)
  parent.commits_by(oids: ids.to_a)
end

#parse_symbol(sha_hash, _match) ⇒ Object

The default behaviour is ‘#to_i` - we just pass the hash through.



44
45
46
# File 'lib/banzai/filter/references/commit_reference_filter.rb', line 44

def parse_symbol(sha_hash, _match)
  sha_hash
end

#referenced_merge_request_commit_shasObject



32
33
34
35
36
37
38
39
40
41
# File 'lib/banzai/filter/references/commit_reference_filter.rb', line 32

def referenced_merge_request_commit_shas
  return [] unless noteable.is_a?(MergeRequest)

  @referenced_merge_request_commit_shas ||= begin
    referenced_shas = reference_cache.references_per_parent.values.reduce(:|).to_a
    noteable.all_commit_shas.select do |sha|
      referenced_shas.any? { |ref| Gitlab::Git.shas_eql?(sha, ref) }
    end
  end
end

#references_in(text, pattern = object_reference_pattern) ⇒ Object



13
14
15
16
17
# File 'lib/banzai/filter/references/commit_reference_filter.rb', line 13

def references_in(text, pattern = object_reference_pattern)
  text.gsub(pattern) do |match|
    yield match, $~[:commit], $~[:project], $~[:namespace], $~
  end
end

#url_for_object(commit, project) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/banzai/filter/references/commit_reference_filter.rb', line 48

def url_for_object(commit, project)
  h = Gitlab::Routing.url_helpers

  if referenced_merge_request_commit_shas.include?(commit.id)
    h.diffs_project_merge_request_url(
      project,
      noteable,
      commit_id: commit.id,
      only_path: only_path?
    )
  else
    h.project_commit_url(project, commit, only_path: only_path?)
  end
end