2011-10-08 23:36:38 +02:00
|
|
|
class ApplicationController < ActionController::Base
|
|
|
|
before_filter :authenticate_user!
|
2011-11-03 23:37:02 +01:00
|
|
|
before_filter :view_style
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
protect_from_forgery
|
|
|
|
|
|
|
|
helper_method :abilities, :can?
|
|
|
|
|
2011-10-09 23:15:28 +02:00
|
|
|
rescue_from Gitosis::AccessDenied do |exception|
|
|
|
|
render :file => File.join(Rails.root, "public", "gitosis_error"), :layout => false
|
|
|
|
end
|
|
|
|
|
2011-10-28 17:25:00 +02:00
|
|
|
layout :layout_by_resource
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
protected
|
2011-10-08 23:36:38 +02:00
|
|
|
|
2011-10-28 17:25:00 +02:00
|
|
|
def layout_by_resource
|
|
|
|
if devise_controller?
|
|
|
|
"devise"
|
|
|
|
else
|
|
|
|
"application"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
def abilities
|
|
|
|
@abilities ||= Six.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def can?(object, action, subject)
|
|
|
|
abilities.allowed?(object, action, subject)
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
def project
|
2011-10-08 23:36:38 +02:00
|
|
|
@project ||= Project.find_by_code(params[:project_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_project_abilities
|
|
|
|
abilities << Ability
|
|
|
|
end
|
|
|
|
|
|
|
|
def authenticate_admin!
|
2011-10-17 12:39:03 +02:00
|
|
|
return render_404 unless current_user.is_admin?
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_project!(action)
|
2011-10-17 12:39:03 +02:00
|
|
|
return render_404 unless can?(current_user, action, project)
|
|
|
|
end
|
|
|
|
|
|
|
|
def access_denied!
|
|
|
|
render_404
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def method_missing(method_sym, *arguments, &block)
|
|
|
|
if method_sym.to_s =~ /^authorize_(.*)!$/
|
|
|
|
authorize_project!($1.to_sym)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
2011-10-14 17:08:25 +02:00
|
|
|
|
2011-10-14 18:30:31 +02:00
|
|
|
def load_refs
|
2011-11-03 17:28:33 +01:00
|
|
|
unless params[:ref].blank?
|
|
|
|
@ref = params[:ref]
|
|
|
|
else
|
|
|
|
@branch = params[:branch].blank? ? nil : params[:branch]
|
|
|
|
@tag = params[:tag].blank? ? nil : params[:tag]
|
|
|
|
@ref = @branch || @tag || "master"
|
|
|
|
end
|
2011-10-14 18:30:31 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def render_404
|
|
|
|
render :file => File.join(Rails.root, "public", "404"), :layout => false, :status => "404"
|
2011-10-14 17:08:25 +02:00
|
|
|
end
|
2011-10-15 17:51:58 +02:00
|
|
|
|
|
|
|
def require_non_empty_project
|
|
|
|
redirect_to @project unless @project.repo_exists?
|
|
|
|
end
|
2011-11-03 23:37:02 +01:00
|
|
|
|
|
|
|
def view_style
|
|
|
|
if params[:view_style] == "collapsed"
|
|
|
|
cookies[:view_style] = "collapsed"
|
|
|
|
elsif params[:view_style] == "fluid"
|
|
|
|
cookies[:view_style] = ""
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|