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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

592 lines
17 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
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
2016-06-02 11:05:42 +05:30
include Gitlab::GonHelper
2020-02-01 01:16:34 +05:30
include Gitlab::NoCacheHeaders
2015-04-26 12:48:37 +05:30
include GitlabRoutingHelper
2015-09-11 14:41:01 +05:30
include PageLayoutHelper
2018-06-27 16:04:02 +05:30
include SafeParamsHelper
include WorkhorseHelper
2017-08-17 22:00:37 +05:30
include EnforcesTwoFactorAuthentication
2017-09-10 17:25:29 +05:30
include WithPerformanceBar
2020-06-23 00:09:42 +05:30
include Gitlab::SearchContext::ControllerConcern
2018-11-29 20:51:05 +05:30
include SessionlessAuthentication
2019-12-26 22:10:19 +05:30
include SessionsHelper
2019-10-12 21:52:04 +05:30
include ConfirmEmailWarning
2019-12-21 20:55:43 +05:30
include Gitlab::Experimentation::ControllerConcern
2020-01-01 13:55:28 +05:30
include InitializesCurrentUserMode
2020-05-24 23:13:21 +05:30
include Impersonation
include Gitlab::Logging::CloudflareHelper
include Gitlab::Utils::StrongMemoize
2021-11-18 22:05:49 +05:30
include ::Gitlab::EndpointAttributes
2021-06-08 01:23:25 +05:30
include FlocOptOut
2022-01-26 12:08:38 +05:30
include CheckRateLimit
2015-04-26 12:48:37 +05:30
2019-10-31 01:37:42 +05:30
before_action :authenticate_user!, except: [:route_not_found]
2018-10-15 14:42:47 +05:30
before_action :enforce_terms!, if: :should_enforce_terms?
before_action :validate_user_service_ticket!
2020-01-01 13:55:28 +05:30
before_action :check_password_expiration, if: :html_request?
2015-09-11 14:41:01 +05:30
before_action :ldap_security_check
before_action :default_headers
2020-04-08 14:13:33 +05:30
before_action :default_cache_headers
2020-01-01 13:55:28 +05:30
before_action :add_gon_variables, if: :html_request?
2015-09-11 14:41:01 +05:30
before_action :configure_permitted_parameters, if: :devise_controller?
before_action :require_email, unless: :devise_controller?
2019-12-21 20:55:43 +05:30
before_action :active_user_check, unless: :devise_controller?
2018-11-20 20:47:30 +05:30
before_action :set_usage_stats_consent_flag
2019-02-15 15:39:39 +05:30
before_action :check_impersonation_availability
2019-12-26 22:10:19 +05:30
before_action :required_signup_info
2014-09-02 18:07:02 +05:30
2020-05-24 23:13:21 +05:30
# Make sure the `auth_user` is memoized so it can be logged, we do this after
# all other before filters that could have set the user.
before_action :auth_user
2021-11-11 11:23:49 +05:30
before_action :limit_session_time, if: -> { !current_user }
2020-05-24 23:13:21 +05:30
2020-04-08 14:13:33 +05:30
prepend_around_action :set_current_context
around_action :sessionless_bypass_admin_mode!, if: :sessionless_user?
2017-08-17 22:00:37 +05:30
around_action :set_locale
2019-07-31 22:56:46 +05:30
around_action :set_session_storage
2020-03-13 15:44:24 +05:30
around_action :set_current_admin
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
after_action :set_page_title_header, if: :json_request?
2021-11-11 11:23:49 +05:30
after_action :ensure_authenticated_session_time, if: -> { current_user }
2018-03-17 18:26:18 +05:30
2018-11-08 19:23:39 +05:30
protect_from_forgery with: :exception, prepend: true
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
helper_method :can?
2018-11-18 11:00:15 +05:30
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?,
2021-02-22 17:27:13 +05:30
:bitbucket_server_import_enabled?, :fogbugz_import_enabled?,
2018-11-18 11:00:15 +05:30
:git_import_enabled?, :gitlab_project_import_enabled?,
2021-11-11 11:23:49 +05:30
:manifest_import_enabled?, :phabricator_import_enabled?,
:masked_page_url
2018-11-18 11:00:15 +05:30
2021-11-18 22:05:49 +05:30
def self.endpoint_id_for_action(action_name)
"#{self.name}##{action_name}"
end
2014-09-02 18:07:02 +05:30
rescue_from Encoding::CompatibilityError do |exception|
log_exception(exception)
2019-12-26 22:10:19 +05:30
render "errors/encoding", layout: "errors", status: :internal_server_error
2014-09-02 18:07:02 +05:30
end
rescue_from ActiveRecord::RecordNotFound do |exception|
log_exception(exception)
2015-10-24 18:46:33 +05:30
render_404
end
2017-09-10 17:25:29 +05:30
rescue_from(ActionController::UnknownFormat) do
render_404
end
2016-08-24 12:49:21 +05:30
rescue_from Gitlab::Access::AccessDeniedError do |exception|
render_403
end
2020-01-01 13:55:28 +05:30
rescue_from Gitlab::Auth::IpBlacklisted do
Gitlab::AuthLogger.error(
message: 'Rack_Attack',
env: :blocklist,
remote_ip: request.ip,
request_method: request.request_method,
path: request.fullpath
)
head :forbidden
end
2017-08-17 22:00:37 +05:30
rescue_from Gitlab::Auth::TooManyIps do |e|
head :forbidden, retry_after: Gitlab::Auth::UniqueIpsLimiter.config.unique_ips_limit_time_window
end
2021-11-18 22:05:49 +05:30
rescue_from RateLimitedService::RateLimitedError do |e|
e.log_request(request, current_user)
response.headers.merge!(e.headers)
render plain: e.message, status: :too_many_requests
end
2022-05-07 20:08:51 +05:30
content_security_policy do |p|
next if p.directives.blank?
next unless Gitlab::CurrentSettings.snowplow_enabled? && !Gitlab::CurrentSettings.snowplow_collector_hostname.blank?
default_connect_src = p.directives['connect-src'] || p.directives['default-src']
connect_src_values = Array.wrap(default_connect_src) | [Gitlab::CurrentSettings.snowplow_collector_hostname]
p.connect_src(*connect_src_values)
end
2015-10-24 18:46:33 +05:30
def redirect_back_or_default(default: root_path, options: {})
2019-02-15 15:39:39 +05:30
redirect_back(fallback_location: default, **options)
2014-09-02 18:07:02 +05:30
end
2016-11-03 12:29:30 +05:30
def not_found
render_404
end
2017-08-17 22:00:37 +05:30
def route_not_found
2021-01-29 00:20:46 +05:30
if current_user || browser.bot.search_engine?
2017-08-17 22:00:37 +05:30
not_found
else
2019-10-31 01:37:42 +05:30
store_location_for(:user, request.fullpath) unless request.xhr?
redirect_to new_user_session_path, alert: I18n.t('devise.failure.unauthenticated')
2017-08-17 22:00:37 +05:30
end
end
2018-12-05 23:21:45 +05:30
def render(*args)
super.tap do
# Set a header for custom error pages to prevent them from being intercepted by gitlab-workhorse
2020-03-13 15:44:24 +05:30
if (400..599).cover?(response.status) && workhorse_excluded_content_types.include?(response.media_type)
2018-12-05 23:21:45 +05:30
response.headers['X-GitLab-Custom-Error'] = '1'
end
end
end
2021-11-18 22:05:49 +05:30
def feature_category
self.class.feature_category_for_action(action_name).to_s
end
def urgency
self.class.urgency_for_action(action_name)
end
2014-09-02 18:07:02 +05:30
protected
2019-10-12 21:52:04 +05:30
def workhorse_excluded_content_types
@workhorse_excluded_content_types ||= %w(text/html application/json)
end
2017-09-10 17:25:29 +05:30
def append_info_to_payload(payload)
super
2018-11-18 11:00:15 +05:30
2018-11-20 20:47:30 +05:30
payload[:ua] = request.env["HTTP_USER_AGENT"]
2017-09-10 17:25:29 +05:30
payload[:remote_ip] = request.remote_ip
2020-05-24 23:13:21 +05:30
2019-07-31 22:56:46 +05:30
payload[Labkit::Correlation::CorrelationId::LOG_KEY] = Labkit::Correlation::CorrelationId.current_id
2020-05-24 23:13:21 +05:30
payload[:metadata] = @current_context
2021-12-11 22:18:48 +05:30
payload[:request_urgency] = urgency&.name
payload[:target_duration_s] = urgency&.duration
2018-03-17 18:26:18 +05:30
logged_user = auth_user
if logged_user.present?
payload[:user_id] = logged_user.try(:id)
payload[:username] = logged_user.try(:username)
2017-09-10 17:25:29 +05:30
end
2018-11-08 19:23:39 +05:30
2020-04-22 19:07:51 +05:30
payload[:queue_duration_s] = request.env[::Gitlab::Middleware::RailsQueueDuration::GITLAB_RAILS_QUEUE_DURATION_KEY]
2020-05-24 23:13:21 +05:30
store_cloudflare_headers!(payload, request)
2017-09-10 17:25:29 +05:30
end
2018-11-18 11:00:15 +05:30
##
2018-03-17 18:26:18 +05:30
# Controllers such as GitHttpController may use alternative methods
2018-11-18 11:00:15 +05:30
# (e.g. tokens) to authenticate the user, whereas Devise sets current_user.
#
2018-03-17 18:26:18 +05:30
def auth_user
2020-05-24 23:13:21 +05:30
strong_memoize(:auth_user) do
if user_signed_in?
current_user
else
try(:authenticated_user)
end
2018-11-18 11:00:15 +05:30
end
2017-09-10 17:25:29 +05:30
end
2022-06-21 17:19:12 +05:30
# Devise defines current_user to be:
#
# def current_user
# @current_user ||= warden.authenticate(scope: mapping)
# end
#
# That means whenever current_user is called and `@current_user` is
# nil, Warden will attempt to authenticate a user. To avoid
# reauthenticating anonymous users, we may need to invalidate
# the user.
def reset_auth_user!
return if strong_memoized?(:auth_user) && auth_user
# Controllers usually call auth_user first, but for some controllers
# authenticate_sessionless_user! is called after that. If we relied
# on the memoized auth_user, the value would always be nil for
# sessionless users.
clear_memoization(:auth_user)
auth_user
end
2014-09-02 18:07:02 +05:30
def log_exception(exception)
2021-04-17 20:07:23 +05:30
# At this point, the controller already exits set_current_context around
# block. To maintain the context while handling error exception, we need to
# set the context again
set_current_context do
Gitlab::ErrorTracking.track_exception(exception)
end
2017-09-10 17:25:29 +05:30
2019-02-15 15:39:39 +05:30
backtrace_cleaner = request.env["action_dispatch.backtrace_cleaner"]
2018-10-15 14:42:47 +05:30
application_trace = ActionDispatch::ExceptionWrapper.new(backtrace_cleaner, exception).application_trace
2018-03-17 18:26:18 +05:30
application_trace.map! { |t| " #{t}\n" }
2014-09-02 18:07:02 +05:30
logger.error "\n#{exception.class.name} (#{exception.message}):\n#{application_trace.join}"
end
2015-04-26 12:48:37 +05:30
def after_sign_in_path_for(resource)
2017-08-17 22:00:37 +05:30
stored_location_for(:redirect) || stored_location_for(resource) || root_path
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
def after_sign_out_path_for(resource)
2018-03-17 18:26:18 +05:30
Gitlab::CurrentSettings.after_sign_out_path.presence || new_user_session_path
2015-09-11 14:41:01 +05:30
end
2017-08-17 22:00:37 +05:30
def can?(object, action, subject = :global)
2016-09-29 09:46:39 +05:30
Ability.allowed?(object, action, subject)
2014-09-02 18:07:02 +05:30
end
2019-02-15 15:39:39 +05:30
def access_denied!(message = nil, status = nil)
2018-10-15 14:42:47 +05:30
# If we display a custom access denied message to the user, we don't want to
# hide existence of the resource, rather tell them they cannot access it using
# the provided message
2019-02-15 15:39:39 +05:30
status ||= message.present? ? :forbidden : :not_found
2019-03-02 22:35:43 +05:30
template =
if status == :not_found
"errors/not_found"
else
"errors/access_denied"
end
2018-10-15 14:42:47 +05:30
2017-08-17 22:00:37 +05:30
respond_to do |format|
2018-03-27 19:54:05 +05:30
format.html do
2019-03-02 22:35:43 +05:30
render template,
2018-03-27 19:54:05 +05:30
layout: "errors",
2018-10-15 14:42:47 +05:30
status: status,
2018-03-27 19:54:05 +05:30
locals: { message: message }
end
2021-06-08 01:23:25 +05:30
format.any { head status }
2017-08-17 22:00:37 +05:30
end
2014-09-02 18:07:02 +05:30
end
def git_not_found!
2022-05-07 20:08:51 +05:30
render template: "errors/git_not_found", formats: :html, layout: "errors", status: :not_found
2014-09-02 18:07:02 +05:30
end
def render_403
2018-11-08 19:23:39 +05:30
respond_to do |format|
2022-05-07 20:08:51 +05:30
format.html { render template: "errors/access_denied", formats: :html, layout: "errors", status: :forbidden }
2021-06-08 01:23:25 +05:30
format.any { head :forbidden }
2018-11-08 19:23:39 +05:30
end
2014-09-02 18:07:02 +05:30
end
def render_404
2016-11-03 12:29:30 +05:30
respond_to do |format|
2022-05-07 20:08:51 +05:30
format.html { render template: "errors/not_found", formats: :html, layout: "errors", status: :not_found }
2018-03-17 18:26:18 +05:30
# 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-11-03 12:29:30 +05:30
format.any { head :not_found }
end
2014-09-02 18:07:02 +05:30
end
2017-08-17 22:00:37 +05:30
def respond_422
head :unprocessable_entity
end
2014-09-02 18:07:02 +05:30
def no_cache_headers
2020-02-01 01:16:34 +05:30
DEFAULT_GITLAB_NO_CACHE_HEADERS.each do |k, v|
headers[k] = v
end
2014-09-02 18:07:02 +05:30
end
2021-01-29 00:20:46 +05:30
def stream_headers
headers['Content-Length'] = nil
headers['X-Accel-Buffering'] = 'no' # Disable buffering on Nginx
headers['Last-Modified'] = '0' # Prevent buffering via Rack::ETag middleware
end
2014-09-02 18:07:02 +05:30
def default_headers
2022-03-02 08:16:31 +05:30
headers['X-Frame-Options'] = 'SAMEORIGIN'
2014-09-02 18:07:02 +05:30
headers['X-XSS-Protection'] = '1; mode=block'
headers['X-UA-Compatible'] = 'IE=edge'
headers['X-Content-Type-Options'] = 'nosniff'
2020-04-08 14:13:33 +05:30
end
2018-11-18 11:00:15 +05:30
2020-04-08 14:13:33 +05:30
def default_cache_headers
2022-01-26 12:08:38 +05:30
headers['Pragma'] = 'no-cache' # HTTP 1.0 compatibility
2019-07-07 11:18:12 +05:30
end
2021-03-08 18:12:59 +05:30
def stream_csv_headers(csv_filename)
no_cache_headers
stream_headers
headers['Content-Type'] = 'text/csv; charset=utf-8; header=present'
headers['Content-Disposition'] = "attachment; filename=\"#{csv_filename}\""
end
def validate_user_service_ticket!
return unless signed_in? && session[:service_tickets]
valid = session[:service_tickets].all? do |provider, ticket|
2018-03-27 19:54:05 +05:30
Gitlab::Auth::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
2018-03-17 18:26:18 +05:30
return if session[:impersonator_id] || !current_user&.allow_password_authentication?
2019-12-21 20:55:43 +05:30
if current_user&.password_expired?
2020-07-28 23:09:34 +05:30
redirect_to new_profile_password_path
end
end
2019-12-21 20:55:43 +05:30
def active_user_check
return unless current_user && current_user.deactivated?
sign_out current_user
flash[:alert] = _("Your account has been deactivated by your administrator. Please log back in to reactivate your account.")
redirect_to new_user_session_path
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
2020-04-08 14:13:33 +05:30
unless Gitlab::Auth::Ldap::Access.allowed?(current_user)
2014-09-02 18:07:02 +05:30
sign_out current_user
2019-07-31 22:56:46 +05:30
flash[:alert] = _("Access denied for your LDAP account.")
2014-09-02 18:07:02 +05:30
redirect_to new_user_session_path
end
end
end
# JSON for infinite scroll via Pager object
2016-11-24 13:41:30 +05:30
def pager_json(partial, count, locals = {})
2014-09-02 18:07:02 +05:30
html = render_to_string(
partial,
2016-11-24 13:41:30 +05:30
locals: locals,
2014-09-02 18:07:02 +05:30
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
devise_parameter_sanitizer.permit(:sign_in, keys: [: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
2017-08-17 22:00:37 +05:30
if current_user && current_user.temp_oauth_email? && session[:impersonator_id].nil?
2020-07-28 23:09:34 +05:30
redirect_to profile_path, notice: _('Please complete your profile with email address')
2014-09-02 18:07:02 +05:30
end
end
2015-04-26 12:48:37 +05:30
2018-10-15 14:42:47 +05:30
def enforce_terms!
return unless current_user
return if current_user.terms_accepted?
2018-11-08 19:23:39 +05:30
message = _("Please accept the Terms of Service before continuing.")
2018-10-15 14:42:47 +05:30
if sessionless_user?
2018-11-08 19:23:39 +05:30
access_denied!(message)
2018-10-15 14:42:47 +05:30
else
# Redirect to the destination if the request is a get.
# Redirect to the source if it was a post, so the user can re-submit after
# accepting the terms.
redirect_path = if request.get?
request.fullpath
else
URI(request.referer).path if request.referer
end
2018-11-08 19:23:39 +05:30
flash[:notice] = message
2018-10-15 14:42:47 +05:30
redirect_to terms_path(redirect: redirect_path), status: :found
end
end
2015-09-25 12:07:36 +05:30
def import_sources_enabled?
2018-03-17 18:26:18 +05:30
!Gitlab::CurrentSettings.import_sources.empty?
2015-09-25 12:07:36 +05:30
end
2018-11-18 11:00:15 +05:30
def bitbucket_server_import_enabled?
Gitlab::CurrentSettings.import_sources.include?('bitbucket_server')
end
2015-04-26 12:48:37 +05:30
def github_import_enabled?
2018-03-17 18:26:18 +05:30
Gitlab::CurrentSettings.import_sources.include?('github')
2015-09-25 12:07:36 +05:30
end
2017-08-17 22:00:37 +05:30
def gitea_import_enabled?
2018-03-17 18:26:18 +05:30
Gitlab::CurrentSettings.import_sources.include?('gitea')
2017-08-17 22:00:37 +05:30
end
2015-09-25 12:07:36 +05:30
def github_import_configured?
2018-03-27 19:54:05 +05:30
Gitlab::Auth::OAuth::Provider.enabled?(:github)
2015-04-26 12:48:37 +05:30
end
def gitlab_import_enabled?
2018-03-17 18:26:18 +05:30
request.host != 'gitlab.com' && Gitlab::CurrentSettings.import_sources.include?('gitlab')
2015-09-25 12:07:36 +05:30
end
def gitlab_import_configured?
2018-03-27 19:54:05 +05:30
Gitlab::Auth::OAuth::Provider.enabled?(:gitlab)
2015-04-26 12:48:37 +05:30
end
def bitbucket_import_enabled?
2018-03-17 18:26:18 +05:30
Gitlab::CurrentSettings.import_sources.include?('bitbucket')
2015-09-25 12:07:36 +05:30
end
def bitbucket_import_configured?
2018-03-27 19:54:05 +05:30
Gitlab::Auth::OAuth::Provider.enabled?(:bitbucket)
2015-04-26 12:48:37 +05:30
end
2015-09-25 12:07:36 +05:30
def fogbugz_import_enabled?
2018-03-17 18:26:18 +05:30
Gitlab::CurrentSettings.import_sources.include?('fogbugz')
2015-09-25 12:07:36 +05:30
end
def git_import_enabled?
2018-03-17 18:26:18 +05:30
Gitlab::CurrentSettings.import_sources.include?('git')
2015-09-25 12:07:36 +05:30
end
2015-11-26 14:37:03 +05:30
2016-06-22 15:30:34 +05:30
def gitlab_project_import_enabled?
2018-03-17 18:26:18 +05:30
Gitlab::CurrentSettings.import_sources.include?('gitlab_project')
2016-06-22 15:30:34 +05:30
end
2018-11-18 11:00:15 +05:30
def manifest_import_enabled?
2019-10-12 21:52:04 +05:30
Gitlab::CurrentSettings.import_sources.include?('manifest')
2018-11-18 11:00:15 +05:30
end
2019-09-04 21:01:54 +05:30
def phabricator_import_enabled?
Gitlab::PhabricatorImport.available?
end
# 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-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
def set_current_context(&block)
2021-09-04 01:27:46 +05:30
Gitlab::ApplicationContext.push(
user: -> { context_user },
2020-05-24 23:13:21 +05:30
project: -> { @project if @project&.persisted? },
namespace: -> { @group if @group&.persisted? },
2021-11-18 22:05:49 +05:30
caller_id: self.class.endpoint_id_for_action(action_name),
2021-03-08 18:12:59 +05:30
remote_ip: request.ip,
2021-09-04 01:27:46 +05:30
feature_category: feature_category
)
yield
ensure
@current_context = Gitlab::ApplicationContext.current
2020-03-13 15:44:24 +05:30
end
2017-09-10 17:25:29 +05:30
def set_locale(&block)
Gitlab::I18n.with_user_locale(current_user, &block)
end
2017-08-17 22:00:37 +05:30
2019-07-31 22:56:46 +05:30
def set_session_storage(&block)
2019-09-04 21:01:54 +05:30
return yield if sessionless_user?
2019-07-31 22:56:46 +05:30
Gitlab::Session.with_session(session, &block)
end
2018-03-17 18:26:18 +05:30
def set_page_title_header
# Per https://tools.ietf.org/html/rfc5987, headers need to be ISO-8859-1, not UTF-8
2021-01-03 14:25:43 +05:30
response.headers['Page-Title'] = Addressable::URI.encode_component(page_title('GitLab'))
2018-03-17 18:26:18 +05:30
end
2018-10-15 14:42:47 +05:30
2020-03-13 15:44:24 +05:30
def set_current_admin(&block)
2021-04-29 21:17:54 +05:30
return yield unless Gitlab::CurrentSettings.admin_mode
2020-03-13 15:44:24 +05:30
return yield unless current_user
Gitlab::Auth::CurrentUserMode.with_current_admin(current_user, &block)
end
2020-01-01 13:55:28 +05:30
def html_request?
request.format.html?
2018-10-15 14:42:47 +05:30
end
2018-11-18 11:00:15 +05:30
def json_request?
request.format.json?
end
2018-10-15 14:42:47 +05:30
def should_enforce_terms?
return false unless Gitlab::CurrentSettings.current_application_settings.enforce_terms
2020-01-01 13:55:28 +05:30
html_request? && !devise_controller?
2018-10-15 14:42:47 +05:30
end
2018-11-20 20:47:30 +05:30
2020-04-22 19:07:51 +05:30
def public_visibility_restricted?
2020-05-05 14:28:15 +05:30
Gitlab::VisibilityLevel.public_visibility_restricted?
2020-04-22 19:07:51 +05:30
end
2018-11-20 20:47:30 +05:30
def set_usage_stats_consent_flag
return unless current_user
return if sessionless_user?
return if session.has_key?(:ask_for_usage_stats_consent)
session[:ask_for_usage_stats_consent] = current_user.requires_usage_stats_consent?
if session[:ask_for_usage_stats_consent]
disable_usage_stats
end
end
def disable_usage_stats
application_setting_params = {
usage_ping_enabled: false,
version_check_enabled: false,
skip_usage_stats_user: true
}
settings = Gitlab::CurrentSettings.current_application_settings
ApplicationSettings::UpdateService
.new(settings, current_user, application_setting_params)
.execute
end
2019-02-15 15:39:39 +05:30
2019-09-30 21:07:59 +05:30
def allow_gitaly_ref_name_caching
::Gitlab::GitalyClient.allow_ref_name_caching do
yield
end
end
2019-12-21 20:55:43 +05:30
2021-09-04 01:27:46 +05:30
# Avoid loading the auth_user again after the request. Otherwise calling
# `auth_user` again would also trigger the Warden callbacks again
def context_user
auth_user if strong_memoized?(:auth_user)
end
2019-12-26 22:10:19 +05:30
def required_signup_info
return unless current_user
return unless current_user.role_required?
2019-12-21 20:55:43 +05:30
store_location_for :user, request.fullpath
redirect_to users_sign_up_welcome_path
end
2014-09-02 18:07:02 +05:30
end
2019-12-04 20:38:33 +05:30
2021-06-08 01:23:25 +05:30
ApplicationController.prepend_mod