blob_helper.rb 6.8 KB
Newer Older
1
module BlobHelper
H
http://jneen.net/ 已提交
2 3
  def highlight(blob_name, blob_content, repository: nil, plain: false)
    highlighted = Gitlab::Highlight.highlight(blob_name, blob_content, plain: plain, repository: repository)
4
    raw %(<pre class="code highlight"><code>#{highlighted}</code></pre>)
5 6 7
  end

  def no_highlight_files
8
    %w(credits changelog news copying copyright license authors)
9
  end
D
Dmitriy Zaporozhets 已提交
10

11 12 13
  def edit_blob_link(project = @project, ref = @ref, path = @path, options = {})
    return unless current_user

14 15
    blob = options.delete(:blob)
    blob ||= project.repository.blob_at(ref, path) rescue nil
16

17
    return unless blob
18 19 20

    edit_path = namespace_project_edit_blob_path(project.namespace, project,
                                     tree_join(ref, path),
21
                                     options[:link_opts])
22

D
Douwe Maan 已提交
23
    if !on_top_of_branch?(project, ref)
N
Nur Rony 已提交
24
      button_tag "Edit", class: "btn disabled has-tooltip", title: "You can only edit files when you are on a branch", data: { container: 'body' }
D
Douwe Maan 已提交
25
    elsif can_edit_blob?(blob, project, ref)
26
      link_to "Edit", edit_path, class: 'btn btn-sm'
27 28 29 30 31 32
    elsif can?(current_user, :fork_project, project)
      continue_params = {
        to:     edit_path,
        notice: edit_in_new_fork_notice,
        notice_now: edit_in_new_fork_notice_now
      }
R
Rubén Dávila 已提交
33
      fork_path = namespace_project_forks_path(project.namespace, project, namespace_key: current_user.namespace.id, continue: continue_params)
34

N
Nur Rony 已提交
35
      link_to "Edit", fork_path, class: 'btn', method: :post
36 37 38 39 40 41 42 43 44 45
    end
  end

  def modify_file_link(project = @project, ref = @ref, path = @path, label:, action:, btn_class:, modal_type:)
    return unless current_user

    blob = project.repository.blob_at(ref, path) rescue nil

    return unless blob

D
Douwe Maan 已提交
46
    if !on_top_of_branch?(project, ref)
47
      button_tag label, class: "btn btn-#{btn_class} disabled has-tooltip", title: "You can only #{action} files when you are on a branch", data: { container: 'body' }
D
Douwe Maan 已提交
48
    elsif blob.lfs_pointer?
49
      button_tag label, class: "btn btn-#{btn_class} disabled has-tooltip", title: "It is not possible to #{action} files that are stored in LFS using the web interface", data: { container: 'body' }
D
Douwe Maan 已提交
50
    elsif can_edit_blob?(blob, project, ref)
51 52 53 54 55 56 57
      button_tag label, class: "btn btn-#{btn_class}", 'data-target' => "#modal-#{modal_type}-blob", 'data-toggle' => 'modal'
    elsif can?(current_user, :fork_project, project)
      continue_params = {
        to:     request.fullpath,
        notice: edit_in_new_fork_notice + " Try to #{action} this file again.",
        notice_now: edit_in_new_fork_notice_now
      }
R
Rubén Dávila 已提交
58
      fork_path = namespace_project_forks_path(project.namespace, project, namespace_key: current_user.namespace.id, continue: continue_params)
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89

      link_to label, fork_path, class: "btn btn-#{btn_class}", method: :post
    end
  end

  def replace_blob_link(project = @project, ref = @ref, path = @path)
    modify_file_link(
      project,
      ref,
      path,
      label:      "Replace",
      action:     "replace",
      btn_class:  "default",
      modal_type: "upload"
    )
  end

  def delete_blob_link(project = @project, ref = @ref, path = @path)
    modify_file_link(
      project,
      ref,
      path,
      label:      "Delete",
      action:     "delete",
      btn_class:  "remove",
      modal_type: "remove"
    )
  end

  def can_edit_blob?(blob, project = @project, ref = @ref)
    !blob.lfs_pointer? && can_edit_tree?(project, ref)
D
Dmitriy Zaporozhets 已提交
90 91 92 93 94 95 96
  end

  def leave_edit_message
    "Leave edit mode?\nAll unsaved changes will be lost."
  end

  def editing_preview_title(filename)
97
    if Gitlab::MarkupHelper.previewable?(filename)
D
Dmitriy Zaporozhets 已提交
98 99
      'Preview'
    else
D
Douwe Maan 已提交
100
      'Preview Changes'
D
Dmitriy Zaporozhets 已提交
101 102
    end
  end
103 104 105 106 107 108 109 110

  # Return an image icon depending on the file mode and extension
  #
  # mode - File unix mode
  # mode - File name
  def blob_icon(mode, name)
    icon("#{file_type_icon_class('file', mode, name)} fw")
  end
111

D
Douwe Maan 已提交
112
  def blob_text_viewable?(blob)
113
    blob && blob.text? && !blob.lfs_pointer? && !blob.only_display_raw?
114 115 116 117 118 119 120 121 122
  end

  def blob_size(blob)
    if blob.lfs_pointer?
      blob.lfs_size
    else
      blob.size
    end
  end
S
Stan Hu 已提交
123 124 125 126 127

  # SVGs can contain malicious JavaScript; only include whitelisted
  # elements and attributes. Note that this whitelist is by no means complete
  # and may omit some elements.
  def sanitize_svg(blob)
128
    blob.data = Gitlab::Sanitizers::SVG.clean(blob.data)
S
Stan Hu 已提交
129 130
    blob
  end
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148

  # If we blindly set the 'real' content type when serving a Git blob we
  # are enabling XSS attacks. An attacker could upload e.g. a Javascript
  # file to a Git repository, trick the browser of a victim into
  # downloading the blob, and then the 'application/javascript' content
  # type would tell the browser to execute the attacker's Javascript. By
  # overriding the content type and setting it to 'text/plain' (in the
  # example of Javascript) we tell the browser of the victim not to
  # execute untrusted data.
  def safe_content_type(blob)
    if blob.text?
      'text/plain; charset=utf-8'
    elsif blob.image?
      blob.content_type
    else
      'application/octet-stream'
    end
  end
149

J
Jacob Vosmaer 已提交
150 151 152 153
  def cached_blob?
    stale = stale?(etag: @blob.id) # The #stale? method sets cache headers.

    # Because we are opionated we set the cache headers ourselves.
154
    response.cache_control[:public] = @project.public?
155 156 157

    if @ref && @commit && @ref == @commit.id
      # This is a link to a commit by its commit SHA. That means that the blob
J
Jacob Vosmaer 已提交
158 159
      # is immutable. The only reason to invalidate the cache is if the commit
      # was deleted or if the user lost access to the repository.
160
      response.cache_control[:max_age] = Blob::CACHE_TIME_IMMUTABLE
161 162 163
    else
      # A branch or tag points at this blob. That means that the expected blob
      # value may change over time.
164
      response.cache_control[:max_age] = Blob::CACHE_TIME
165 166
    end

167
    response.etag = @blob.id
J
Jacob Vosmaer 已提交
168
    !stale
169
  end
170 171 172 173 174 175 176

  def licenses_for_select
    return @licenses_for_select if defined?(@licenses_for_select)

    licenses = Licensee::License.all

    @licenses_for_select = {
177 178
      Popular: licenses.select(&:featured).map { |license| { name: license.name, id: license.key } },
      Other: licenses.reject(&:featured).map { |license| { name: license.name, id: license.key } }
179 180
    }
  end
181

182 183 184 185
  def ref_project
    @ref_project ||= @target_project || @project
  end

A
Alfredo Sumaran 已提交
186
  def gitignore_names
187
    @gitignore_names ||= Gitlab::Template::GitignoreTemplate.dropdown_names
188
  end
A
Alfredo Sumaran 已提交
189

190
  def gitlab_ci_ymls
191
    @gitlab_ci_ymls ||= Gitlab::Template::GitlabCiYmlTemplate.dropdown_names(params[:context])
192
  end
S
Sean McGivern 已提交
193

194 195 196 197
  def dockerfile_names
    @dockerfile_names ||= Gitlab::Template::DockerfileTemplate.dropdown_names
  end

S
Sean McGivern 已提交
198 199 200 201 202 203 204
  def blob_editor_paths
    {
      'relative-url-root' => Rails.application.config.relative_url_root,
      'assets-prefix' => Gitlab::Application.config.assets.prefix,
      'blob-language' => @blob && @blob.language.try(:ace_mode)
    }
  end
205
end