2012-09-17 18:38:59 +02:00
|
|
|
# Controller for viewing a repository's file structure
|
2012-09-27 20:59:42 +02:00
|
|
|
class TreeController < ProjectResourceController
|
2012-09-20 19:55:14 +02:00
|
|
|
include ExtractsPath
|
2012-09-17 18:38:59 +02:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
|
|
|
before_filter :authorize_code_access!
|
|
|
|
before_filter :require_non_empty_project
|
|
|
|
|
2012-09-17 20:24:31 +02:00
|
|
|
before_filter :assign_ref_vars
|
2012-10-15 21:47:38 +02:00
|
|
|
before_filter :edit_requirements, only: [:edit, :update]
|
2012-09-17 18:38:59 +02:00
|
|
|
|
|
|
|
def show
|
2012-10-10 00:33:22 +02:00
|
|
|
@hex_path = Digest::SHA1.hexdigest(@path)
|
|
|
|
@logs_path = logs_file_project_ref_path(@project, @ref, @path)
|
2012-09-17 20:24:31 +02:00
|
|
|
|
2012-09-17 18:38:59 +02:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
# Disable cache so browser history works
|
|
|
|
format.js { no_cache_headers }
|
|
|
|
end
|
|
|
|
end
|
2012-10-08 17:43:54 +02:00
|
|
|
|
|
|
|
def edit
|
2013-01-04 20:45:30 +01:00
|
|
|
@last_commit = @project.repository.last_commit_for(@ref, @path).sha
|
2012-10-08 17:43:54 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2012-10-26 01:59:50 +02:00
|
|
|
edit_file_action = Gitlab::Satellite::EditFileAction.new(current_user, @project, @ref, @path)
|
|
|
|
updated_successfully = edit_file_action.commit!(
|
2012-10-15 18:51:11 +02:00
|
|
|
params[:content],
|
|
|
|
params[:commit_message],
|
2012-10-12 16:14:52 +02:00
|
|
|
params[:last_commit]
|
|
|
|
)
|
2012-10-15 18:51:11 +02:00
|
|
|
|
2012-10-26 01:59:50 +02:00
|
|
|
if updated_successfully
|
2012-10-16 12:45:30 +02:00
|
|
|
redirect_to project_tree_path(@project, @id), notice: "Your changes have been successfully commited"
|
2012-10-11 23:15:24 +02:00
|
|
|
else
|
2012-10-16 12:45:30 +02:00
|
|
|
flash[:notice] = "Your changes could not be commited, because the file has been changed"
|
2012-10-15 18:51:11 +02:00
|
|
|
render :edit
|
2012-10-11 23:15:24 +02:00
|
|
|
end
|
2012-10-08 17:43:54 +02:00
|
|
|
end
|
2012-10-15 21:47:38 +02:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def edit_requirements
|
|
|
|
unless @tree.is_blob? && @tree.text?
|
|
|
|
redirect_to project_tree_path(@project, @id), notice: "You can only edit text files"
|
|
|
|
end
|
2012-10-21 11:12:14 +02:00
|
|
|
|
|
|
|
allowed = if project.protected_branch? @ref
|
|
|
|
can?(current_user, :push_code_to_protected_branches, project)
|
|
|
|
else
|
|
|
|
can?(current_user, :push_code, project)
|
|
|
|
end
|
|
|
|
|
|
|
|
return access_denied! unless allowed
|
2012-10-15 21:47:38 +02:00
|
|
|
end
|
2012-09-17 18:38:59 +02:00
|
|
|
end
|