2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 17:12:33 -04:00
|
|
|
class AboutController < ApplicationController
|
2017-11-21 01:13:37 -05:00
|
|
|
before_action :set_pack
|
2019-03-12 12:34:00 -04:00
|
|
|
layout 'public'
|
|
|
|
|
2019-08-19 05:35:48 -04:00
|
|
|
before_action :require_open_federation!, only: [:show, :more, :blocks]
|
|
|
|
before_action :check_blocklist_enabled, only: [:blocks]
|
|
|
|
before_action :authenticate_user!, only: [:blocks], if: :blocklist_account_required?
|
2019-07-08 06:03:45 -04:00
|
|
|
before_action :set_body_classes, only: :show
|
|
|
|
before_action :set_instance_presenter
|
2019-08-19 05:35:48 -04:00
|
|
|
before_action :set_expires_in, only: [:show, :more, :terms]
|
2016-11-01 13:03:51 -04:00
|
|
|
|
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 04:48:50 -04:00
|
|
|
skip_before_action :require_functional!, only: [:more, :terms]
|
2017-04-01 22:10:22 -04:00
|
|
|
|
2019-07-08 06:03:45 -04:00
|
|
|
def show; end
|
2017-04-01 22:10:22 -04:00
|
|
|
|
2019-07-18 19:44:42 -04:00
|
|
|
def more
|
|
|
|
flash.now[:notice] = I18n.t('about.instance_actor_flash') if params[:instance_actor]
|
|
|
|
end
|
2017-01-12 21:24:41 -05:00
|
|
|
|
2019-03-12 12:34:00 -04:00
|
|
|
def terms; end
|
2016-11-01 13:03:51 -04:00
|
|
|
|
2019-08-19 05:35:48 -04:00
|
|
|
def blocks
|
|
|
|
@show_rationale = Setting.show_domain_blocks_rationale == 'all'
|
|
|
|
@show_rationale |= Setting.show_domain_blocks_rationale == 'users' && !current_user.nil? && current_user.functional?
|
|
|
|
@blocks = DomainBlock.with_user_facing_limitations.order('(CASE severity WHEN 0 THEN 1 WHEN 1 THEN 2 WHEN 2 THEN 0 END), reject_media, domain').to_a
|
|
|
|
end
|
|
|
|
|
2016-11-01 13:03:51 -04:00
|
|
|
private
|
|
|
|
|
2019-07-30 05:10:46 -04:00
|
|
|
def require_open_federation!
|
|
|
|
not_found if whitelist_mode?
|
|
|
|
end
|
|
|
|
|
2019-08-19 05:35:48 -04:00
|
|
|
def check_blocklist_enabled
|
|
|
|
not_found if Setting.show_domain_blocks == 'disabled'
|
|
|
|
end
|
|
|
|
|
|
|
|
def blocklist_account_required?
|
|
|
|
Setting.show_domain_blocks == 'users'
|
|
|
|
end
|
|
|
|
|
|
|
|
def block_severity_text(block)
|
|
|
|
if block.severity == 'suspend'
|
|
|
|
I18n.t('domain_blocks.suspension')
|
|
|
|
else
|
|
|
|
limitations = []
|
|
|
|
limitations << I18n.t('domain_blocks.media_block') if block.reject_media?
|
|
|
|
limitations << I18n.t('domain_blocks.silence') if block.severity == 'silence'
|
|
|
|
limitations.join(', ')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
helper_method :block_severity_text
|
|
|
|
helper_method :public_fetch_mode?
|
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
def new_user
|
2019-04-09 10:06:30 -04:00
|
|
|
User.new.tap do |user|
|
|
|
|
user.build_account
|
|
|
|
user.build_invite_request
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
2017-07-11 09:27:59 -04:00
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
helper_method :new_user
|
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
def set_pack
|
2019-03-13 10:16:02 -04:00
|
|
|
use_pack 'common'
|
2017-11-21 01:13:37 -05:00
|
|
|
end
|
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2019-07-08 06:03:45 -04:00
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@hide_navbar = true
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_expires_in
|
|
|
|
expires_in 0, public: true
|
|
|
|
end
|
2016-09-27 17:12:33 -04:00
|
|
|
end
|