2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2012-05-02 10:18:07 +01:00
|
|
|
class Projects::Git::TreesController < Projects::Git::BaseController
|
2012-09-19 20:29:36 +01:00
|
|
|
before_filter lambda{redirect_to @project if params[:treeish] == @project.default_branch and params[:path].blank?}, :only => :show
|
2013-01-31 17:26:41 +00:00
|
|
|
skip_before_filter :set_branch_and_tree, :set_treeish_and_path, :only => :archive
|
2011-04-04 12:28:33 +01:00
|
|
|
|
2012-07-17 09:02:56 +01:00
|
|
|
def show
|
2013-02-25 14:35:39 +00:00
|
|
|
render('empty') and return if @project.is_empty?
|
2012-07-17 09:02:56 +01:00
|
|
|
@tree = @tree / @path if @path.present?
|
|
|
|
@commit = @branch.present? ? @branch.commit() : @project.repo.log(@treeish, @path, :max_count => 1).first
|
2013-02-21 19:23:45 +00:00
|
|
|
raise Grit::NoSuchPathError unless @commit
|
2011-03-10 12:39:24 +00:00
|
|
|
end
|
2012-04-17 11:18:03 +01:00
|
|
|
|
|
|
|
def archive
|
2013-01-31 17:26:41 +00:00
|
|
|
format, @treeish = params[:format], params[:treeish]
|
2013-02-14 12:46:25 +00:00
|
|
|
if (@treeish =~ /^#{@project.name}-/) && !(@treeish =~ /[\s]+/) && (format =~ /^(zip|tar\.gz)$/)
|
|
|
|
@treeish = @treeish.gsub(/^#{@project.name}-/, '')
|
2012-09-20 12:21:54 +01:00
|
|
|
@commit = @project.repo.commits(@treeish, 1).first
|
2012-09-19 20:29:36 +01:00
|
|
|
end
|
2012-07-17 09:02:56 +01:00
|
|
|
raise Grit::NoSuchPathError unless @commit
|
2013-02-14 21:49:18 +00:00
|
|
|
tag = @project.repo.tags.find{ |t| t.name == @treeish }
|
|
|
|
sha1 = @project.get_project_tag_sha1(tag, format) if tag
|
|
|
|
if sha1
|
|
|
|
redirect_to "#{APP_CONFIG['file_store_url']}/api/v1/file_stores/#{sha1}"
|
2013-02-14 12:46:25 +00:00
|
|
|
else
|
2013-02-14 21:49:18 +00:00
|
|
|
archive = @project.archive_by_treeish_and_format @treeish, format
|
2013-02-14 12:46:25 +00:00
|
|
|
send_file archive[:path], :disposition => 'attachment', :type => "application/#{format == 'zip' ? 'zip' : 'x-tar-gz'}", :filename => archive[:fullname]
|
|
|
|
end
|
2012-04-17 11:18:03 +01:00
|
|
|
end
|
2012-09-20 12:10:52 +01:00
|
|
|
|
2013-02-12 16:35:14 +00:00
|
|
|
def tags
|
2013-02-13 19:29:08 +00:00
|
|
|
@tags = @project.repo.tags.select{ |t| t.commit }.sort_by(&:name).reverse
|
2013-02-13 17:40:16 +00:00
|
|
|
render 'refs'
|
2013-02-12 16:35:14 +00:00
|
|
|
end
|
|
|
|
|
2013-07-11 11:34:44 +01:00
|
|
|
def destroy
|
|
|
|
render :nothing => true
|
|
|
|
end
|
|
|
|
|
2013-02-12 16:35:14 +00:00
|
|
|
def branches
|
2013-02-22 08:03:48 +00:00
|
|
|
raise Grit::NoSuchPathError if params[:treeish] != @branch.try(:name) # get wrong branch name to nonempty project
|
2013-07-11 11:37:02 +01:00
|
|
|
# @branches = @project.repo.branches.sort_by(&:name).select{ |b| b.name != @branch.name }.unshift(@branch).compact if @branch
|
|
|
|
render 'refs'
|
2013-02-12 16:35:14 +00:00
|
|
|
end
|
|
|
|
|
2012-01-30 20:39:34 +00:00
|
|
|
end
|