gitlabhq/app/controllers/application_controller.rb

125 lines
2.9 KiB
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
class ApplicationController < ActionController::Base
before_filter :authenticate_user!
before_filter :reject_blocked!
before_filter :set_current_user_for_mailer
before_filter :set_current_user_for_observers
2012-08-02 08:48:24 +02:00
before_filter :dev_tools if Rails.env == 'development'
2011-10-08 23:36:38 +02:00
protect_from_forgery
2011-10-08 23:36:38 +02:00
helper_method :abilities, :can?
rescue_from Gitlab::Gitolite::AccessDenied do |exception|
render "errors/gitolite", layout: "error", status: 500
end
rescue_from Encoding::CompatibilityError do |exception|
render "errors/encoding", layout: "error", status: 500
end
rescue_from ActiveRecord::RecordNotFound do |exception|
render "errors/not_found", layout: "error", status: 404
2011-10-09 23:15:28 +02:00
end
2011-10-28 17:25:00 +02:00
layout :layout_by_resource
protected
2011-10-08 23:36:38 +02:00
def reject_blocked!
if current_user && current_user.blocked
sign_out current_user
flash[:alert] = "Your account was blocked"
redirect_to new_user_session_path
end
end
2012-04-13 07:12:34 +02:00
def after_sign_in_path_for resource
if resource.is_a?(User) && resource.respond_to?(:blocked) && resource.blocked
sign_out resource
flash[:alert] = "Your account was blocked"
new_user_session_path
else
super
end
end
2011-10-28 17:25:00 +02:00
def layout_by_resource
if devise_controller?
2012-07-06 08:50:24 +02:00
"devise_layout"
2011-10-28 17:25:00 +02:00
else
"application"
end
end
2011-12-17 14:58:35 +01:00
def set_current_user_for_mailer
MailerObserver.current_user = current_user
end
def set_current_user_for_observers
IssueObserver.current_user = current_user
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
def project
@project ||= current_user.projects.find_by_code(params[:project_id])
@project || render_404
2011-10-08 23:36:38 +02:00
end
def add_project_abilities
abilities << Ability
end
def authorize_project!(action)
return access_denied! unless can?(current_user, action, project)
2011-10-17 12:39:03 +02:00
end
def authorize_code_access!
return access_denied! unless can?(current_user, :download_code, project)
end
2011-10-17 12:39:03 +02:00
def access_denied!
render "errors/access_denied", layout: "error", status: 404
end
def not_found!
render "errors/not_found", layout: "error", status: 404
end
def git_not_found!
render "errors/git_not_found", layout: "error", status: 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
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 if @project.empty_repo?
2011-10-15 17:51:58 +02:00
end
2011-11-03 23:37:02 +01:00
2011-11-20 21:32:12 +01:00
def no_cache_headers
response.headers["Cache-Control"] = "no-cache, no-store, max-age=0, must-revalidate"
response.headers["Pragma"] = "no-cache"
response.headers["Expires"] = "Fri, 01 Jan 1990 00:00:00 GMT"
end
2012-01-28 00:49:14 +01:00
2012-08-02 08:48:24 +02:00
def dev_tools
Rack::MiniProfiler.authorize_request
end
2011-10-08 23:36:38 +02:00
end