2013-12-06 10:05:34 -05:00
|
|
|
require 'gon'
|
2015-08-04 18:21:12 -04:00
|
|
|
require 'fogbugz'
|
2013-12-06 10:05:34 -05:00
|
|
|
|
2013-08-21 05:33:12 -04:00
|
|
|
class ApplicationController < ActionController::Base
|
2016-04-14 08:28:46 -04:00
|
|
|
include Gitlab::GonHelper
|
2015-09-09 08:37:34 -04:00
|
|
|
include GitlabRoutingHelper
|
|
|
|
include PageLayoutHelper
|
2018-04-08 00:35:30 -04:00
|
|
|
include SafeParamsHelper
|
2016-08-18 20:06:33 -04:00
|
|
|
include SentryHelper
|
2016-06-06 07:16:30 -04:00
|
|
|
include WorkhorseHelper
|
2017-02-06 11:07:37 -05:00
|
|
|
include EnforcesTwoFactorAuthentication
|
2017-06-21 10:59:13 -04:00
|
|
|
include WithPerformanceBar
|
2015-01-08 12:53:35 -05:00
|
|
|
|
2017-09-15 13:31:32 -04:00
|
|
|
before_action :authenticate_sessionless_user!
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authenticate_user!
|
2015-11-11 23:25:31 -05:00
|
|
|
before_action :validate_user_service_ticket!
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :check_password_expiration
|
|
|
|
before_action :ldap_security_check
|
2016-04-14 13:56:30 -04:00
|
|
|
before_action :sentry_context
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :default_headers
|
2017-06-07 17:51:13 -04:00
|
|
|
before_action :add_gon_variables, unless: -> { request.path.start_with?('/-/peek') }
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :configure_permitted_parameters, if: :devise_controller?
|
|
|
|
before_action :require_email, unless: :devise_controller?
|
2012-06-24 03:01:42 -04:00
|
|
|
|
2017-05-03 00:36:36 -04:00
|
|
|
around_action :set_locale
|
|
|
|
|
2017-08-23 07:23:41 -04:00
|
|
|
after_action :set_page_title_header, if: -> { request.format == :json }
|
|
|
|
|
2014-10-06 09:18:25 -04:00
|
|
|
protect_from_forgery with: :exception
|
2012-06-24 03:01:42 -04:00
|
|
|
|
2018-02-02 13:39:55 -05:00
|
|
|
helper_method :can?
|
2016-12-15 11:31:14 -05:00
|
|
|
helper_method :import_sources_enabled?, :github_import_enabled?, :gitea_import_enabled?, :github_import_configured?, :gitlab_import_enabled?, :gitlab_import_configured?, :bitbucket_import_enabled?, :bitbucket_import_configured?, :google_code_import_enabled?, :fogbugz_import_enabled?, :git_import_enabled?, :gitlab_project_import_enabled?
|
2011-10-08 17:36:38 -04:00
|
|
|
|
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)
|
2015-10-09 13:07:29 -04:00
|
|
|
render_404
|
2011-10-09 17:15:28 -04:00
|
|
|
end
|
|
|
|
|
2017-06-20 09:53:05 -04:00
|
|
|
rescue_from(ActionController::UnknownFormat) do
|
|
|
|
render_404
|
|
|
|
end
|
|
|
|
|
2016-06-17 12:59:33 -04:00
|
|
|
rescue_from Gitlab::Access::AccessDeniedError do |exception|
|
|
|
|
render_403
|
|
|
|
end
|
|
|
|
|
2017-02-20 09:09:05 -05:00
|
|
|
rescue_from Gitlab::Auth::TooManyIps do |e|
|
2017-02-21 16:17:23 -05:00
|
|
|
head :forbidden, retry_after: Gitlab::Auth::UniqueIpsLimiter.config.unique_ips_limit_time_window
|
2017-02-20 09:09:05 -05:00
|
|
|
end
|
|
|
|
|
2017-08-07 08:00:09 -04:00
|
|
|
rescue_from Gitlab::Git::Storage::Inaccessible, GRPC::Unavailable, Gitlab::Git::CommandError do |exception|
|
2017-05-17 12:17:15 -04:00
|
|
|
Raven.capture_exception(exception) if sentry_enabled?
|
|
|
|
log_exception(exception)
|
|
|
|
|
|
|
|
headers['Retry-After'] = exception.retry_after if exception.respond_to?(:retry_after)
|
|
|
|
|
|
|
|
render_503
|
|
|
|
end
|
|
|
|
|
2015-10-20 03:28:28 -04:00
|
|
|
def redirect_back_or_default(default: root_path, options: {})
|
|
|
|
redirect_to request.referer.present? ? :back : default, options
|
|
|
|
end
|
|
|
|
|
2016-10-14 17:11:19 -04:00
|
|
|
def not_found
|
|
|
|
render_404
|
|
|
|
end
|
|
|
|
|
2016-11-14 09:55:31 -05:00
|
|
|
def route_not_found
|
|
|
|
if current_user
|
|
|
|
not_found
|
|
|
|
else
|
2017-05-01 16:46:30 -04:00
|
|
|
authenticate_user!
|
2016-11-14 09:55:31 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
protected
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2017-07-28 01:48:03 -04:00
|
|
|
def append_info_to_payload(payload)
|
|
|
|
super
|
|
|
|
payload[:remote_ip] = request.remote_ip
|
|
|
|
|
2017-10-03 02:28:22 -04:00
|
|
|
logged_user = auth_user
|
|
|
|
|
|
|
|
if logged_user.present?
|
|
|
|
payload[:user_id] = logged_user.try(:id)
|
|
|
|
payload[:username] = logged_user.try(:username)
|
2017-07-28 01:48:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-03 02:28:22 -04:00
|
|
|
# Controllers such as GitHttpController may use alternative methods
|
|
|
|
# (e.g. tokens) to authenticate the user, whereas Devise sets current_user
|
|
|
|
def auth_user
|
|
|
|
return current_user if current_user.present?
|
2017-11-14 04:02:39 -05:00
|
|
|
|
2017-10-03 02:28:22 -04:00
|
|
|
return try(:authenticated_user)
|
|
|
|
end
|
|
|
|
|
2017-11-08 13:41:07 -05:00
|
|
|
# This filter handles personal access tokens, and atom requests with rss tokens
|
2017-09-15 13:31:32 -04:00
|
|
|
def authenticate_sessionless_user!
|
2017-10-13 20:05:18 -04:00
|
|
|
user = Gitlab::Auth::RequestAuthenticator.new(request).find_sessionless_user
|
2017-09-15 13:31:32 -04:00
|
|
|
|
|
|
|
sessionless_sign_in(user) if user
|
2016-04-19 06:52:15 -04:00
|
|
|
end
|
|
|
|
|
2012-11-06 15:15:25 -05:00
|
|
|
def log_exception(exception)
|
2017-07-04 17:02:01 -04:00
|
|
|
Raven.capture_exception(exception) if sentry_enabled?
|
|
|
|
|
2012-11-06 15:15:25 -05:00
|
|
|
application_trace = ActionDispatch::ExceptionWrapper.new(env, exception).application_trace
|
2017-08-09 05:52:22 -04:00
|
|
|
application_trace.map! { |t| " #{t}\n" }
|
2012-11-06 15:15:25 -05:00
|
|
|
logger.error "\n#{exception.class.name} (#{exception.message}):\n#{application_trace.join}"
|
|
|
|
end
|
|
|
|
|
2014-09-25 18:07:40 -04:00
|
|
|
def after_sign_in_path_for(resource)
|
2017-02-01 13:21:28 -05:00
|
|
|
stored_location_for(:redirect) || stored_location_for(resource) || root_path
|
2012-04-13 01:12:34 -04:00
|
|
|
end
|
|
|
|
|
2015-04-18 06:06:50 -04:00
|
|
|
def after_sign_out_path_for(resource)
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.after_sign_out_path.presence || new_user_session_path
|
2015-04-18 06:06:50 -04:00
|
|
|
end
|
|
|
|
|
2017-02-28 16:08:07 -05:00
|
|
|
def can?(object, action, subject = :global)
|
2016-08-08 14:55:13 -04:00
|
|
|
Ability.allowed?(object, action, subject)
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2017-12-11 09:21:06 -05:00
|
|
|
def access_denied!(message = nil)
|
2017-05-09 00:15:34 -04:00
|
|
|
respond_to do |format|
|
2017-12-11 09:21:06 -05:00
|
|
|
format.any { head :not_found }
|
|
|
|
format.html do
|
|
|
|
render "errors/access_denied",
|
|
|
|
layout: "errors",
|
|
|
|
status: 404,
|
|
|
|
locals: { message: message }
|
|
|
|
end
|
2017-05-09 00:15:34 -04:00
|
|
|
end
|
2012-02-22 00:14:54 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def git_not_found!
|
2016-02-15 16:38:27 -05:00
|
|
|
render "errors/git_not_found.html", layout: "errors", status: 404
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
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
|
2016-09-01 08:59:10 -04:00
|
|
|
respond_to do |format|
|
2016-09-01 11:20:29 -04:00
|
|
|
format.html do
|
2016-09-01 08:59:10 -04:00
|
|
|
render file: Rails.root.join("public", "404"), layout: false, status: "404"
|
|
|
|
end
|
2018-01-24 01:02:33 -05:00
|
|
|
# Prevent the Rails CSRF protector from thinking a missing .js file is a JavaScript file
|
|
|
|
format.js { render json: '', status: :not_found, content_type: 'application/json' }
|
2016-09-01 11:20:29 -04:00
|
|
|
format.any { head :not_found }
|
2016-09-01 08:59:10 -04:00
|
|
|
end
|
2012-12-04 22:14:05 -05:00
|
|
|
end
|
|
|
|
|
2017-04-28 05:38:32 -04:00
|
|
|
def respond_422
|
|
|
|
head :unprocessable_entity
|
|
|
|
end
|
|
|
|
|
2017-05-17 12:17:15 -04:00
|
|
|
def render_503
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
|
|
|
render(
|
|
|
|
file: Rails.root.join("public", "503"),
|
|
|
|
layout: false,
|
|
|
|
status: :service_unavailable
|
|
|
|
)
|
|
|
|
end
|
|
|
|
format.any { head :service_unavailable }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
|
|
|
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'
|
2013-02-02 13:32:13 -05:00
|
|
|
end
|
2013-02-19 07:37:43 -05:00
|
|
|
|
2015-11-11 23:25:31 -05:00
|
|
|
def validate_user_service_ticket!
|
|
|
|
return unless signed_in? && session[:service_tickets]
|
|
|
|
|
|
|
|
valid = session[:service_tickets].all? do |provider, ticket|
|
2018-02-23 07:10:39 -05:00
|
|
|
Gitlab::Auth::OAuth::Session.valid?(provider, ticket)
|
2015-11-11 23:25:31 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
unless valid
|
|
|
|
session[:service_tickets] = nil
|
|
|
|
sign_out current_user
|
|
|
|
redirect_to new_user_session_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-06-13 12:53:04 -04:00
|
|
|
def check_password_expiration
|
2017-11-23 08:16:14 -05:00
|
|
|
return if session[:impersonator_id] || !current_user&.allow_password_authentication?
|
2017-09-13 07:18:15 -04:00
|
|
|
|
|
|
|
password_expires_at = current_user&.password_expires_at
|
|
|
|
|
|
|
|
if password_expires_at && password_expires_at < Time.now
|
2017-02-21 17:31:14 -05:00
|
|
|
return redirect_to new_profile_password_path
|
2013-06-13 12:53:04 -04:00
|
|
|
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?
|
2016-03-10 06:37:14 -05:00
|
|
|
return unless current_user.try_obtain_ldap_lease
|
2016-03-09 13:11:24 -05:00
|
|
|
|
2018-02-23 07:10:39 -05:00
|
|
|
unless Gitlab::Auth::LDAP::Access.allowed?(current_user)
|
2014-07-30 03:50:50 -04:00
|
|
|
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
|
2016-08-29 13:09:33 -04:00
|
|
|
# Split using comma to maintain backward compatibility Ex/ "filter1,filter2"
|
|
|
|
filters = cookies['event_filter'].split(',')[0] if cookies['event_filter'].present?
|
2013-08-26 09:30:03 -04:00
|
|
|
@event_filter ||= EventFilter.new(filters)
|
|
|
|
end
|
2013-11-28 04:38:20 -05:00
|
|
|
|
|
|
|
# JSON for infinite scroll via Pager object
|
2016-10-21 04:22:43 -04:00
|
|
|
def pager_json(partial, count, locals = {})
|
2013-11-28 04:38:20 -05:00
|
|
|
html = render_to_string(
|
|
|
|
partial,
|
2016-10-21 04:22:43 -04:00
|
|
|
locals: locals,
|
2013-11-28 04:38:20 -05:00
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
|
|
|
|
render json: {
|
|
|
|
html: html,
|
|
|
|
count: count
|
|
|
|
}
|
|
|
|
end
|
2013-11-29 08:05:32 -05:00
|
|
|
|
2016-02-03 18:21:14 -05:00
|
|
|
def view_to_html_string(partial, locals = {})
|
2013-11-29 08:05:32 -05:00
|
|
|
render_to_string(
|
2016-02-03 18:21:14 -05:00
|
|
|
partial,
|
2016-02-03 16:33:01 -05:00
|
|
|
locals: locals,
|
2013-11-29 08:05:32 -05:00
|
|
|
layout: false,
|
|
|
|
formats: [:html]
|
|
|
|
)
|
|
|
|
end
|
2013-12-10 06:35:10 -05:00
|
|
|
|
|
|
|
def configure_permitted_parameters
|
2016-05-19 14:52:08 -04:00
|
|
|
devise_parameter_sanitizer.permit(:sign_in, keys: [:username, :email, :password, :login, :remember_me, :otp_attempt])
|
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
|
2016-11-17 23:21:02 -05:00
|
|
|
if current_user && current_user.temp_oauth_email? && session[:impersonator_id].nil?
|
2017-02-21 17:31:14 -05:00
|
|
|
return redirect_to profile_path, notice: 'Please complete your profile with email address'
|
2014-04-07 07:09:29 -04:00
|
|
|
end
|
|
|
|
end
|
2014-12-23 11:49:39 -05:00
|
|
|
|
2015-08-14 09:56:33 -04:00
|
|
|
def import_sources_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
!Gitlab::CurrentSettings.import_sources.empty?
|
2015-08-14 09:56:33 -04:00
|
|
|
end
|
|
|
|
|
2015-02-17 16:52:32 -05:00
|
|
|
def github_import_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.import_sources.include?('github')
|
2015-08-14 09:56:33 -04:00
|
|
|
end
|
|
|
|
|
2016-12-15 11:31:14 -05:00
|
|
|
def gitea_import_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.import_sources.include?('gitea')
|
2016-10-17 11:58:57 -04:00
|
|
|
end
|
|
|
|
|
2015-08-14 09:56:33 -04:00
|
|
|
def github_import_configured?
|
2018-02-23 07:10:39 -05:00
|
|
|
Gitlab::Auth::OAuth::Provider.enabled?(:github)
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_import_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
request.host != 'gitlab.com' && Gitlab::CurrentSettings.import_sources.include?('gitlab')
|
2015-08-14 09:56:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def gitlab_import_configured?
|
2018-02-23 07:10:39 -05:00
|
|
|
Gitlab::Auth::OAuth::Provider.enabled?(:gitlab)
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def bitbucket_import_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.import_sources.include?('bitbucket')
|
2015-08-14 09:56:33 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def bitbucket_import_configured?
|
2018-02-23 07:10:39 -05:00
|
|
|
Gitlab::Auth::OAuth::Provider.enabled?(:bitbucket)
|
2015-02-17 16:52:32 -05:00
|
|
|
end
|
2015-08-14 09:56:33 -04:00
|
|
|
|
|
|
|
def google_code_import_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.import_sources.include?('google_code')
|
2015-08-14 09:56:33 -04:00
|
|
|
end
|
|
|
|
|
2015-08-04 18:21:12 -04:00
|
|
|
def fogbugz_import_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.import_sources.include?('fogbugz')
|
2015-08-04 18:21:12 -04:00
|
|
|
end
|
|
|
|
|
2015-08-14 09:56:33 -04:00
|
|
|
def git_import_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.import_sources.include?('git')
|
2015-08-14 09:56:33 -04:00
|
|
|
end
|
2015-10-28 12:39:22 -04:00
|
|
|
|
2016-04-22 11:44:59 -04:00
|
|
|
def gitlab_project_import_enabled?
|
2018-02-02 13:39:55 -05:00
|
|
|
Gitlab::CurrentSettings.import_sources.include?('gitlab_project')
|
2016-04-22 11:44:59 -04:00
|
|
|
end
|
|
|
|
|
2016-06-06 00:44:51 -04:00
|
|
|
# U2F (universal 2nd factor) devices need a unique identifier for the application
|
|
|
|
# to perform authentication.
|
|
|
|
# https://developers.yubico.com/U2F/App_ID.html
|
|
|
|
def u2f_app_id
|
|
|
|
request.base_url
|
|
|
|
end
|
2017-04-13 02:03:47 -04:00
|
|
|
|
2017-05-25 11:22:45 -04:00
|
|
|
def set_locale(&block)
|
|
|
|
Gitlab::I18n.with_user_locale(current_user, &block)
|
2017-04-13 02:03:47 -04:00
|
|
|
end
|
2017-05-23 09:59:33 -04:00
|
|
|
|
|
|
|
def sessionless_sign_in(user)
|
|
|
|
if user && can?(user, :log_in)
|
|
|
|
# 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
|
2017-08-23 07:23:41 -04:00
|
|
|
|
|
|
|
def set_page_title_header
|
2017-09-26 12:05:19 -04:00
|
|
|
# Per https://tools.ietf.org/html/rfc5987, headers need to be ISO-8859-1, not UTF-8
|
2017-10-20 12:44:29 -04:00
|
|
|
response.headers['Page-Title'] = URI.escape(page_title('GitLab'))
|
2017-08-23 07:23:41 -04:00
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|