rosa-build/app/controllers/projects/git/trees_controller.rb

99 lines
3.2 KiB
Ruby
Raw Normal View History

class Projects::Git::TreesController < Projects::Git::BaseController
2015-03-04 23:09:50 +00:00
skip_before_action :set_branch_and_tree, only: :archive
skip_before_action :set_treeish_and_path, only: :archive
before_action :redirect_to_project, only: :show
2015-03-04 23:09:50 +00:00
before_action :resolve_treeish, only: [:branch, :destroy]
2013-07-11 14:03:02 +01:00
2015-03-14 22:10:04 +00:00
# skip_authorize_resource :project, only: [:destroy, :restore_branch, :create]
2015-03-17 00:55:04 +00:00
before_action -> { authorize(@project, :show?) }, only: [:show, :archive, :tags, :branches]
2011-04-04 12:28:33 +01:00
def show
2014-07-10 16:13:23 +01:00
unless request.xhr?
render('empty') and return if @project.is_empty?
@tree = @tree / @path if @path.present?
2014-01-21 04:51:49 +00:00
@commit = @branch.present? ? @branch.commit() : @project.repo.log(@treeish, @path, max_count: 1).first
raise Grit::NoSuchPathError unless @commit
else
@tree = @tree / @path if @path.present?
2014-07-10 16:13:23 +01:00
end
end
def archive
format, @treeish = params[:format], params[:treeish]
raise Grit::NoSuchPathError unless @treeish =~ /^#{@project.name}-/ &&
@treeish !~ /[\s]+/ &&
format =~ /^(zip|tar\.gz)$/
@treeish.gsub!(/^#{@project.name}-/, '')
sha1 = @project.build_scripts.by_active.by_treeish(@treeish).first.try(:sha1)
unless sha1
2012-09-20 12:21:54 +01:00
@commit = @project.repo.commits(@treeish, 1).first
raise Grit::NoSuchPathError unless @commit
tag = @project.repo.tags.find{ |t| t.name == @treeish }
sha1 = @project.get_project_tag_sha1(tag, format) if tag
end
2014-05-02 21:38:28 +01:00
if sha1.present?
redirect_to "#{APP_CONFIG['file_store_url']}/api/v1/file_stores/#{sha1}"
else
archive = @project.archive_by_treeish_and_format @treeish, format
2014-01-21 04:51:49 +00:00
send_file archive[:path], disposition: 'attachment', type: "application/#{format == 'zip' ? 'zip' : 'x-tar-gz'}", filename: archive[:fullname]
end
end
2013-02-12 16:35:14 +00:00
def tags
if request.xhr?
@refs = @project.repo.tags.select{ |t| t.commit }.sort_by(&:name).reverse
render :refs_list
2013-10-02 15:21:16 +01:00
else
respond_to do |format|
2014-01-21 04:51:49 +00:00
format.json { render nothing: true, status: 422 }
2013-10-02 15:21:16 +01:00
format.html
end
end
2013-02-12 16:35:14 +00:00
end
2013-07-12 15:21:46 +01:00
def restore_branch
2015-03-17 00:55:04 +00:00
authorize @project, :write?
2013-07-23 14:29:41 +01:00
status = @project.create_branch(@treeish, params[:sha], current_user) ? 200 : 422
2014-01-21 04:51:49 +00:00
render nothing: true, status: status
2013-07-12 15:21:46 +01:00
end
def create
authorize @project, :write?
status = @project.create_branch(params[:new_ref], params[:from_ref], current_user) ? 200 : 422
2014-01-21 04:51:49 +00:00
render nothing: true, status: status
2013-07-12 15:21:46 +01:00
end
def destroy
authorize @project, :write?
status = @branch && @project.delete_branch(@branch, current_user) ? 200 : 422
2014-01-21 04:51:49 +00:00
render nothing: true, status: status
2013-02-12 16:35:14 +00:00
end
def branches
if request.xhr?
@refs = @project.repo.branches.sort_by(&:name)
render :refs_list
2013-10-02 15:21:16 +01:00
else
respond_to do |format|
2014-01-21 04:51:49 +00:00
format.json { render nothing: true, status: 422 }
2013-10-02 15:21:16 +01:00
format.html
end
end
2013-02-12 16:35:14 +00:00
end
protected
2015-03-04 23:09:50 +00:00
def resolve_treeish
raise Grit::NoSuchPathError if params[:treeish] != @branch.try(:name)
end
def redirect_to_project
if params[:treeish] == @project.resolve_default_branch && params[:path].blank? && !request.xhr?
2015-03-04 23:09:50 +00:00
redirect_to @project
end
end
2012-01-30 20:39:34 +00:00
end