BigW Consortium Gitlab

blob_helper.rb 7.84 KB
Newer Older
1
module BlobHelper
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
10

11 12 13 14 15 16 17 18 19 20 21 22 23 24
  def edit_path(project = @project, ref = @ref, path = @path, options = {})
    namespace_project_edit_blob_path(project.namespace, project,
                                     tree_join(ref, path),
                                     options[:link_opts])
  end

  def fork_path(project = @project, ref = @ref, path = @path, options = {})
    continue_params = {
      to: edit_path,
      notice: edit_in_new_fork_notice,
      notice_now: edit_in_new_fork_notice_now
    }
    namespace_project_forks_path(project.namespace, project, namespace_key: current_user.namespace.id, continue: continue_params)
  end
25

26
  def edit_blob_link(project = @project, ref = @ref, path = @path, options = {})
27 28
    blob = options.delete(:blob)
    blob ||= project.repository.blob_at(ref, path) rescue nil
29

30
    return unless blob
31

32
    common_classes = "btn js-edit-blob #{options[:extra_class]}"
33

Douwe Maan committed
34
    if !on_top_of_branch?(project, ref)
35 36
      button_tag 'Edit', class: "#{common_classes} disabled has-tooltip", title: "You can only edit files when you are on a branch", data: { container: 'body' }
    # This condition applies to anonymous or users who can edit directly
37
    elsif !current_user || (current_user && can_modify_blob?(blob, project, ref))
38 39 40
      link_to 'Edit', edit_path(project, ref, path, options), class: "#{common_classes} btn-sm"
    elsif current_user && can?(current_user, :fork_project, project)
      button_tag 'Edit', class: "#{common_classes} js-edit-blob-link-fork-toggler"
41 42 43 44 45 46 47 48 49 50
    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

Douwe Maan committed
51
    if !on_top_of_branch?(project, ref)
52
      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' }
53
    elsif blob.lfs_pointer?
54
      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' }
55
    elsif can_modify_blob?(blob, project, ref)
56 57 58 59 60 61 62
      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
      }
63
      fork_path = namespace_project_forks_path(project.namespace, project, namespace_key: current_user.namespace.id, continue: continue_params)
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 90 91 92

      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

93
  def can_modify_blob?(blob, project = @project, ref = @ref)
94
    !blob.lfs_pointer? && can_edit_tree?(project, ref)
95 96 97 98 99 100 101
  end

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

  def editing_preview_title(filename)
102
    if Gitlab::MarkupHelper.previewable?(filename)
103 104
      'Preview'
    else
105
      'Preview changes'
106 107
    end
  end
108 109 110 111 112 113 114 115

  # 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
116

117
  def blob_text_viewable?(blob)
118
    blob && blob.text? && !blob.lfs_pointer? && !blob.only_display_raw?
119 120
  end

121 122 123 124
  def blob_rendered_as_text?(blob)
    blob_text_viewable?(blob) && blob.to_partial_path(@project) == 'text'
  end

125 126 127 128 129 130 131
  def blob_size(blob)
    if blob.lfs_pointer?
      blob.lfs_size
    else
      blob.size
    end
  end
Stan Hu committed
132 133 134 135 136

  # 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)
137
    blob.data = Gitlab::Sanitizers::SVG.clean(blob.data)
Stan Hu committed
138 139
    blob
  end
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

  # 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
158

Jacob Vosmaer committed
159 160 161 162
  def cached_blob?
    stale = stale?(etag: @blob.id) # The #stale? method sets cache headers.

    # Because we are opionated we set the cache headers ourselves.
163
    response.cache_control[:public] = @project.public?
164

Douwe Maan committed
165 166 167 168 169 170 171 172 173 174 175
    response.cache_control[:max_age] =
      if @ref && @commit && @ref == @commit.id
        # This is a link to a commit by its commit SHA. That means that the blob
        # is immutable. The only reason to invalidate the cache is if the commit
        # was deleted or if the user lost access to the repository.
        Blob::CACHE_TIME_IMMUTABLE
      else
        # A branch or tag points at this blob. That means that the expected blob
        # value may change over time.
        Blob::CACHE_TIME
      end
176

177
    response.etag = @blob.id
Jacob Vosmaer committed
178
    !stale
179
  end
180 181 182 183 184 185 186

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

    licenses = Licensee::License.all

    @licenses_for_select = {
187 188
      Popular: licenses.select(&:featured).map { |license| { name: license.name, id: license.key } },
      Other: licenses.reject(&:featured).map { |license| { name: license.name, id: license.key } }
189 190
    }
  end
191

192 193 194 195
  def ref_project
    @ref_project ||= @target_project || @project
  end

196
  def gitignore_names
197
    @gitignore_names ||= Gitlab::Template::GitignoreTemplate.dropdown_names
198
  end
199

200
  def gitlab_ci_ymls
201
    @gitlab_ci_ymls ||= Gitlab::Template::GitlabCiYmlTemplate.dropdown_names(params[:context])
202
  end
203

204 205 206 207
  def dockerfile_names
    @dockerfile_names ||= Gitlab::Template::DockerfileTemplate.dropdown_names
  end

208 209 210 211 212 213 214
  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
Douwe Maan committed
215 216

  def copy_file_path_button(file_path)
217
    clipboard_button(text: file_path, gfm: "`#{file_path}`", class: 'btn-clipboard btn-transparent prepend-left-5', title: 'Copy file path to clipboard')
Douwe Maan committed
218 219 220 221 222
  end

  def copy_blob_content_button(blob)
    return if markup?(blob.name)

223
    clipboard_button(target: ".blob-content[data-blob-id='#{blob.id}']", class: "btn btn-sm", title: "Copy content to clipboard")
Douwe Maan committed
224 225 226
  end

  def open_raw_file_button(path)
227
    link_to icon('file-code-o'), path, class: 'btn btn-sm has-tooltip', target: '_blank', rel: 'noopener noreferrer', title: 'Open raw', data: { container: 'body' }
Douwe Maan committed
228
  end
229
end