2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
class ApplicationController < ActionController::Base
|
|
|
|
# Prevent CSRF attacks by raising an exception.
|
|
|
|
# For APIs, you may want to use :null_session instead.
|
|
|
|
protect_from_forgery with: :exception
|
2016-03-25 13:12:24 +00:00
|
|
|
|
2017-04-08 00:30:50 +00:00
|
|
|
include Localized
|
2017-04-29 22:28:16 +00:00
|
|
|
include UserTrackingConcern
|
2018-05-11 11:20:58 +00:00
|
|
|
include SessionTrackingConcern
|
2019-07-21 20:32:16 +00:00
|
|
|
include CacheConcern
|
2019-07-30 09:10:46 +00:00
|
|
|
include DomainControlHelper
|
2022-01-17 11:50:02 +00:00
|
|
|
include ThemingConcern
|
2017-04-16 10:51:30 +00:00
|
|
|
|
|
|
|
helper_method :current_account
|
2017-06-25 21:51:32 +00:00
|
|
|
helper_method :current_session
|
2017-12-04 07:26:40 +00:00
|
|
|
helper_method :current_flavour
|
2017-12-01 03:29:47 +00:00
|
|
|
helper_method :current_skin
|
2017-04-16 10:51:30 +00:00
|
|
|
helper_method :single_user_mode?
|
2018-02-28 18:04:53 +00:00
|
|
|
helper_method :use_seamless_external_login?
|
2019-07-30 09:10:46 +00:00
|
|
|
helper_method :whitelist_mode?
|
2016-08-24 15:56:44 +00:00
|
|
|
|
2021-05-05 17:44:35 +00:00
|
|
|
rescue_from ActionController::ParameterMissing, Paperclip::AdapterRegistry::NoHandlerError, with: :bad_request
|
2017-11-11 19:23:33 +00:00
|
|
|
rescue_from Mastodon::NotPermittedError, with: :forbidden
|
2021-05-05 17:44:35 +00:00
|
|
|
rescue_from ActionController::RoutingError, ActiveRecord::RecordNotFound, with: :not_found
|
|
|
|
rescue_from ActionController::UnknownFormat, with: :not_acceptable
|
|
|
|
rescue_from ActionController::InvalidAuthenticityToken, with: :unprocessable_entity
|
2020-03-08 14:17:39 +00:00
|
|
|
rescue_from Mastodon::RateLimitExceededError, with: :too_many_requests
|
2016-09-08 00:40:51 +00:00
|
|
|
|
2021-05-05 17:44:35 +00:00
|
|
|
rescue_from HTTP::Error, OpenSSL::SSL::SSLError, with: :internal_server_error
|
2021-07-21 16:34:39 +00:00
|
|
|
rescue_from Mastodon::RaceConditionError, Stoplight::Error::RedLight, ActiveRecord::SerializationFailure, with: :service_unavailable
|
|
|
|
|
|
|
|
rescue_from Seahorse::Client::NetworkingError do |e|
|
|
|
|
Rails.logger.warn "Storage server error: #{e}"
|
|
|
|
service_unavailable
|
|
|
|
end
|
2021-05-05 17:44:35 +00:00
|
|
|
|
2016-10-06 13:42:00 +00:00
|
|
|
before_action :store_current_location, except: :raise_not_found, unless: :devise_controller?
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
before_action :require_functional!, if: :user_signed_in?
|
2016-10-02 15:11:08 +00:00
|
|
|
|
2019-08-16 00:08:35 +00:00
|
|
|
skip_before_action :verify_authenticity_token, only: :raise_not_found
|
|
|
|
|
2016-09-08 00:40:51 +00:00
|
|
|
def raise_not_found
|
2016-09-29 19:28:21 +00:00
|
|
|
raise ActionController::RoutingError, "No route matches #{params[:unmatched_route]}"
|
2016-09-08 00:40:51 +00:00
|
|
|
end
|
|
|
|
|
2016-10-02 15:11:08 +00:00
|
|
|
private
|
|
|
|
|
2019-07-11 18:11:09 +00:00
|
|
|
def authorized_fetch_mode?
|
2019-07-30 09:10:46 +00:00
|
|
|
ENV['AUTHORIZED_FETCH'] == 'true' || Rails.configuration.x.whitelist_mode
|
2019-07-11 18:11:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def public_fetch_mode?
|
|
|
|
!authorized_fetch_mode?
|
|
|
|
end
|
|
|
|
|
2016-10-02 15:11:08 +00:00
|
|
|
def store_current_location
|
2020-07-22 09:44:02 +00:00
|
|
|
store_location_for(:user, request.url) unless [:json, :rss].include?(request.format&.to_sym)
|
2016-10-02 15:11:08 +00:00
|
|
|
end
|
|
|
|
|
Change unconfirmed user login behaviour (#11375)
Allow access to account settings, 2FA, authorized applications, and
account deletions to unconfirmed and pending users, as well as
users who had their accounts disabled. Suspended users cannot update
their e-mail or password or delete their account.
Display account status on account settings page, for example, when
an account is frozen, limited, unconfirmed or pending review.
After sign up, login users straight away and show a simple page that
tells them the status of their account with links to account settings
and logout, to reduce onboarding friction and allow users to correct
wrongly typed e-mail addresses.
Move the final sign-up step of SSO integrations to be the same
as above to reduce code duplication.
2019-07-22 08:48:50 +00:00
|
|
|
def require_functional!
|
|
|
|
redirect_to edit_user_registration_path unless current_user.functional?
|
2016-12-06 17:03:30 +00:00
|
|
|
end
|
|
|
|
|
2017-08-05 02:24:58 +00:00
|
|
|
def after_sign_out_path_for(_resource_or_scope)
|
|
|
|
new_user_session_path
|
|
|
|
end
|
|
|
|
|
2016-08-18 15:13:41 +00:00
|
|
|
protected
|
|
|
|
|
2018-09-09 02:10:44 +00:00
|
|
|
def truthy_param?(key)
|
|
|
|
ActiveModel::Type::Boolean.new.cast(params[key])
|
|
|
|
end
|
|
|
|
|
2017-05-01 20:24:36 +00:00
|
|
|
def forbidden
|
|
|
|
respond_with_error(403)
|
2016-09-08 00:40:51 +00:00
|
|
|
end
|
|
|
|
|
2017-05-01 20:24:36 +00:00
|
|
|
def not_found
|
|
|
|
respond_with_error(404)
|
2017-01-14 23:30:23 +00:00
|
|
|
end
|
|
|
|
|
2017-05-01 20:24:36 +00:00
|
|
|
def gone
|
|
|
|
respond_with_error(410)
|
2017-04-23 03:21:10 +00:00
|
|
|
end
|
|
|
|
|
2017-01-14 23:30:23 +00:00
|
|
|
def unprocessable_entity
|
2017-05-01 20:24:36 +00:00
|
|
|
respond_with_error(422)
|
2016-10-05 11:26:44 +00:00
|
|
|
end
|
|
|
|
|
2018-05-25 23:09:30 +00:00
|
|
|
def not_acceptable
|
|
|
|
respond_with_error(406)
|
|
|
|
end
|
|
|
|
|
2019-08-29 23:34:47 +00:00
|
|
|
def bad_request
|
|
|
|
respond_with_error(400)
|
|
|
|
end
|
|
|
|
|
2019-08-18 16:04:18 +00:00
|
|
|
def internal_server_error
|
|
|
|
respond_with_error(500)
|
|
|
|
end
|
|
|
|
|
2019-08-29 23:34:47 +00:00
|
|
|
def service_unavailable
|
|
|
|
respond_with_error(503)
|
|
|
|
end
|
|
|
|
|
2020-03-08 14:17:39 +00:00
|
|
|
def too_many_requests
|
|
|
|
respond_with_error(429)
|
|
|
|
end
|
|
|
|
|
2017-04-15 14:46:27 +00:00
|
|
|
def single_user_mode?
|
2019-07-18 23:44:42 +00:00
|
|
|
@single_user_mode ||= Rails.configuration.x.single_user_mode && Account.where('id > 0').exists?
|
2017-04-15 14:46:27 +00:00
|
|
|
end
|
|
|
|
|
2018-02-28 18:04:53 +00:00
|
|
|
def use_seamless_external_login?
|
|
|
|
Devise.pam_authentication || Devise.ldap_authentication
|
2018-02-02 09:18:55 +00:00
|
|
|
end
|
|
|
|
|
2016-08-18 15:13:41 +00:00
|
|
|
def current_account
|
2019-06-25 18:18:15 +00:00
|
|
|
return @current_account if defined?(@current_account)
|
|
|
|
|
|
|
|
@current_account = current_user&.account
|
2016-08-18 15:13:41 +00:00
|
|
|
end
|
2016-11-29 14:49:39 +00:00
|
|
|
|
2017-06-25 21:51:32 +00:00
|
|
|
def current_session
|
2019-06-25 18:18:15 +00:00
|
|
|
return @current_session if defined?(@current_session)
|
|
|
|
|
|
|
|
@current_session = SessionActivation.find_by(session_id: cookies.signed['_session_id']) if cookies.signed['_session_id'].present?
|
2017-06-25 21:51:32 +00:00
|
|
|
end
|
|
|
|
|
2017-04-21 16:11:20 +00:00
|
|
|
def respond_with_error(code)
|
2019-12-30 03:38:18 +00:00
|
|
|
respond_to do |format|
|
2020-01-04 21:54:06 +00:00
|
|
|
format.any do
|
|
|
|
use_pack 'error'
|
|
|
|
render "errors/#{code}", layout: 'error', status: code, formats: [:html]
|
|
|
|
end
|
2019-12-30 03:38:18 +00:00
|
|
|
format.json { render json: { error: Rack::Utils::HTTP_STATUS_CODES[code] }, status: code }
|
|
|
|
end
|
2017-04-21 16:11:20 +00:00
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|