2013-12-06 10:05:34 -05:00
|
|
|
require 'gon'
|
|
|
|
|
2013-08-21 05:33:12 -04:00
|
|
|
class ApplicationController < ActionController::Base
|
2014-07-09 08:42:25 -04:00
|
|
|
before_filter :authenticate_user_from_token!
|
2011-10-08 17:36:38 -04:00
|
|
|
before_filter :authenticate_user!
|
2012-04-16 16:33:03 -04:00
|
|
|
before_filter :reject_blocked!
|
2013-06-13 13:01:35 -04:00
|
|
|
before_filter :check_password_expiration
|
2012-11-28 23:29:11 -05:00
|
|
|
before_filter :add_abilities
|
2014-03-10 11:10:23 -04:00
|
|
|
before_filter :ldap_security_check
|
2012-08-02 02:48:24 -04:00
|
|
|
before_filter :dev_tools if Rails.env == 'development'
|
2013-02-02 13:32:13 -05:00
|
|
|
before_filter :default_headers
|
2013-02-19 07:37:43 -05:00
|
|
|
before_filter :add_gon_variables
|
2013-12-10 06:35:10 -05:00
|
|
|
before_filter :configure_permitted_parameters, if: :devise_controller?
|
2014-04-07 07:32:59 -04:00
|
|
|
before_filter :require_email, unless: :devise_controller?
|
2012-06-24 03:01:42 -04:00
|
|
|
|
2014-10-06 09:18:25 -04:00
|
|
|
protect_from_forgery with: :exception
|
2012-06-24 03:01:42 -04:00
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
helper_method :abilities, :can?
|
|
|
|
|
2012-05-31 16:36:52 -04:00
|
|
|
rescue_from Encoding::CompatibilityError do |exception|
|
2012-11-06 15:15:25 -05:00
|
|
|
log_exception(exception)
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/encoding", layout: "errors", status: 500
|
2012-05-31 16:36:52 -04:00
|
|
|
end
|
|
|
|
|
2012-02-22 00:14:54 -05:00
|
|
|
rescue_from ActiveRecord::RecordNotFound do |exception|
|
2012-11-06 15:15:25 -05:00
|
|
|
log_exception(exception)
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/not_found", layout: "errors", status: 404
|
2011-10-09 17:15:28 -04:00
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
protected
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2014-07-09 08:42:25 -04:00
|
|
|
# From https://github.com/plataformatec/devise/wiki/How-To:-Simple-Token-Authentication-Example
|
2014-07-10 07:10:37 -04:00
|
|
|
# https://gist.github.com/josevalim/fb706b1e933ef01e4fb6
|
2014-07-09 08:42:25 -04:00
|
|
|
def authenticate_user_from_token!
|
2014-07-10 07:10:37 -04:00
|
|
|
user_token = if params[:authenticity_token].presence
|
|
|
|
params[:authenticity_token].presence
|
|
|
|
elsif params[:private_token].presence
|
|
|
|
params[:private_token].presence
|
|
|
|
end
|
2014-07-09 08:42:25 -04:00
|
|
|
user = user_token && User.find_by_authentication_token(user_token.to_s)
|
|
|
|
|
|
|
|
if user
|
|
|
|
# Notice we are passing store false, so the user is not
|
|
|
|
# actually stored in the session and a token is needed
|
|
|
|
# for every request. If you want the token to work as a
|
|
|
|
# sign in token, you can simply remove store: false.
|
|
|
|
sign_in user, store: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-06 15:15:25 -05:00
|
|
|
def log_exception(exception)
|
|
|
|
application_trace = ActionDispatch::ExceptionWrapper.new(env, exception).application_trace
|
|
|
|
application_trace.map!{ |t| " #{t}\n" }
|
|
|
|
logger.error "\n#{exception.class.name} (#{exception.message}):\n#{application_trace.join}"
|
|
|
|
end
|
|
|
|
|
2012-04-16 16:33:03 -04:00
|
|
|
def reject_blocked!
|
2013-03-04 09:52:30 -05:00
|
|
|
if current_user && current_user.blocked?
|
2012-06-01 09:56:28 -04:00
|
|
|
sign_out current_user
|
2013-05-28 13:48:51 -04:00
|
|
|
flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
|
2012-04-16 16:33:03 -04:00
|
|
|
redirect_to new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def after_sign_in_path_for(resource)
|
2013-03-04 09:52:30 -05:00
|
|
|
if resource.is_a?(User) && resource.respond_to?(:blocked?) && resource.blocked?
|
2012-04-13 01:12:34 -04:00
|
|
|
sign_out resource
|
2013-05-28 13:48:51 -04:00
|
|
|
flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
|
2012-04-13 01:12:34 -04:00
|
|
|
new_user_session_path
|
|
|
|
else
|
2014-07-11 06:24:11 -04:00
|
|
|
stored_location_for(:redirect) || stored_location_for(resource) || root_path
|
2012-04-13 01:12:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
def abilities
|
|
|
|
@abilities ||= Six.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def can?(object, action, subject)
|
|
|
|
abilities.allowed?(object, action, subject)
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
def project
|
2012-11-22 15:34:06 -05:00
|
|
|
id = params[:project_id] || params[:id]
|
|
|
|
|
2013-10-14 06:27:39 -04:00
|
|
|
# Redirect from
|
|
|
|
# localhost/group/project.git
|
|
|
|
# to
|
|
|
|
# localhost/group/project
|
|
|
|
#
|
|
|
|
if id =~ /\.git\Z/
|
|
|
|
redirect_to request.original_url.gsub(/\.git\Z/, '') and return
|
|
|
|
end
|
|
|
|
|
2012-11-28 23:29:11 -05:00
|
|
|
@project = Project.find_with_namespace(id)
|
|
|
|
|
|
|
|
if @project and can?(current_user, :read_project, @project)
|
|
|
|
@project
|
2013-12-03 09:22:33 -05:00
|
|
|
elsif current_user.nil?
|
|
|
|
@project = nil
|
|
|
|
authenticate_user!
|
2012-11-28 23:29:11 -05:00
|
|
|
else
|
|
|
|
@project = nil
|
2013-05-24 17:07:19 -04:00
|
|
|
render_404 and return
|
2012-11-28 23:29:11 -05:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2013-01-03 14:09:18 -05:00
|
|
|
def repository
|
|
|
|
@repository ||= project.repository
|
|
|
|
rescue Grit::NoSuchPathError
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
2012-11-28 23:29:11 -05:00
|
|
|
def add_abilities
|
2011-10-08 17:36:38 -04:00
|
|
|
abilities << Ability
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_project!(action)
|
2012-02-22 00:14:54 -05:00
|
|
|
return access_denied! unless can?(current_user, action, project)
|
2011-10-17 06:39:03 -04:00
|
|
|
end
|
|
|
|
|
2012-02-21 17:31:18 -05:00
|
|
|
def authorize_code_access!
|
2013-11-06 10:13:21 -05:00
|
|
|
return access_denied! unless can?(current_user, :download_code, project)
|
2012-02-21 17:31:18 -05:00
|
|
|
end
|
|
|
|
|
2013-07-17 01:26:00 -04:00
|
|
|
def authorize_push!
|
|
|
|
return access_denied! unless can?(current_user, :push_code, project)
|
|
|
|
end
|
|
|
|
|
2014-04-14 21:12:07 -04:00
|
|
|
def authorize_labels!
|
|
|
|
# Labels should be accessible for issues and/or merge requests
|
|
|
|
authorize_read_issue! || authorize_read_merge_request!
|
|
|
|
end
|
|
|
|
|
2011-10-17 06:39:03 -04:00
|
|
|
def access_denied!
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/access_denied", layout: "errors", status: 404
|
2012-02-22 00:14:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def not_found!
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/not_found", layout: "errors", status: 404
|
2012-02-22 00:14:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def git_not_found!
|
2012-09-26 16:24:52 -04:00
|
|
|
render "errors/git_not_found", layout: "errors", status: 404
|
2011-10-08 17:36:38 -04: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 11:08:25 -04:00
|
|
|
|
2014-02-07 11:59:55 -05:00
|
|
|
def render_403
|
|
|
|
head :forbidden
|
2011-10-14 11:08:25 -04:00
|
|
|
end
|
2011-10-15 11:51:58 -04:00
|
|
|
|
2014-02-07 11:59:55 -05:00
|
|
|
def render_404
|
|
|
|
render file: Rails.root.join("public", "404"), layout: false, status: "404"
|
2012-12-04 22:14:05 -05:00
|
|
|
end
|
|
|
|
|
2011-10-15 11:51:58 -04:00
|
|
|
def require_non_empty_project
|
2012-09-04 11:37:38 -04:00
|
|
|
redirect_to @project if @project.empty_repo?
|
2011-10-15 11:51:58 -04:00
|
|
|
end
|
2011-11-03 18:37:02 -04:00
|
|
|
|
2011-11-20 15:32:12 -05: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-27 18:49:14 -05:00
|
|
|
|
2012-08-02 02:48:24 -04:00
|
|
|
def dev_tools
|
|
|
|
end
|
2013-01-22 17:20:27 -05:00
|
|
|
|
2013-02-02 13:32:13 -05:00
|
|
|
def default_headers
|
|
|
|
headers['X-Frame-Options'] = 'DENY'
|
|
|
|
headers['X-XSS-Protection'] = '1; mode=block'
|
2013-12-27 06:38:29 -05:00
|
|
|
headers['X-UA-Compatible'] = 'IE=edge'
|
2013-12-30 03:41:05 -05:00
|
|
|
headers['X-Content-Type-Options'] = 'nosniff'
|
2014-01-03 10:02:57 -05:00
|
|
|
headers['Strict-Transport-Security'] = 'max-age=31536000' if Gitlab.config.gitlab.https
|
2013-02-02 13:32:13 -05:00
|
|
|
end
|
2013-02-19 07:37:43 -05:00
|
|
|
|
|
|
|
def add_gon_variables
|
|
|
|
gon.default_issues_tracker = Project.issues_tracker.default_value
|
2013-05-14 08:33:31 -04:00
|
|
|
gon.api_version = API::API.version
|
2013-04-24 03:31:36 -04:00
|
|
|
gon.relative_url_root = Gitlab.config.gitlab.relative_url_root
|
2014-06-13 10:46:48 -04:00
|
|
|
gon.default_avatar_url = URI::join(Gitlab.config.gitlab.url, ActionController::Base.helpers.image_path('no_avatar.png')).to_s
|
2014-06-04 11:07:15 -04:00
|
|
|
|
|
|
|
if current_user
|
|
|
|
gon.current_user_id = current_user.id
|
|
|
|
gon.api_token = current_user.private_token
|
|
|
|
end
|
2013-02-19 07:37:43 -05:00
|
|
|
end
|
2013-06-13 12:53:04 -04:00
|
|
|
|
|
|
|
def check_password_expiration
|
2013-09-17 16:37:36 -04:00
|
|
|
if current_user && current_user.password_expires_at && current_user.password_expires_at < Time.now && !current_user.ldap_user?
|
2013-06-13 12:53:04 -04:00
|
|
|
redirect_to new_profile_password_path and return
|
|
|
|
end
|
|
|
|
end
|
2013-08-26 09:30:03 -04:00
|
|
|
|
2014-03-10 11:10:23 -04:00
|
|
|
def ldap_security_check
|
2014-03-11 04:24:07 -04:00
|
|
|
if current_user && current_user.requires_ldap_check?
|
2014-07-30 03:50:50 -04:00
|
|
|
unless Gitlab::LDAP::Access.allowed?(current_user)
|
|
|
|
sign_out current_user
|
|
|
|
flash[:alert] = "Access denied for your LDAP account."
|
|
|
|
redirect_to new_user_session_path
|
2014-03-10 11:10:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-08-26 09:30:03 -04:00
|
|
|
def event_filter
|
|
|
|
filters = cookies['event_filter'].split(',') if cookies['event_filter'].present?
|
|
|
|
@event_filter ||= EventFilter.new(filters)
|
|
|
|
end
|
2013-11-28 04:38:20 -05:00
|
|
|
|
2014-03-14 03:57:39 -04:00
|
|
|
def gitlab_ldap_access(&block)
|
|
|
|
Gitlab::LDAP::Access.open { |access| block.call(access) }
|
2014-03-10 11:10:23 -04:00
|
|
|
end
|
|
|
|
|
2013-11-28 04:38:20 -05:00
|
|
|
# JSON for infinite scroll via Pager object
|
|
|
|
def pager_json(partial, count)
|
|
|
|
html = render_to_string(
|
|
|
|
partial,
|
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
html: html,
|
|
|
|
count: count
|
|
|
|
}
|
|
|
|
end
|
2013-11-29 08:05:32 -05:00
|
|
|
|
|
|
|
def view_to_html_string(partial)
|
|
|
|
render_to_string(
|
|
|
|
partial,
|
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
end
|
2013-12-10 06:35:10 -05:00
|
|
|
|
|
|
|
def configure_permitted_parameters
|
2014-07-10 07:56:35 -04:00
|
|
|
devise_parameter_sanitizer.sanitize(:sign_in) { |u| u.permit(:username, :email, :password, :login, :remember_me) }
|
2013-12-10 06:35:10 -05:00
|
|
|
end
|
2014-02-26 07:06:31 -05:00
|
|
|
|
|
|
|
def hexdigest(string)
|
|
|
|
Digest::SHA1.hexdigest string
|
|
|
|
end
|
2014-04-07 07:09:29 -04:00
|
|
|
|
|
|
|
def require_email
|
|
|
|
if current_user && current_user.temp_oauth_email?
|
|
|
|
redirect_to profile_path, notice: 'Please complete your profile with email address' and return
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|