BigW Consortium Gitlab

notes_finder.rb 972 Bytes
Newer Older
1
class NotesFinder
2 3
  FETCH_OVERLAP = 5.seconds

4 5 6
  def execute(project, current_user, params)
    target_type = params[:target_type]
    target_id   = params[:target_id]
7 8
    # Default to 0 to remain compatible with old clients
    last_fetched_at = Time.at(params.fetch(:last_fetched_at, 0).to_i)
9

10 11 12
    notes =
      case target_type
      when "commit"
13
        project.notes.for_commit_id(target_id).non_diff_notes
14
      when "issue"
15
        IssuesFinder.new(current_user, project_id: project.id).find(target_id).notes.inc_author
16
      when "merge_request"
17
        MergeRequestsFinder.new(current_user, project_id: project.id).find(target_id).mr_and_commit_notes.inc_author
18
      when "snippet", "project_snippet"
19
        project.snippets.find(target_id).notes
20 21 22
      else
        raise 'invalid target_type'
      end
23 24

    # Use overlapping intervals to avoid worrying about race conditions
25
    notes.where('updated_at > ?', last_fetched_at - FETCH_OVERLAP).fresh
26 27
  end
end