blob_controller.rb 6.52 KB
Newer Older
1
# Controller for viewing a file's blame
2
class Projects::BlobController < Projects::ApplicationController
3
  include ExtractsPath
4
  include CreatesCommit
5
  include RendersBlob
6
  include ActionView::Helpers::SanitizeHelper
7

8 9
  prepend_before_action :authenticate_user!, only: [:edit]

10 11
  before_action :require_non_empty_project, except: [:new, :create]
  before_action :authorize_download_code!
12
  before_action :authorize_edit_tree!, only: [:new, :create, :update, :destroy]
13 14 15
  before_action :assign_blob_vars
  before_action :commit, except: [:new, :create]
  before_action :blob, except: [:new, :create]
16
  before_action :require_branch_head, only: [:edit, :update]
17
  before_action :editor_variables, except: [:show, :preview, :diff]
18
  before_action :validate_diff_params, only: :diff
19
  before_action :set_last_commit_sha, only: [:edit, :update]
20 21 22 23

  def new
    commit unless @repository.empty?
  end
24

25
  def create
26
    create_commit(Files::CreateService, success_notice: "The file has been successfully created.",
27
                                        success_path: -> { project_blob_path(@project, File.join(@branch_name, @file_path)) },
Douwe Maan's avatar
Douwe Maan committed
28
                                        failure_view: :new,
29
                                        failure_path: project_new_blob_path(@project, @ref))
30
  end
31

32
  def show
33
    conditionally_expand_blob(@blob)
Douwe Maan's avatar
Douwe Maan committed
34

35 36
    respond_to do |format|
      format.html do
37
        show_html
38 39 40
      end

      format.json do
41 42
        page_title @blob.path, @ref, @project.name_with_namespace

43
        show_json
44 45
      end
    end
46 47
  end

48
  def edit
49
    if can_collaborate_with_project?
50
      blob.load_all_data!
51 52 53
    else
      redirect_to action: 'show'
    end
54 55 56
  end

  def update
57
    @path = params[:file_path] if params[:file_path].present?
58
    create_commit(Files::UpdateService, success_path: -> { after_edit_path },
Douwe Maan's avatar
Douwe Maan committed
59
                                        failure_view: :edit,
60
                                        failure_path: project_blob_path(@project, @id))
61 62 63
  rescue Files::UpdateService::FileChangedError
    @conflict = true
    render :edit
64 65 66 67
  end

  def preview
    @content = params[:content]
68
    @blob.load_all_data!
69
    diffy = Diffy::Diff.new(@blob.data, @content, diff: '-U 3', include_diff_info: true)
70 71
    diff_lines = diffy.diff.scan(/.*\n/)[2..-1]
    diff_lines = Gitlab::Diff::Parser.new.parse(diff_lines)
72
    @diff_lines = Gitlab::Diff::Highlight.new(diff_lines, repository: @repository).highlight
73 74 75 76

    render layout: false
  end

77
  def destroy
78
    create_commit(Files::DeleteService, success_notice: "The file has been successfully deleted.",
79
                                        success_path: -> { project_tree_path(@project, @branch_name) },
80
                                        failure_view: :show,
81
                                        failure_path: project_blob_path(@project, @id))
82 83
  end

skv's avatar
skv committed
84
  def diff
85 86
    apply_diff_view_cookie!

87 88 89 90 91
    @blob.load_all_data!
    @lines = Gitlab::Highlight.highlight(@blob.path, @blob.data, repository: @repository).lines

    @form = UnfoldForm.new(params)
    @lines = @lines[@form.since - 1..@form.to - 1].map(&:html_safe)
skv's avatar
skv committed
92 93 94 95 96 97 98 99 100 101 102 103

    if @form.bottom?
      @match_line = ''
    else
      lines_length = @lines.length - 1
      line = [@form.since, lines_length].join(',')
      @match_line = "@@ -#{line}+#{line} @@"
    end

    render layout: false
  end

104 105 106
  private

  def blob
107
    @blob ||= @repository.blob_at(@commit.id, @path)
108

109 110 111
    if @blob
      @blob
    else
112 113
      if tree = @repository.tree(@commit.id, @path)
        if tree.entries.any?
114
          return redirect_to project_tree_path(@project, File.join(@ref, @path))
115 116 117
        end
      end

118
      return render_404
119
    end
120
  end
121 122 123 124

  def commit
    @commit = @repository.commit(@ref)

125
    return render_404 unless @commit
126 127 128 129 130 131
  end

  def assign_blob_vars
    @id = params[:id]
    @ref, @path = extract_ref(@id)
  rescue InvalidPathError
132
    render_404
133 134
  end

135 136
  def after_edit_path
    from_merge_request = MergeRequestsFinder.new(current_user, project_id: @project.id).execute.find_by(iid: params[:from_merge_request_iid])
137
    if from_merge_request && @branch_name == @ref
138
      diffs_project_merge_request_path(from_merge_request.target_project, from_merge_request) +
139 140
        "##{hexdigest(@path)}"
    else
141
      project_blob_path(@project, File.join(@branch_name, @path))
142
    end
143
  end
144

145
  def editor_variables
146
    @branch_name = params[:branch_name]
147 148 149

    @file_path =
      if action_name.to_s == 'create'
150 151 152
        if params[:file].present?
          params[:file_name] = params[:file].original_filename
        end
153

154
        File.join(@path, params[:file_name])
155 156
      elsif params[:file_path].present?
        params[:file_path]
157 158 159 160
      else
        @path
      end

161 162 163 164 165
    if params[:file].present?
      params[:content] = Base64.encode64(params[:file].read)
      params[:encoding] = 'base64'
    end

166 167 168
    @commit_params = {
      file_path: @file_path,
      commit_message: params[:commit_message],
169
      previous_path: @path,
170
      file_content: params[:content],
171 172
      file_content_encoding: params[:encoding],
      last_commit_sha: params[:last_commit_sha]
173 174
    }
  end
175 176 177 178 179 180

  def validate_diff_params
    if [:since, :to, :offset].any? { |key| params[key].blank? }
      render nothing: true
    end
  end
181 182

  def set_last_commit_sha
183 184
    @last_commit_sha = Gitlab::Git::Commit
      .last_for_path(@repository, @ref, @path).sha
185
  end
186 187 188 189 190 191 192 193 194 195 196 197 198

  def show_html
    environment_params = @repository.branch_exists?(@ref) ? { ref: @ref } : { commit: @commit }
    @environment = EnvironmentsFinder.new(@project, current_user, environment_params).execute.last
    @last_commit = @repository.last_commit_for_path(@commit.id, @blob.path)

    render 'show'
  end

  def show_json
    json = blob_json(@blob)
    return render_404 unless json

Jacob Schatz's avatar
Jacob Schatz committed
199 200 201 202
    path_segments = @path.split('/')
    path_segments.pop
    tree_path = path_segments.join('/')

203
    render json: json.merge(
204
      id: @blob.id,
205 206 207 208 209 210 211 212 213 214 215 216 217
      path: blob.path,
      name: blob.name,
      extension: blob.extension,
      size: blob.raw_size,
      mime_type: blob.mime_type,
      binary: blob.raw_binary?,
      simple_viewer: blob.simple_viewer&.class&.partial_name,
      rich_viewer: blob.rich_viewer&.class&.partial_name,
      show_viewer_switcher: !!blob.show_viewer_switcher?,
      render_error: blob.simple_viewer&.render_error || blob.rich_viewer&.render_error,
      raw_path: project_raw_path(project, @id),
      blame_path: project_blame_path(project, @id),
      commits_path: project_commits_path(project, @id),
Jacob Schatz's avatar
Jacob Schatz committed
218
      tree_path: project_tree_path(project, File.join(@ref, tree_path)),
219 220 221
      permalink: project_blob_path(project, File.join(@commit.id, @path))
    )
  end
222
end