debian-mirror-gitlab/app/controllers/application_controller.rb

378 lines
11 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
require 'gon'
2015-09-25 12:07:36 +05:30
require 'fogbugz'
2014-09-02 18:07:02 +05:30
class ApplicationController < ActionController::Base
2015-04-26 12:48:37 +05:30
include Gitlab::CurrentSettings
2016-06-02 11:05:42 +05:30
include Gitlab::GonHelper
2015-04-26 12:48:37 +05:30
include GitlabRoutingHelper
2015-09-11 14:41:01 +05:30
include PageLayoutHelper
2015-04-26 12:48:37 +05:30
2015-09-11 14:41:01 +05:30
before_action :authenticate_user_from_token!
before_action :authenticate_user!
before_action :validate_user_service_ticket!
2015-09-11 14:41:01 +05:30
before_action :reject_blocked!
before_action :check_password_expiration
before_action :check_2fa_requirement
2015-09-11 14:41:01 +05:30
before_action :ldap_security_check
2016-06-02 11:05:42 +05:30
before_action :sentry_context
2015-09-11 14:41:01 +05:30
before_action :default_headers
before_action :add_gon_variables
before_action :configure_permitted_parameters, if: :devise_controller?
before_action :require_email, unless: :devise_controller?
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
protect_from_forgery with: :exception
2014-09-02 18:07:02 +05:30
2015-04-26 12:48:37 +05:30
helper_method :abilities, :can?, :current_application_settings
2015-09-25 12:07:36 +05:30
helper_method :import_sources_enabled?, :github_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :gitorious_import_enabled?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?
2014-09-02 18:07:02 +05:30
rescue_from Encoding::CompatibilityError do |exception|
log_exception(exception)
render "errors/encoding", layout: "errors", status: 500
end
rescue_from ActiveRecord::RecordNotFound do |exception|
log_exception(exception)
2015-10-24 18:46:33 +05:30
render_404
end
def redirect_back_or_default(default: root_path, options: {})
redirect_to request.referer.present? ? :back : default, options
2014-09-02 18:07:02 +05:30
end
protected
2016-06-02 11:05:42 +05:30
def sentry_context
if Rails.env.production? && current_application_settings.sentry_enabled
if current_user
Raven.user_context(
id: current_user.id,
email: current_user.email,
username: current_user.username,
)
end
Raven.tags_context(program: sentry_program_context)
end
end
def sentry_program_context
if Sidekiq.server?
'sidekiq'
else
'rails'
2016-01-29 22:53:50 +05:30
end
end
2014-09-02 18:07:02 +05:30
# From https://github.com/plataformatec/devise/wiki/How-To:-Simple-Token-Authentication-Example
# https://gist.github.com/josevalim/fb706b1e933ef01e4fb6
def authenticate_user_from_token!
user_token = if params[:authenticity_token].presence
params[:authenticity_token].presence
elsif params[:private_token].presence
params[:private_token].presence
2016-04-02 18:10:28 +05:30
elsif request.headers['PRIVATE-TOKEN'].present?
request.headers['PRIVATE-TOKEN']
2014-09-02 18:07:02 +05:30
end
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
2015-04-26 12:48:37 +05:30
def authenticate_user!(*args)
2015-11-26 14:37:03 +05:30
if redirect_to_home_page_url?
redirect_to current_application_settings.home_page_url and return
2015-04-26 12:48:37 +05:30
end
super(*args)
end
2014-09-02 18:07:02 +05:30
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
def reject_blocked!
if current_user && current_user.blocked?
sign_out current_user
flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
redirect_to new_user_session_path
end
end
2015-04-26 12:48:37 +05:30
def after_sign_in_path_for(resource)
2014-09-02 18:07:02 +05:30
if resource.is_a?(User) && resource.respond_to?(:blocked?) && resource.blocked?
sign_out resource
flash[:alert] = "Your account is blocked. Retry when an admin has unblocked it."
new_user_session_path
else
stored_location_for(:redirect) || stored_location_for(resource) || root_path
end
end
2015-09-11 14:41:01 +05:30
def after_sign_out_path_for(resource)
2016-06-02 11:05:42 +05:30
current_application_settings.after_sign_out_path.presence || new_user_session_path
2015-09-11 14:41:01 +05:30
end
2014-09-02 18:07:02 +05:30
def abilities
2015-04-26 12:48:37 +05:30
Ability.abilities
2014-09-02 18:07:02 +05:30
end
def can?(object, action, subject)
abilities.allowed?(object, action, subject)
end
def access_denied!
render "errors/access_denied", layout: "errors", status: 404
end
def git_not_found!
2016-04-02 18:10:28 +05:30
render "errors/git_not_found.html", layout: "errors", status: 404
2014-09-02 18:07:02 +05:30
end
def render_403
head :forbidden
end
def render_404
render file: Rails.root.join("public", "404"), layout: false, status: "404"
end
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
def default_headers
headers['X-Frame-Options'] = 'DENY'
headers['X-XSS-Protection'] = '1; mode=block'
headers['X-UA-Compatible'] = 'IE=edge'
headers['X-Content-Type-Options'] = 'nosniff'
2015-09-11 14:41:01 +05:30
# Enabling HSTS for non-standard ports would send clients to the wrong port
if Gitlab.config.gitlab.https and Gitlab.config.gitlab.port == 443
headers['Strict-Transport-Security'] = 'max-age=31536000'
end
2014-09-02 18:07:02 +05:30
end
def validate_user_service_ticket!
return unless signed_in? && session[:service_tickets]
valid = session[:service_tickets].all? do |provider, ticket|
Gitlab::OAuth::Session.valid?(provider, ticket)
end
unless valid
session[:service_tickets] = nil
sign_out current_user
redirect_to new_user_session_path
end
end
2014-09-02 18:07:02 +05:30
def check_password_expiration
2016-06-02 11:05:42 +05:30
if current_user && current_user.password_expires_at && current_user.password_expires_at < Time.now && !current_user.ldap_user?
2014-09-02 18:07:02 +05:30
redirect_to new_profile_password_path and return
end
end
def check_2fa_requirement
if two_factor_authentication_required? && current_user && !current_user.two_factor_enabled && !skip_two_factor?
redirect_to new_profile_two_factor_auth_path
end
end
2014-09-02 18:07:02 +05:30
def ldap_security_check
if current_user && current_user.requires_ldap_check?
2016-04-02 18:10:28 +05:30
return unless current_user.try_obtain_ldap_lease
2014-09-02 18:07:02 +05:30
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
end
end
end
def event_filter
filters = cookies['event_filter'].split(',') if cookies['event_filter'].present?
@event_filter ||= EventFilter.new(filters)
end
def gitlab_ldap_access(&block)
Gitlab::LDAP::Access.open { |access| block.call(access) }
end
# 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
2016-04-02 18:10:28 +05:30
def view_to_html_string(partial, locals = {})
2014-09-02 18:07:02 +05:30
render_to_string(
partial,
2016-04-02 18:10:28 +05:30
locals: locals,
2014-09-02 18:07:02 +05:30
layout: false,
formats: [:html]
)
end
def configure_permitted_parameters
2015-09-11 14:41:01 +05:30
devise_parameter_sanitizer.for(:sign_in) { |u| u.permit(:username, :email, :password, :login, :remember_me, :otp_attempt) }
2014-09-02 18:07:02 +05:30
end
def hexdigest(string)
Digest::SHA1.hexdigest string
end
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
2015-04-26 12:48:37 +05:30
def set_filters_params
2016-04-02 18:10:28 +05:30
set_default_sort
2015-04-26 12:48:37 +05:30
params[:scope] = 'all' if params[:scope].blank?
params[:state] = 'opened' if params[:state].blank?
2015-09-11 14:41:01 +05:30
@sort = params[:sort]
2015-04-26 12:48:37 +05:30
@filter_params = params.dup
if @project
@filter_params[:project_id] = @project.id
elsif @group
@filter_params[:group_id] = @group.id
else
# TODO: this filter ignore issues/mr created in public or
# internal repos where you are not a member. Enable this filter
# or improve current implementation to filter only issues you
# created or assigned or mentioned
#@filter_params[:authorized_only] = true
end
@filter_params
end
def get_issues_collection
set_filters_params
2015-09-11 14:41:01 +05:30
@issuable_finder = IssuesFinder.new(current_user, @filter_params)
@issuable_finder.execute
2015-04-26 12:48:37 +05:30
end
def get_merge_requests_collection
set_filters_params
2015-09-11 14:41:01 +05:30
@issuable_finder = MergeRequestsFinder.new(current_user, @filter_params)
@issuable_finder.execute
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
def import_sources_enabled?
!current_application_settings.import_sources.empty?
end
2015-04-26 12:48:37 +05:30
def github_import_enabled?
2015-09-25 12:07:36 +05:30
current_application_settings.import_sources.include?('github')
end
def github_import_configured?
2015-09-11 14:41:01 +05:30
Gitlab::OAuth::Provider.enabled?(:github)
2015-04-26 12:48:37 +05:30
end
def gitlab_import_enabled?
2015-09-25 12:07:36 +05:30
request.host != 'gitlab.com' && current_application_settings.import_sources.include?('gitlab')
end
def gitlab_import_configured?
2015-09-11 14:41:01 +05:30
Gitlab::OAuth::Provider.enabled?(:gitlab)
2015-04-26 12:48:37 +05:30
end
def bitbucket_import_enabled?
2015-09-25 12:07:36 +05:30
current_application_settings.import_sources.include?('bitbucket')
end
def bitbucket_import_configured?
2015-09-11 14:41:01 +05:30
Gitlab::OAuth::Provider.enabled?(:bitbucket) && Gitlab::BitbucketImport.public_key.present?
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
def gitorious_import_enabled?
current_application_settings.import_sources.include?('gitorious')
end
def google_code_import_enabled?
current_application_settings.import_sources.include?('google_code')
end
def fogbugz_import_enabled?
current_application_settings.import_sources.include?('fogbugz')
end
def git_import_enabled?
current_application_settings.import_sources.include?('git')
end
2015-11-26 14:37:03 +05:30
def two_factor_authentication_required?
current_application_settings.require_two_factor_authentication
end
def two_factor_grace_period
current_application_settings.two_factor_grace_period
end
def two_factor_grace_period_expired?
date = current_user.otp_grace_period_started_at
date && (date + two_factor_grace_period.hours) < Time.current
end
def skip_two_factor?
session[:skip_tfa] && session[:skip_tfa] > Time.current
end
2015-11-26 14:37:03 +05:30
def redirect_to_home_page_url?
# If user is not signed-in and tries to access root_path - redirect him to landing page
# Don't redirect to the default URL to prevent endless redirections
return false unless current_application_settings.home_page_url.present?
home_page_url = current_application_settings.home_page_url.chomp('/')
root_urls = [Gitlab.config.gitlab['url'].chomp('/'), root_url.chomp('/')]
return false if root_urls.include?(home_page_url)
current_user.nil? && root_path == request.path
end
2016-04-02 18:10:28 +05:30
private
def set_default_sort
key = if is_a_listing_page_for?('issues') || is_a_listing_page_for?('merge_requests')
'issuable_sort'
end
cookies[key] = params[:sort] if key && params[:sort].present?
params[:sort] = cookies[key] if key
params[:sort] ||= 'id_desc'
end
def is_a_listing_page_for?(page_type)
controller_name, action_name = params.values_at(:controller, :action)
(controller_name == "projects/#{page_type}" && action_name == 'index') ||
(controller_name == 'groups' && action_name == page_type) ||
(controller_name == 'dashboard' && action_name == page_type)
end
2014-09-02 18:07:02 +05:30
end