2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-03-10 12:39:24 +00:00
|
|
|
class Git::BaseController < ApplicationController
|
|
|
|
before_filter :authenticate_user!
|
2012-03-31 00:37:54 +01:00
|
|
|
skip_before_filter :authenticate_user!, :only => [:show, :index, :blame, :raw] if APP_CONFIG['anonymous_access']
|
2012-03-21 19:55:14 +00:00
|
|
|
load_and_authorize_resource :project
|
2011-03-10 12:39:24 +00:00
|
|
|
|
2011-03-11 17:19:47 +00:00
|
|
|
before_filter :find_git_repository
|
2011-04-04 17:00:24 +01:00
|
|
|
before_filter :find_tags
|
|
|
|
before_filter :find_branches
|
|
|
|
before_filter :set_treeish
|
|
|
|
before_filter :set_current_tag
|
|
|
|
before_filter :set_current_branch
|
2011-03-10 12:39:24 +00:00
|
|
|
|
|
|
|
protected
|
2011-03-11 17:19:47 +00:00
|
|
|
def find_git_repository
|
|
|
|
@git_repository = @project.git_repository
|
2011-03-10 12:39:24 +00:00
|
|
|
end
|
2011-04-04 17:00:24 +01:00
|
|
|
|
|
|
|
def find_tags
|
|
|
|
@tags = @git_repository.tags
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_branches
|
|
|
|
@branches = @git_repository.branches
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_treeish
|
2012-03-21 19:55:14 +00:00
|
|
|
@treeish = params[:treeish].presence || @project.default_branch
|
2011-04-04 17:00:24 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_current_tag
|
|
|
|
@current_tag = @tags.select{|t| t.name == @treeish }.first
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_current_branch
|
|
|
|
@current_branch = @branches.select{|b| b.name == @treeish }.first
|
|
|
|
end
|
2012-01-30 20:39:34 +00:00
|
|
|
end
|