commits_helper.rb 7.1 KB
Newer Older
1
# encoding: utf-8
G
gitlabhq 已提交
2
module CommitsHelper
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
  # Returns a link to the commit author. If the author has a matching user and
  # is a member of the current @project it will link to the team member page.
  # Otherwise it will link to the author email as specified in the commit.
  #
  # options:
  #  avatar: true will prepend the avatar image
  #  size:   size of the avatar image in px
  def commit_author_link(commit, options = {})
    commit_person_link(commit, options.merge(source: :author))
  end

  # Just like #author_link but for the committer.
  def commit_committer_link(commit, options = {})
    commit_person_link(commit, options.merge(source: :committer))
  end

19 20
  def image_diff_class(diff)
    if diff.deleted_file
21
      "deleted"
22
    elsif diff.new_file
23
      "added"
24 25 26 27
    else
      nil
    end
  end
V
Valeriy Sizov 已提交
28

D
Dmitriy Zaporozhets 已提交
29 30 31
  def commit_to_html(commit, project, inline = true)
    template = inline ? "inline_commit" : "commit"
    escape_javascript(render "projects/commits/#{template}", commit: commit, project: project) unless commit.nil?
32
  end
33

34 35 36 37 38 39
  # Breadcrumb links for a Project and, if applicable, a tree path
  def commits_breadcrumbs
    return unless @project && @ref

    # Add the root project link and the arrow icon
    crumbs = content_tag(:li) do
V
Vinnie Okada 已提交
40 41 42 43
      link_to(
        @project.path,
        namespace_project_commits_path(@project.namespace, @project, @ref)
      )
44 45 46 47 48 49
    end

    if @path
      parts = @path.split('/')

      parts.each_with_index do |part, i|
50
        crumbs << content_tag(:li) do
51
          # The text is just the individual part, but the link needs all the parts before it
V
Vinnie Okada 已提交
52 53 54 55 56 57 58 59
          link_to(
            part,
            namespace_project_commits_path(
              @project.namespace,
              @project,
              tree_join(@ref, parts[0..i].join('/'))
            )
          )
60 61 62 63 64 65 66
        end
      end
    end

    crumbs.html_safe
  end

67 68 69 70 71 72 73 74
  # Return Project default branch, if it present in array
  # Else - first branch in array (mb last actual branch)
  def commit_default_branch(project, branches)
    branches.include?(project.default_branch) ? branches.delete(project.default_branch) : branches.pop
  end

  # Returns the sorted alphabetically links to branches, separated by a comma
  def commit_branches_links(project, branches)
75
    branches.sort.map do |branch|
V
Vinnie Okada 已提交
76 77 78
      link_to(
        namespace_project_tree_path(project.namespace, project, branch)
      ) do
79
        content_tag :span, class: 'label label-gray' do
80
          icon('code-fork') + ' ' + branch
81 82 83
        end
      end
    end.join(" ").html_safe
84 85
  end

H
Hannes Rosenögger 已提交
86 87 88
  # Returns the sorted links to tags, separated by a comma
  def commit_tags_links(project, tags)
    sorted = VersionSorter.rsort(tags)
89
    sorted.map do |tag|
V
Vinnie Okada 已提交
90 91 92 93
      link_to(
        namespace_project_commits_path(project.namespace, project,
                                       project.repository.find_tag(tag).name)
      ) do
94
        content_tag :span, class: 'label label-gray' do
95
          icon('tag') + ' ' + tag
96 97 98
        end
      end
    end.join(" ").html_safe
H
Hannes Rosenögger 已提交
99 100
  end

101 102 103
  def link_to_browse_code(project, commit)
    if current_controller?(:projects, :commits)
      if @repo.blob_at(commit.id, @path)
V
Vinnie Okada 已提交
104 105 106 107 108 109
        return link_to(
          "Browse File »",
          namespace_project_blob_path(project.namespace, project,
                                      tree_join(commit.id, @path)),
          class: "pull-right"
        )
110
      elsif @path.present?
V
Vinnie Okada 已提交
111
        return link_to(
112
          "Browse Directory »",
V
Vinnie Okada 已提交
113 114 115 116
          namespace_project_tree_path(project.namespace, project,
                                      tree_join(commit.id, @path)),
          class: "pull-right"
        )
117 118
      end
    end
V
Vinnie Okada 已提交
119
    link_to(
120
      "Browse Files »",
V
Vinnie Okada 已提交
121 122 123
      namespace_project_tree_path(project.namespace, project, commit),
      class: "pull-right"
    )
124 125
  end

126
  def revert_commit_link(commit, continue_to_path, btn_class: nil)
127 128
    return unless current_user

129 130
    tooltip = "Revert this #{revert_commit_type(commit)} in a new merge request"

131
    if can_collaborate_with_project?
R
Rubén Dávila 已提交
132
      content_tag :span, 'data-toggle' => 'modal', 'data-target' => '#modal-revert-commit' do
133
        link_to 'Revert', '#modal-revert-commit', 'data-toggle' => 'tooltip', 'data-container' => 'body', title: tooltip, class: "btn btn-default btn-grouped btn-#{btn_class}"
R
Rubén Dávila 已提交
134
      end
135
    elsif can?(current_user, :fork_project, @project)
136 137 138 139 140 141
      continue_params = {
        to: continue_to_path,
        notice: edit_in_new_fork_notice + ' Try to revert this commit again.',
        notice_now: edit_in_new_fork_notice_now
      }
      fork_path = namespace_project_forks_path(@project.namespace, @project,
R
Rubén Dávila 已提交
142 143
        namespace_key: current_user.namespace.id,
        continue: continue_params)
144

145
      link_to 'Revert', fork_path, class: 'btn btn-grouped btn-close', method: :post, 'data-toggle' => 'tooltip', 'data-container' => 'body', title: tooltip
146 147 148 149 150 151 152 153
    end
  end

  def revert_commit_type(commit)
    if commit.merged_merge_request
      'merge request'
    else
      'commit'
154
    end
155 156
  end

157 158 159 160 161 162 163 164 165 166 167
  protected

  # Private: Returns a link to a person. If the person has a matching user and
  # is a member of the current @project it will link to the team member page.
  # Otherwise it will link to the person email as specified in the commit.
  #
  # options:
  #  source: one of :author or :committer
  #  avatar: true will prepend the avatar image
  #  size:   size of the avatar image in px
  def commit_person_link(commit, options = {})
D
Douwe Maan 已提交
168
    user = commit.send(options[:source])
169

170 171
    source_name = clean(commit.send "#{options[:source]}_name".to_sym)
    source_email = clean(commit.send "#{options[:source]}_email".to_sym)
D
Dmitriy Zaporozhets 已提交
172

D
Douwe Maan 已提交
173 174
    person_name = user.try(:name) || source_name
    person_email = user.try(:email) || source_email
D
Dmitriy Zaporozhets 已提交
175

176 177 178 179 180 181 182
    text =
      if options[:avatar]
        avatar = image_tag(avatar_icon(person_email, options[:size]), class: "avatar #{"s#{options[:size]}" if options[:size]}", width: options[:size], alt: "")
        %Q{#{avatar} <span class="commit-#{options[:source]}-name">#{person_name}</span>}
      else
        person_name
      end
183

184 185
    options = {
      class: "commit-#{options[:source]}-link has_tooltip",
186
      data: { 'original-title'.to_sym => sanitize(source_email) }
187 188
    }

189
    if user.nil?
190
      mail_to(source_email, text.html_safe, options)
191
    else
192
      link_to(text.html_safe, user_path(user), options)
193 194
    end
  end
195

S
skv 已提交
196
  def view_file_btn(commit_sha, diff, project)
V
Vinnie Okada 已提交
197 198 199
    link_to(
      namespace_project_blob_path(project.namespace, project,
                                  tree_join(commit_sha, diff.new_path)),
D
Douwe Maan 已提交
200
      class: 'btn view-file js-view-file'
V
Vinnie Okada 已提交
201
    ) do
S
skv 已提交
202 203 204 205
      raw('View file @') + content_tag(:span, commit_sha[0..6],
                                       class: 'commit-short-id')
    end
  end
206 207 208 209

  def truncate_sha(sha)
    Commit.truncate_sha(sha)
  end
210 211 212 213

  def clean(string)
    Sanitize.clean(string, remove_contents: true)
  end
214 215 216 217 218 219 220 221 222 223 224 225

  def limited_commits(commits)
    if commits.size > MergeRequestDiff::COMMITS_SAFE_SIZE
      # Not 100% sure we need to decorate but it is idempotent and not so slow
      [
        commits.first(MergeRequestDiff::COMMITS_SAFE_SIZE),
        commits.size - MergeRequestDiff::COMMITS_SAFE_SIZE
      ]
    else
      [commits, 0]
    end
  end
G
gitlabhq 已提交
226
end