summaryrefslogtreecommitdiff
path: root/app/contexts/commit_load.rb
blob: f57c49692ca1edefd9622d36c76eef898ac16604 (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
class CommitLoad < BaseContext
  def execute
    result = { 
      commit: nil,
      suppress_diff: false,
      line_notes: [],
      notes_count: 0,
      note: nil
    }

    commit = project.commit(params[:id])

    if commit 
      commit = CommitDecorator.decorate(commit)
      line_notes = project.commit_line_notes(commit)

      result[:suppress_diff] = true if commit.diffs.size > 200 && !params[:force_show_diff]
      result[:commit] = commit
      result[:note] = project.build_commit_note(commit)
      result[:line_notes] = line_notes
      result[:notes_count] = line_notes.count + project.commit_notes(commit).count
    end

    result
  end
end