2012-09-17 12:38:59 -04:00
|
|
|
# Controller for viewing a repository's file structure
|
2012-09-27 14:59:42 -04:00
|
|
|
class TreeController < ProjectResourceController
|
2012-09-20 13:55:14 -04:00
|
|
|
include ExtractsPath
|
2012-09-17 12:38:59 -04:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
|
|
|
before_filter :authorize_code_access!
|
|
|
|
before_filter :require_non_empty_project
|
|
|
|
|
2012-09-17 14:24:31 -04:00
|
|
|
before_filter :assign_ref_vars
|
2012-09-17 12:38:59 -04:00
|
|
|
|
|
|
|
def show
|
2012-10-09 18:33:22 -04:00
|
|
|
@hex_path = Digest::SHA1.hexdigest(@path)
|
|
|
|
@logs_path = logs_file_project_ref_path(@project, @ref, @path)
|
2012-09-17 14:24:31 -04:00
|
|
|
|
2012-09-17 12:38:59 -04:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
# Disable cache so browser history works
|
|
|
|
format.js { no_cache_headers }
|
|
|
|
end
|
|
|
|
end
|
2012-10-08 11:43:54 -04:00
|
|
|
|
|
|
|
def edit
|
|
|
|
@last_commit = @project.commits(@ref, @path, 1).first.sha
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2012-10-12 07:06:12 -04:00
|
|
|
file_editor = Gitlab::FileEditor.new(current_user, @project, @ref)
|
2012-10-12 10:14:52 -04:00
|
|
|
update_status = file_editor.update(
|
|
|
|
@path,
|
|
|
|
params[:content],
|
|
|
|
params[:commit_message],
|
|
|
|
params[:last_commit]
|
|
|
|
)
|
|
|
|
|
|
|
|
if update_status
|
2012-10-11 17:15:24 -04:00
|
|
|
redirect_to project_tree_path(@project, @id), :notice => "File has been successfully changed"
|
|
|
|
else
|
|
|
|
flash[:notice] = "You can't save file because it has been changed"
|
|
|
|
render :edit
|
|
|
|
end
|
2012-10-08 11:43:54 -04:00
|
|
|
end
|
2012-09-17 12:38:59 -04:00
|
|
|
end
|