2014-09-02 18:07:02 +05:30
|
|
|
# Controller for viewing a file's blame
|
|
|
|
class Projects::BlobController < Projects::ApplicationController
|
|
|
|
include ExtractsPath
|
2016-01-14 18:37:52 +05:30
|
|
|
include CreatesCommit
|
2015-04-26 12:48:37 +05:30
|
|
|
include ActionView::Helpers::SanitizeHelper
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
# Raised when given an invalid file path
|
|
|
|
class InvalidPathError < StandardError; end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :require_non_empty_project, except: [:new, :create]
|
|
|
|
before_action :authorize_download_code!
|
2016-01-14 18:37:52 +05:30
|
|
|
before_action :authorize_edit_tree!, only: [:new, :create, :edit, :update, :destroy]
|
2015-09-11 14:41:01 +05:30
|
|
|
before_action :assign_blob_vars
|
|
|
|
before_action :commit, except: [:new, :create]
|
|
|
|
before_action :blob, except: [:new, :create]
|
|
|
|
before_action :from_merge_request, only: [:edit, :update]
|
|
|
|
before_action :require_branch_head, only: [:edit, :update]
|
2015-09-25 12:07:36 +05:30
|
|
|
before_action :editor_variables, except: [:show, :preview, :diff]
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
def new
|
|
|
|
commit unless @repository.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2016-01-14 18:37:52 +05:30
|
|
|
create_commit(Files::CreateService, success_notice: "The file has been successfully created.",
|
|
|
|
success_path: namespace_project_blob_path(@project.namespace, @project, File.join(@target_branch, @file_path)),
|
2015-11-26 14:37:03 +05:30
|
|
|
failure_view: :new,
|
|
|
|
failure_path: namespace_project_new_blob_path(@project.namespace, @project, @ref))
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
2015-04-26 12:48:37 +05:30
|
|
|
def edit
|
|
|
|
@last_commit = Gitlab::Git::Commit.last_for_path(@repository, @ref, @path).sha
|
2016-04-02 18:10:28 +05:30
|
|
|
blob.load_all_data!(@repository)
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2016-01-14 18:37:52 +05:30
|
|
|
after_edit_path =
|
|
|
|
if from_merge_request && @target_branch == @ref
|
|
|
|
diffs_namespace_project_merge_request_path(from_merge_request.target_project.namespace, from_merge_request.target_project, from_merge_request) +
|
|
|
|
"#file-path-#{hexdigest(@path)}"
|
|
|
|
else
|
|
|
|
namespace_project_blob_path(@project.namespace, @project, File.join(@target_branch, @path))
|
|
|
|
end
|
|
|
|
|
2015-11-26 14:37:03 +05:30
|
|
|
create_commit(Files::UpdateService, success_path: after_edit_path,
|
|
|
|
failure_view: :edit,
|
|
|
|
failure_path: namespace_project_blob_path(@project.namespace, @project, @id))
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def preview
|
|
|
|
@content = params[:content]
|
2016-04-02 18:10:28 +05:30
|
|
|
@blob.load_all_data!(@repository)
|
2015-04-26 12:48:37 +05:30
|
|
|
diffy = Diffy::Diff.new(@blob.data, @content, diff: '-U 3', include_diff_info: true)
|
2016-01-29 22:53:50 +05:30
|
|
|
diff_lines = diffy.diff.scan(/.*\n/)[2..-1]
|
|
|
|
diff_lines = Gitlab::Diff::Parser.new.parse(diff_lines)
|
|
|
|
@diff_lines = Gitlab::Diff::Highlight.new(diff_lines).highlight
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
render layout: false
|
|
|
|
end
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
def destroy
|
2016-01-14 18:37:52 +05:30
|
|
|
create_commit(Files::DeleteService, success_notice: "The file has been successfully deleted.",
|
|
|
|
success_path: namespace_project_tree_path(@project.namespace, @project, @target_branch),
|
|
|
|
failure_view: :show,
|
|
|
|
failure_path: namespace_project_blob_path(@project.namespace, @project, @id))
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def diff
|
2016-01-29 22:53:50 +05:30
|
|
|
@form = UnfoldForm.new(params)
|
|
|
|
@lines = Gitlab::Highlight.highlight_lines(repository, @ref, @path)
|
|
|
|
@lines = @lines[@form.since - 1..@form.to - 1]
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def blob
|
2016-06-02 11:05:42 +05:30
|
|
|
@blob ||= Blob.decorate(@repository.blob_at(@commit.id, @path))
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
if @blob
|
|
|
|
@blob
|
|
|
|
else
|
2015-04-26 12:48:37 +05:30
|
|
|
if tree = @repository.tree(@commit.id, @path)
|
|
|
|
if tree.entries.any?
|
|
|
|
redirect_to namespace_project_tree_path(@project.namespace, @project, File.join(@ref, @path)) and return
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
return render_404
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
def commit
|
|
|
|
@commit = @repository.commit(@ref)
|
|
|
|
|
2015-10-24 18:46:33 +05:30
|
|
|
return render_404 unless @commit
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def assign_blob_vars
|
|
|
|
@id = params[:id]
|
|
|
|
@ref, @path = extract_ref(@id)
|
|
|
|
|
|
|
|
rescue InvalidPathError
|
2015-10-24 18:46:33 +05:30
|
|
|
render_404
|
2015-04-26 12:48:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def from_merge_request
|
|
|
|
# If blob edit was initiated from merge request page
|
|
|
|
@from_merge_request ||= MergeRequest.find_by(id: params[:from_merge_request_id])
|
|
|
|
end
|
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
def editor_variables
|
2016-01-14 18:37:52 +05:30
|
|
|
@target_branch = params[:target_branch]
|
2015-09-25 12:07:36 +05:30
|
|
|
|
|
|
|
@file_path =
|
|
|
|
if action_name.to_s == 'create'
|
|
|
|
if params[:file].present?
|
|
|
|
params[:file_name] = params[:file].original_filename
|
|
|
|
end
|
2015-11-26 14:37:03 +05:30
|
|
|
File.join(@path, params[:file_name])
|
2015-09-25 12:07:36 +05:30
|
|
|
else
|
|
|
|
@path
|
|
|
|
end
|
|
|
|
|
|
|
|
if params[:file].present?
|
|
|
|
params[:content] = Base64.encode64(params[:file].read)
|
|
|
|
params[:encoding] = 'base64'
|
|
|
|
end
|
|
|
|
|
|
|
|
@commit_params = {
|
|
|
|
file_path: @file_path,
|
|
|
|
commit_message: params[:commit_message],
|
|
|
|
file_content: params[:content],
|
|
|
|
file_content_encoding: params[:encoding]
|
|
|
|
}
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|